diff --git a/Elements.Benchmarks/API.cs b/Elements.Benchmarks/API.cs new file mode 100644 index 000000000..f7ce6368a --- /dev/null +++ b/Elements.Benchmarks/API.cs @@ -0,0 +1,45 @@ +using System; +using BenchmarkDotNet.Attributes; +using Elements.Geometry; +using Elements.Serialization.glTF; + +namespace Elements.Benchmarks +{ + [MemoryDiagnoser] + public class API + { + private string _model; + + [Params(5, 50, 200, 500)] + public int Value { get; set; } + + [GlobalSetup] + public void Setup() + { + var model = new Model(); + var r = new Random(); + var size = 10; + var profile = new Profile(Polygon.L(0.1, 0.1, 0.05)); + model.AddElement(profile); + + for (var i = 0; i < this.Value; i++) + { + var start = new Vector3(r.NextDouble() * size, r.NextDouble() * size, r.NextDouble() * size); + var end = new Vector3(r.NextDouble() * size, r.NextDouble() * size, r.NextDouble() * size); + var line = new Line(start, end); + // var c = new Color(r.NextDouble(), r.NextDouble(), r.NextDouble(), 1.0); + // var m = new Material(Guid.NewGuid().ToString(), c); + var beam = new Beam(line, profile, null, BuiltInMaterials.Steel); + model.AddElement(beam); + } + + _model = model.ToJson(); + } + + [Benchmark(Description = "API Test Serialization")] + public void SerializeElementsToGlTF() + { + Model.GeometricElementModelFromJson(_model); + } + } +} \ No newline at end of file diff --git a/Elements.CodeGeneration/src/CatalogGenerator.cs b/Elements.CodeGeneration/src/CatalogGenerator.cs index 4823789d3..4dd4593db 100644 --- a/Elements.CodeGeneration/src/CatalogGenerator.cs +++ b/Elements.CodeGeneration/src/CatalogGenerator.cs @@ -9,6 +9,7 @@ using System.Reflection; using Elements.Generate.StringUtils; using System.Globalization; +using System.Text.Json; namespace Elements.Generate { @@ -142,10 +143,10 @@ private static ContentCatalog DeduplicateContentNames(ContentCatalog catalog) codeToAdd = $"new Vector3({v.X},{v.Y},{v.Z})"; break; case IList symbols: - codeToAdd = $"JsonConvert.DeserializeObject>(\"{System.Web.HttpUtility.JavaScriptStringEncode(Newtonsoft.Json.JsonConvert.SerializeObject(symbols))}\")"; + codeToAdd = $"JsonSerializer.Deserialize>(\"{System.Web.HttpUtility.JavaScriptStringEncode(JsonSerializer.Serialize(symbols))}\")"; break; case Dictionary dict: - codeToAdd = "@\"" + Newtonsoft.Json.JsonConvert.SerializeObject(dict).Replace("\"", "\"\"") + "\""; + codeToAdd = "@\"" + JsonSerializer.Serialize(dict).Replace("\"", "\"\"") + "\""; break; case Material material: // new Material(material.Color, diff --git a/Elements.CodeGeneration/src/Templates/Catalog.liquid b/Elements.CodeGeneration/src/Templates/Catalog.liquid index ea6d63354..c9bff60ee 100644 --- a/Elements.CodeGeneration/src/Templates/Catalog.liquid +++ b/Elements.CodeGeneration/src/Templates/Catalog.liquid @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { public static class {{ catalog.name | safeidentifierupper }} { diff --git a/Elements.CodeGeneration/src/Templates/Class.liquid b/Elements.CodeGeneration/src/Templates/Class.liquid index 1b9ff60c5..939743517 100644 --- a/Elements.CodeGeneration/src/Templates/Class.liquid +++ b/Elements.CodeGeneration/src/Templates/Class.liquid @@ -1,9 +1,6 @@ {% if HasDescription -%} /// {{ Description | csharpdocs }} {% endif -%} -{% if HasDiscriminator -%} -[JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "{{ Discriminator }}")] -{% endif -%} [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "{{ ToolchainVersion }}")] {% if InheritsExceptionSchema -%} [JsonObjectAttribute] @@ -30,7 +27,7 @@ {% if property.HasDescription -%} /// {{ property.Description | csharpdocs }} {% endif -%} - [JsonProperty("{{ property.Name }}", Required = {{ property.JsonPropertyRequiredCode }}{% if property.IsStringEnumArray %}, ItemConverterType = typeof(Newtonsoft.Json.Converters.StringEnumConverter){% endif %})] + [JsonPropertyName("{{ property.Name }}")] {% if property.RenderRequiredAttribute -%} [System.ComponentModel.DataAnnotations.Required{% if property.AllowEmptyStrings %}(AllowEmptyStrings = true){% endif %}] {% endif -%} @@ -50,7 +47,7 @@ [System.ComponentModel.DataAnnotations.RegularExpression(@"{{ property.RegularExpressionValue }}")] {% endif -%} {% if property.IsStringEnum -%} - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(JsonStringEnumMemberConverter))] {% endif -%} {% if property.IsDate and UseDateFormatConverter -%} [JsonConverter(typeof(DateFormatConverter))] diff --git a/Elements.CodeGeneration/src/Templates/File.liquid b/Elements.CodeGeneration/src/Templates/File.liquid index 24beb3fd8..f1ae25003 100644 --- a/Elements.CodeGeneration/src/Templates/File.liquid +++ b/Elements.CodeGeneration/src/Templates/File.liquid @@ -10,7 +10,7 @@ using Elements.Geometry.Solids; using Elements.Spatial; using Elements.Validators; using Elements.Serialization.JSON; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; diff --git a/Elements.CodeGeneration/src/TypeGenerator.cs b/Elements.CodeGeneration/src/TypeGenerator.cs index 91dbba139..f2b8fd34c 100644 --- a/Elements.CodeGeneration/src/TypeGenerator.cs +++ b/Elements.CodeGeneration/src/TypeGenerator.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using NJsonSchema; using NJsonSchema.CodeGeneration.CSharp; using Elements.Generate.StringUtils; @@ -628,7 +628,7 @@ private static CSharpCompilation GenerateCompilation(List code, string c var assemblyPath = frameworkBuild ? @"C:\Windows\Microsoft.NET\Framework64\v4.0.30319" : Path.GetDirectoryName(typeof(object).Assembly.Location); var elementsAssemblyPath = Path.GetDirectoryName(typeof(Model).Assembly.Location); - var newtonSoftPath = Path.GetDirectoryName(typeof(JsonConverter).Assembly.Location); + var jsonConverterPath = Path.GetDirectoryName(typeof(JsonConverter).Assembly.Location); IEnumerable defaultReferences = new[] { @@ -638,7 +638,7 @@ private static CSharpCompilation GenerateCompilation(List code, string c MetadataReference.CreateFromFile(Path.Combine(assemblyPath, "System.Runtime.dll")), MetadataReference.CreateFromFile(Path.Combine(assemblyPath, "System.Runtime.Serialization.Primitives.dll")), MetadataReference.CreateFromFile(Path.Combine(elementsAssemblyPath, "Hypar.Elements.dll")), - MetadataReference.CreateFromFile(Path.Combine(newtonSoftPath, "Newtonsoft.Json.dll")) + MetadataReference.CreateFromFile(Path.Combine(jsonConverterPath, "System.Text.Json.dll")) }; // If we're building in a .net framework context, we need a different set of reference DLLs diff --git a/Elements.Components/src/ComponentDefinition.cs b/Elements.Components/src/ComponentDefinition.cs index edac2f113..f31f1b456 100644 --- a/Elements.Components/src/ComponentDefinition.cs +++ b/Elements.Components/src/ComponentDefinition.cs @@ -4,7 +4,7 @@ using System.Linq; using Elements; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Components { diff --git a/Elements.Components/src/ContentCatalogRetrieval.cs b/Elements.Components/src/ContentCatalogRetrieval.cs index cc3a97941..3645d9249 100644 --- a/Elements.Components/src/ContentCatalogRetrieval.cs +++ b/Elements.Components/src/ContentCatalogRetrieval.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Reflection; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Components { diff --git a/Elements.Components/src/Rules/SizeBasedPlacementRule.cs b/Elements.Components/src/Rules/SizeBasedPlacementRule.cs index 82b1caa22..487d23eed 100644 --- a/Elements.Components/src/Rules/SizeBasedPlacementRule.cs +++ b/Elements.Components/src/Rules/SizeBasedPlacementRule.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Components { diff --git a/Elements.Components/src/SpaceConfiguration.cs b/Elements.Components/src/SpaceConfiguration.cs index 6629d14ce..adbbb62c5 100644 --- a/Elements.Components/src/SpaceConfiguration.cs +++ b/Elements.Components/src/SpaceConfiguration.cs @@ -2,8 +2,7 @@ using System; using System.Collections.Generic; using System.Linq; -using Elements; -using Elements.Components; +using System.Text.Json.Serialization; using Elements.Geometry; namespace Elements.Components @@ -99,7 +98,7 @@ private ContentElement MakeContentElement() /// /// The content element corresponding to this item. /// - [Newtonsoft.Json.JsonIgnore] + [JsonIgnore] public ContentElement ContentElement { get diff --git a/Elements.MEP/src/Fittings/Assembly.cs b/Elements.MEP/src/Fittings/Assembly.cs index b94ebae0d..190975873 100644 --- a/Elements.MEP/src/Fittings/Assembly.cs +++ b/Elements.MEP/src/Fittings/Assembly.cs @@ -4,7 +4,8 @@ using Elements.Flow; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json; +using System.Text.Json.Serialization; namespace Elements.Fittings { @@ -13,7 +14,7 @@ public partial class Assembly private PositionComparer _positionComparer; private double _positionTolerance; - [JsonProperty] + [JsonPropertyName("PositionTolerance")] public double PositionTolerance { get => _positionTolerance; @@ -51,7 +52,7 @@ public override Port[] GetPorts() /// /// /// - [Newtonsoft.Json.JsonIgnore] + [JsonIgnore] public IEnumerable AllComponents { get diff --git a/Elements.MEP/src/Fittings/Cross.cs b/Elements.MEP/src/Fittings/Cross.cs index 40da39125..7bcd80be4 100644 --- a/Elements.MEP/src/Fittings/Cross.cs +++ b/Elements.MEP/src/Fittings/Cross.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Linq; using System.Runtime.CompilerServices; +using System.Text.Json.Serialization; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; namespace Elements.Fittings { @@ -40,10 +40,10 @@ public CrossSettings() public partial class Cross { - [JsonProperty] + [JsonPropertyName("AngleTolerance")] public double AngleTolerance { get; set; } - [JsonProperty] + [JsonPropertyName("PositionTolerance")] public double PositionTolerance { get; set; } public Cross(Vector3 position, Vector3 trunkDirection, Vector3 directionA, Vector3 directionB, Vector3 directionC, CrossSettings crossSettings, Material material = null) : diff --git a/Elements.MEP/src/Fittings/ExpansionSocket.cs b/Elements.MEP/src/Fittings/ExpansionSocket.cs index b9fce2d4f..9a0e12ebb 100644 --- a/Elements.MEP/src/Fittings/ExpansionSocket.cs +++ b/Elements.MEP/src/Fittings/ExpansionSocket.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry; using Elements.Geometry.Solids; @@ -28,7 +29,7 @@ public ExpansionSocket(Vector3 position, this.InsertionDepth = insertionDepth; } - [Newtonsoft.Json.JsonConstructor] + [JsonConstructor] public ExpansionSocket(double @insertionDepth, Port @start, Port @end, diff --git a/Elements.MEP/src/Fittings/Fitting.cs b/Elements.MEP/src/Fittings/Fitting.cs index 05052c0c9..1ea86acd6 100644 --- a/Elements.MEP/src/Fittings/Fitting.cs +++ b/Elements.MEP/src/Fittings/Fitting.cs @@ -3,7 +3,6 @@ using Elements.Flow; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; namespace Elements.Fittings { diff --git a/Elements.MEP/src/Fittings/FittingTree.Builder.cs b/Elements.MEP/src/Fittings/FittingTree.Builder.cs index 991293fac..14d1b5ac9 100644 --- a/Elements.MEP/src/Fittings/FittingTree.Builder.cs +++ b/Elements.MEP/src/Fittings/FittingTree.Builder.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Linq; using System.Runtime.CompilerServices; +using System.Text.Json.Serialization; using Elements.Flow; using Elements.Geometry; -using Newtonsoft.Json; [assembly: InternalsVisibleTo("Elements.MEP.Tests")] namespace Elements.Fittings diff --git a/Elements.MEP/src/Fittings/FittingTree.Visualization.cs b/Elements.MEP/src/Fittings/FittingTree.Visualization.cs index ca5b89850..7c1d34999 100644 --- a/Elements.MEP/src/Fittings/FittingTree.Visualization.cs +++ b/Elements.MEP/src/Fittings/FittingTree.Visualization.cs @@ -3,7 +3,6 @@ using System.Linq; using System.Runtime.CompilerServices; using Elements.Flow; -using Newtonsoft.Json; [assembly: InternalsVisibleTo("Elements.MEP.Tests")] namespace Elements.Fittings diff --git a/Elements.MEP/src/Fittings/FittingTree.cs b/Elements.MEP/src/Fittings/FittingTree.cs index daca3a819..9d7d6a072 100644 --- a/Elements.MEP/src/Fittings/FittingTree.cs +++ b/Elements.MEP/src/Fittings/FittingTree.cs @@ -3,6 +3,7 @@ using System.ComponentModel; using System.Linq; using System.Text; +using System.Text.Json.Serialization; using Elements.Annotations; using Elements.Flow; using Elements.Geometry; @@ -18,7 +19,7 @@ public static FittingTree Create(FittingTreeRouting routing = null, double angle string.Empty, Guid.NewGuid(), string.Empty); - + fittings._angleTolerance = angleTolerance; fittings._portsDistanceTolerance = portsDistanceTolerance; fittings._routing = routing ?? new FittingTreeRouting(null); @@ -57,7 +58,7 @@ public void AddConnections(IEnumerable connections) } } } - + /// /// Propagates flow /// @@ -833,7 +834,7 @@ private bool TrunkSideReducerShouldBePreserved(IReducer nextReducer, double newD return false; } - [Newtonsoft.Json.JsonIgnore] + [JsonIgnore] public IEnumerable AllComponents { get @@ -845,7 +846,7 @@ public IEnumerable AllComponents /// /// The components of the system with the assemblies expanded. /// - [Newtonsoft.Json.JsonIgnore] + [JsonIgnore] public IEnumerable ExpandedComponents { get @@ -881,7 +882,7 @@ internal List AssignFlowIdsToComponents(string sectionRefe } if (componentGroup.Count() != orderedComponentList.Count()) { - labelingErrors.Add(new SectionLabelingError(componentGroup.Key, + labelingErrors.Add(new SectionLabelingError(componentGroup.Key, Name, "Lost or gained items while ordering the components, " + "previous and next are probably set incorrectly, or a SectionKey is not assigned correctly.")); @@ -1070,7 +1071,7 @@ public List CheckConnectivities() { var leftEndType = left.ConnectionType.EndType; var rightEndType = right.ConnectionType.EndType; - if (leftEndType == PortConnectionTypeEndType.None || + if (leftEndType == PortConnectionTypeEndType.None || rightEndType == PortConnectionTypeEndType.None) { if (leftEndType != rightEndType) @@ -1110,7 +1111,7 @@ public List CheckConnectivities() if (message.Length > 0) { - return PortConnectivityMessage(left, right, message.ToString()); + return PortConnectivityMessage(left, right, message.ToString()); } return null; } @@ -1338,7 +1339,7 @@ private static bool TryGetOrderedComponents(IEnumerable component orderedComponentList = new LinkedList(); orderedComponentList.AddFirst(componentGroup.First()); - + var visited = new HashSet(); while (true) { diff --git a/Elements.MEP/src/Fittings/IComponent.cs b/Elements.MEP/src/Fittings/IComponent.cs index 74a2c76a0..9bb93dc73 100644 --- a/Elements.MEP/src/Fittings/IComponent.cs +++ b/Elements.MEP/src/Fittings/IComponent.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Fittings { @@ -34,7 +34,7 @@ public abstract partial class ComponentBase : IComponent /// /// The pressure calculation data for this component. /// - [Newtonsoft.Json.JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("Pressure Calculations")] public PressureCalculationBase PressureCalculations { get; set; } /// diff --git a/Elements.MEP/src/Fittings/InspectionOpening.cs b/Elements.MEP/src/Fittings/InspectionOpening.cs index 79e6424ac..0504768d0 100644 --- a/Elements.MEP/src/Fittings/InspectionOpening.cs +++ b/Elements.MEP/src/Fittings/InspectionOpening.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry; using Elements.Geometry.Solids; @@ -29,7 +30,7 @@ public InspectionOpening(Vector3 position, this.TopLength = topLength; } - [Newtonsoft.Json.JsonConstructor] + [JsonConstructor] public InspectionOpening(Vector3 @sideDirection, double @topLength, Port @start, diff --git a/Elements.MEP/src/Fittings/Port.cs b/Elements.MEP/src/Fittings/Port.cs index e85a8cbcb..861ec16df 100644 --- a/Elements.MEP/src/Fittings/Port.cs +++ b/Elements.MEP/src/Fittings/Port.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; +using System.Text.Json.Serialization; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; namespace Elements.Fittings { diff --git a/Elements.MEP/src/Fittings/StraightSegment.cs b/Elements.MEP/src/Fittings/StraightSegment.cs index ab6bb4410..d49ee924b 100644 --- a/Elements.MEP/src/Fittings/StraightSegment.cs +++ b/Elements.MEP/src/Fittings/StraightSegment.cs @@ -2,7 +2,6 @@ using System.Collections.Generic; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; namespace Elements.Fittings { diff --git a/Elements.MEP/src/Flow/Connection.cs b/Elements.MEP/src/Flow/Connection.cs index 46dad46b6..579f45576 100644 --- a/Elements.MEP/src/Flow/Connection.cs +++ b/Elements.MEP/src/Flow/Connection.cs @@ -2,7 +2,6 @@ using System.Collections.Generic; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; namespace Elements.Flow { diff --git a/Elements.MEP/src/Flow/ConnectionLocator.cs b/Elements.MEP/src/Flow/ConnectionLocator.cs index 2152f8c4a..b5c4b9fed 100644 --- a/Elements.MEP/src/Flow/ConnectionLocator.cs +++ b/Elements.MEP/src/Flow/ConnectionLocator.cs @@ -1,12 +1,12 @@ using System.Collections.Generic; +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Flow { public partial class ConnectionLocator { - [JsonProperty("Network Reference", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("Network Reference")] public string NetworkReference { get; set; } public Line Line { get; set; } @@ -33,7 +33,7 @@ public bool IsAlmostEqualTo(ConnectionLocator other, double tolerance = 1E-5) return NetworkReference == other.NetworkReference && Line.Direction().IsParallelTo(other.Line.Direction()) && Line.IsAlmostEqualTo(other.Line, true, tolerance) - && Purpose== other.Purpose; + && Purpose == other.Purpose; } public override string ToString() diff --git a/Elements.MEP/src/Flow/Tree.Schema.cs b/Elements.MEP/src/Flow/Tree.Schema.cs index c1420ea92..8f4f7d4e7 100644 --- a/Elements.MEP/src/Flow/Tree.Schema.cs +++ b/Elements.MEP/src/Flow/Tree.Schema.cs @@ -20,7 +20,7 @@ namespace Elements.Flow { /// A many to one tree network. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v12.0.0.0)")] public partial class Tree : GeometricElement { diff --git a/Elements.MEP/src/Generated/Assembly.g.cs b/Elements.MEP/src/Generated/Assembly.g.cs index 6ebb2d32b..1f2b11228 100644 --- a/Elements.MEP/src/Generated/Assembly.g.cs +++ b/Elements.MEP/src/Generated/Assembly.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A connectable collection of pipes and connections - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Assembly : Fitting { @@ -33,25 +33,25 @@ public Assembly(IList @externalPorts, IList @internalFittings, IL this.ExternalPorts = @externalPorts; this.InternalFittings = @internalFittings; this.InternalSegments = @internalSegments; - } - + } + // Empty constructor public Assembly() : base() { } - + /// The external facing Ports [JsonProperty("ExternalPorts", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList ExternalPorts { get; set; } - + [JsonProperty("InternalFittings", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList InternalFittings { get; set; } - + /// The internal segments in the assembly. [JsonProperty("InternalSegments", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList InternalSegments { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/ComponentBase.g.cs b/Elements.MEP/src/Generated/ComponentBase.g.cs index b93d70add..9b21206fb 100644 --- a/Elements.MEP/src/Generated/ComponentBase.g.cs +++ b/Elements.MEP/src/Generated/ComponentBase.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The base class for FittingTree components - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class ComponentBase : GeometricElement { @@ -31,17 +31,17 @@ public ComponentBase(FittingLocator @componentLocator, Transform @transform = nu : base(transform, material, representation, isElementDefinition, id, name) { this.ComponentLocator = @componentLocator; - } - + } + // Empty constructor public ComponentBase() : base() { } - + [JsonProperty("ComponentLocator", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public FittingLocator ComponentLocator { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Connection.g.cs b/Elements.MEP/src/Generated/Connection.g.cs index 5e89b462a..ce123b62d 100644 --- a/Elements.MEP/src/Generated/Connection.g.cs +++ b/Elements.MEP/src/Generated/Connection.g.cs @@ -19,10 +19,10 @@ namespace Elements.Flow { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The origin of a project. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Connection : GeometricElement { @@ -34,26 +34,26 @@ public Connection(Node @start, Node @end, double @diameter, double @flow, Transf this.End = @end; this.Diameter = @diameter; this.Flow = @flow; - } - + } + // Empty constructor public Connection() : base() { } - + [JsonProperty("Start", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Node Start { get; set; } - + [JsonProperty("End", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Node End { get; set; } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Coupler.g.cs b/Elements.MEP/src/Generated/Coupler.g.cs index 9e45f5569..fbfc9a4d5 100644 --- a/Elements.MEP/src/Generated/Coupler.g.cs +++ b/Elements.MEP/src/Generated/Coupler.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A Fitting that does not change a pipe size. This may not be used ...? - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Coupler : Fitting { @@ -35,32 +35,32 @@ public Coupler(Port @start, Port @end, double @diameter, PressureCalculationCoup this.Diameter = @diameter; this.PressureCalculations = @pressureCalculations; this.CouplerType = @couplerType; - } - + } + // Empty constructor public Coupler() : base() { } - + /// The Start of this coupler [JsonProperty("Start", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Start { get; set; } - + /// The End of this coupler. [JsonProperty("End", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port End { get; set; } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationCoupler PressureCalculations { get; set; } - + /// A string that can be used to tag what kind of coupler this is. [JsonProperty("CouplerType", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string CouplerType { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Cross.g.cs b/Elements.MEP/src/Generated/Cross.g.cs index d0f564ae1..6f105f62d 100644 --- a/Elements.MEP/src/Generated/Cross.g.cs +++ b/Elements.MEP/src/Generated/Cross.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A cross fitting where three flows join to one. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Cross : Fitting { @@ -35,34 +35,34 @@ public Cross(Port @trunk, Port @branchA, Port @branchB, Port @branchC, PressureC this.BranchB = @branchB; this.BranchC = @branchC; this.PressureCalculations = @pressureCalculations; - } - + } + // Empty constructor public Cross() : base() { } - + /// The port at the trunk. [JsonProperty("Trunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Trunk { get; set; } - + /// First of three branch ports [JsonProperty("BranchA", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port BranchA { get; set; } - + /// Second of three branch ports [JsonProperty("BranchB", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port BranchB { get; set; } - + /// Third of three branch ports [JsonProperty("BranchC", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port BranchC { get; set; } - + /// The pressure calculation data for this fitting. [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationCross PressureCalculations { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/DrainableRoofCharacteristics.g.cs b/Elements.MEP/src/Generated/DrainableRoofCharacteristics.g.cs index 904245e84..061f5baad 100644 --- a/Elements.MEP/src/Generated/DrainableRoofCharacteristics.g.cs +++ b/Elements.MEP/src/Generated/DrainableRoofCharacteristics.g.cs @@ -19,9 +19,9 @@ namespace Elements { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings + - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class DrainableRoofCharacteristics : Element { @@ -41,57 +41,57 @@ public DrainableRoofCharacteristics(DrainableRoofCharacteristicsBaseRoofType? @b this.GreenRoofSubstrateDiameter = @greenRoofSubstrateDiameter; this.ReductionFactor = @reductionFactor; this.RoofSection = @roofSection; - } - + } + // Empty constructor public DrainableRoofCharacteristics() : base() { } - + [JsonProperty("Base Roof Type", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public DrainableRoofCharacteristicsBaseRoofType? BaseRoofType { get; set; } = Elements.DrainableRoofCharacteristicsBaseRoofType.Concrete; - + [JsonProperty("Flat Roof or Gutter", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public DrainableRoofCharacteristicsFlatRoofOrGutter? FlatRoofOrGutter { get; set; } = Elements.DrainableRoofCharacteristicsFlatRoofOrGutter.Flat_Roof; - + [JsonProperty("Roof membrane", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public DrainableRoofCharacteristicsRoofMembrane? RoofMembrane { get; set; } = Elements.DrainableRoofCharacteristicsRoofMembrane.PVC; - + [JsonProperty("Heated", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public bool Heated { get; set; } - + [JsonProperty("Angle", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Angle { get; set; } = 0D; - + [JsonProperty("Maximum Water Load", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double MaximumWaterLoad { get; set; } = 0D; - + [JsonProperty("Gravel Ballast Load", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public DrainableRoofCharacteristicsGravelBallastLoad GravelBallastLoad { get; set; } - + [JsonProperty("Green Roof", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public DrainableRoofCharacteristicsGreenRoof GreenRoof { get; set; } - + [JsonProperty("Green Roof Thickness", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double GreenRoofThickness { get; set; } - + [JsonProperty("Green Roof Substrate Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [System.ComponentModel.DataAnnotations.Range(4D, 50D)] public double GreenRoofSubstrateDiameter { get; set; } = 5D; - + [JsonProperty("Reduction Factor", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ReductionFactor { get; set; } - + /// The ID of the associated DrainableRoofSection [JsonProperty("Roof Section", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string RoofSection { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/DrainableRoofSection.g.cs b/Elements.MEP/src/Generated/DrainableRoofSection.g.cs index 9b73ccd5f..256858e88 100644 --- a/Elements.MEP/src/Generated/DrainableRoofSection.g.cs +++ b/Elements.MEP/src/Generated/DrainableRoofSection.g.cs @@ -19,10 +19,10 @@ namespace Elements { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A single drainable roof section. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class DrainableRoofSection : GeometricElement { @@ -36,36 +36,36 @@ public DrainableRoofSection(Polygon @boundary, IList @perimeterLowLines, I this.Index = @index; this.Configuration = @configuration; this.Parent = @parent; - } - + } + // Empty constructor public DrainableRoofSection() : base() { } - + /// The boundary of the space. [JsonProperty("Boundary", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Polygon Boundary { get; set; } - + /// Low Lines that lie on the perimeter of the roof. [JsonProperty("Perimeter Low Lines", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList PerimeterLowLines { get; set; } - + /// Low lines that lie within the roof's boundary. [JsonProperty("Interior Low Lines", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList InteriorLowLines { get; set; } - + /// (temporary) Indicates the order of this section within the building. [JsonProperty("index", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public int Index { get; set; } - + [JsonProperty("Configuration", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public DrainableRoofSectionConfiguration Configuration { get; set; } - + [JsonProperty("Parent", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public DrainableRoofSection Parent { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/DrainableRoofSectionConfiguration.g.cs b/Elements.MEP/src/Generated/DrainableRoofSectionConfiguration.g.cs index a53e12ffb..a0905e19d 100644 --- a/Elements.MEP/src/Generated/DrainableRoofSectionConfiguration.g.cs +++ b/Elements.MEP/src/Generated/DrainableRoofSectionConfiguration.g.cs @@ -19,12 +19,12 @@ namespace Elements { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The configuration of drainable roof section - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] - public partial class DrainableRoofSectionConfiguration + public partial class DrainableRoofSectionConfiguration { [JsonConstructor] public DrainableRoofSectionConfiguration(double @drainConnectionOffsetX, double @drainConnectionRunY, double @roofToCollectionDistanceZ) @@ -32,22 +32,22 @@ public DrainableRoofSectionConfiguration(double @drainConnectionOffsetX, double this.DrainConnectionOffsetX = @drainConnectionOffsetX; this.DrainConnectionRunY = @drainConnectionRunY; this.RoofToCollectionDistanceZ = @roofToCollectionDistanceZ; - } - + } + // Empty constructor public DrainableRoofSectionConfiguration() { } - + [JsonProperty("Drain Connection Offset (X)", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DrainConnectionOffsetX { get; set; } = 1D; - + [JsonProperty("Drain Connection Run (Y)", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DrainConnectionRunY { get; set; } = 1D; - + [JsonProperty("Roof to Collection Distance (Z)", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double RoofToCollectionDistanceZ { get; set; } = 1D; - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Elbow.g.cs b/Elements.MEP/src/Generated/Elbow.g.cs index 5c5c99c6c..ec43ded7a 100644 --- a/Elements.MEP/src/Generated/Elbow.g.cs +++ b/Elements.MEP/src/Generated/Elbow.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// An elbow in a pipe network. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Elbow : Fitting { @@ -36,36 +36,36 @@ public Elbow(double @diameter, double @angle, Port @end, Port @start, PressureCa this.Start = @start; this.PressureCalculations = @pressureCalculations; this.BendRadius = @bendRadius; - } - + } + // Empty constructor public Elbow() : base() { } - + /// The design diameter of the elbow. [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + /// The angle of the elbow. [JsonProperty("Angle", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Angle { get; set; } - + /// The end of the elbow. [JsonProperty("End", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port End { get; set; } - + /// The start of the elbow. [JsonProperty("Start", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Start { get; set; } - + [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationElbow PressureCalculations { get; set; } - + [JsonProperty("BendRadius", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double BendRadius { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/EquipmentBase.g.cs b/Elements.MEP/src/Generated/EquipmentBase.g.cs index d47359b8a..71c288560 100644 --- a/Elements.MEP/src/Generated/EquipmentBase.g.cs +++ b/Elements.MEP/src/Generated/EquipmentBase.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Base class for all equipment that has ports. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class EquipmentBase : GeometricElement { @@ -31,18 +31,18 @@ public EquipmentBase(IList @ports, Transform @transform = null, Material @ : base(transform, material, representation, isElementDefinition, id, name) { this.Ports = @ports; - } - + } + // Empty constructor public EquipmentBase() : base() { } - + /// The ports on this equipment [JsonProperty("Ports", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Ports { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Fitting.g.cs b/Elements.MEP/src/Generated/Fitting.g.cs index 4c01c6890..9ab6e328a 100644 --- a/Elements.MEP/src/Generated/Fitting.g.cs +++ b/Elements.MEP/src/Generated/Fitting.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// An element that connects segments in a FittingTree. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Fitting : ComponentBase { @@ -31,18 +31,18 @@ public Fitting(bool @canBeMoved, FittingLocator @componentLocator, Transform @tr : base(componentLocator, transform, material, representation, isElementDefinition, id, name) { this.CanBeMoved = @canBeMoved; - } - + } + // Empty constructor public Fitting() : base() { } - + /// Indicates if the connection can be moved. Used by functions to mark objects for overriding. [JsonProperty("CanBeMoved", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public bool CanBeMoved { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/FittingLocator.g.cs b/Elements.MEP/src/Generated/FittingLocator.g.cs index 7c4c55b03..e5372fcd2 100644 --- a/Elements.MEP/src/Generated/FittingLocator.g.cs +++ b/Elements.MEP/src/Generated/FittingLocator.g.cs @@ -19,12 +19,12 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Data necessary to localize a fitting in a fitting network. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] - public partial class FittingLocator + public partial class FittingLocator { [JsonConstructor] public FittingLocator(string @networkReference, string @sectionKey, int @indexInSection) @@ -32,25 +32,25 @@ public FittingLocator(string @networkReference, string @sectionKey, int @indexIn this.NetworkReference = @networkReference; this.SectionKey = @sectionKey; this.IndexInSection = @indexInSection; - } - + } + // Empty constructor public FittingLocator() { } - + /// The reference label of the network. [JsonProperty("Network Reference", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string NetworkReference { get; set; } - + /// The key used to locate the section in the network (topologically). [JsonProperty("Section Key", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string SectionKey { get; set; } - + /// The index of this fitting in the section. [JsonProperty("Index In Section", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public int IndexInSection { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/FittingTree.g.cs b/Elements.MEP/src/Generated/FittingTree.g.cs index 396fad5de..adfcd4f48 100644 --- a/Elements.MEP/src/Generated/FittingTree.g.cs +++ b/Elements.MEP/src/Generated/FittingTree.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A network of connected pipe segments - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class FittingTree : Element { @@ -33,26 +33,26 @@ public FittingTree(IList @straightSegments, IList @fit this.StraightSegments = @straightSegments; this.Fittings = @fittings; this.Purpose = @purpose; - } - + } + // Empty constructor public FittingTree() : base() { } - + /// The segments in the network. [JsonProperty("StraightSegments", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList StraightSegments { get; set; } - + /// The fittings in this network. [JsonProperty("Fittings", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Fittings { get; set; } - + /// The purpose of the fitting system. [JsonProperty("Purpose", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string Purpose { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Flow.g.cs b/Elements.MEP/src/Generated/Flow.g.cs index 4554885ee..a7ce9ea4e 100644 --- a/Elements.MEP/src/Generated/Flow.g.cs +++ b/Elements.MEP/src/Generated/Flow.g.cs @@ -19,12 +19,12 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Flow properties for a connector - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] - public partial class Flow + public partial class Flow { [JsonConstructor] public Flow(double @staticPressure, double @flowRate, double @fluidVelocity, double @dynamicPressure) @@ -33,29 +33,29 @@ public Flow(double @staticPressure, double @flowRate, double @fluidVelocity, dou this.FlowRate = @flowRate; this.FluidVelocity = @fluidVelocity; this.DynamicPressure = @dynamicPressure; - } - + } + // Empty constructor public Flow() { } - + /// The local static pressure of the fluid, relative to atmosphere. [JsonProperty("StaticPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticPressure { get; set; } - + /// The flow rate of the fluid. [JsonProperty("FlowRate", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FlowRate { get; set; } - + /// The velocity of the fluid. [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + /// The local dynamic pressure of the fluid due to fluid velocity. [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Leaf.g.cs b/Elements.MEP/src/Generated/Leaf.g.cs index 4eda688cd..7b3055267 100644 --- a/Elements.MEP/src/Generated/Leaf.g.cs +++ b/Elements.MEP/src/Generated/Leaf.g.cs @@ -19,10 +19,10 @@ namespace Elements.Flow { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A port with flow in or out of a tree. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Leaf : Node { @@ -32,23 +32,23 @@ public Leaf(double @flow, System.Guid? @terminalId, Vector3 @position, System.Gu { this.Flow = @flow; this.TerminalId = @terminalId; - } - + } + // Empty constructor public Leaf() : base() { } - + /// The amount of flow in this port. [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [System.ComponentModel.DataAnnotations.Range(0D, double.MaxValue)] public double Flow { get; set; } - + /// The id of the terminal being served [JsonProperty("TerminalId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Guid? TerminalId { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Manifold.g.cs b/Elements.MEP/src/Generated/Manifold.g.cs index 9b1b88c9b..cf4e91a70 100644 --- a/Elements.MEP/src/Generated/Manifold.g.cs +++ b/Elements.MEP/src/Generated/Manifold.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A fitting that is generically one trunk to many branches. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Manifold : Fitting { @@ -33,23 +33,23 @@ public Manifold(Port @trunk, IList @branches, PressureCalculationManifold this.Trunk = @trunk; this.Branches = @branches; this.PressureCalculations = @pressureCalculations; - } - + } + // Empty constructor public Manifold() : base() { } - + [JsonProperty("Trunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Trunk { get; set; } - + [JsonProperty("Branches", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Branches { get; set; } - + [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationManifold PressureCalculations { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Node.g.cs b/Elements.MEP/src/Generated/Node.g.cs index 122fc15c4..500cd7795 100644 --- a/Elements.MEP/src/Generated/Node.g.cs +++ b/Elements.MEP/src/Generated/Node.g.cs @@ -19,10 +19,10 @@ namespace Elements.Flow { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A node in a tree. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Node : Element { @@ -31,18 +31,18 @@ public Node(Vector3 @position, System.Guid @id = default, string @name = null) : base(id, name) { this.Position = @position; - } - + } + // Empty constructor public Node() : base() { } - + /// The location of the node. [JsonProperty("Position", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Vector3 Position { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Port.g.cs b/Elements.MEP/src/Generated/Port.g.cs index dcde69c3e..cd161c99d 100644 --- a/Elements.MEP/src/Generated/Port.g.cs +++ b/Elements.MEP/src/Generated/Port.g.cs @@ -19,12 +19,12 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A specific location where a fitting makes a connection. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] - public partial class Port + public partial class Port { [JsonConstructor] public Port(Vector3 @position, Vector3 @direction, double @diameter, Flow @flow, IList @tags, PortConnectionType @connectionType, PortDimensions @dimensions) @@ -36,38 +36,38 @@ public Port(Vector3 @position, Vector3 @direction, double @diameter, Flow @flow, this.Tags = @tags; this.ConnectionType = @connectionType; this.Dimensions = @dimensions; - } - + } + // Empty constructor public Port() { } - + /// The location of the connector. [JsonProperty("Position", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Vector3 Position { get; set; } - + /// The direction the connector faces. This is "out" from the connector, or away from the element being connected. [JsonProperty("Direction", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Vector3 Direction { get; set; } - + /// The diameter of the connector. [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + /// The flow properties of the connector. [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Flow Flow { get; set; } - + [JsonProperty("Tags", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Tags { get; set; } - + [JsonProperty("Connection Type", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PortConnectionType ConnectionType { get; set; } - + [JsonProperty("Dimensions", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PortDimensions Dimensions { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PortConnectionType.g.cs b/Elements.MEP/src/Generated/PortConnectionType.g.cs index b982144ec..adb8481e0 100644 --- a/Elements.MEP/src/Generated/PortConnectionType.g.cs +++ b/Elements.MEP/src/Generated/PortConnectionType.g.cs @@ -19,33 +19,33 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Connection specification of a port - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] - public partial class PortConnectionType + public partial class PortConnectionType { [JsonConstructor] public PortConnectionType(PortConnectionTypeConnectivty @connectivty, PortConnectionTypeEndType @endType) { this.Connectivty = @connectivty; this.EndType = @endType; - } - + } + // Empty constructor public PortConnectionType() { } - + [JsonProperty("Connectivty", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public PortConnectionTypeConnectivty Connectivty { get; set; } - + [JsonProperty("EndType", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] public PortConnectionTypeEndType EndType { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PortDimensions.g.cs b/Elements.MEP/src/Generated/PortDimensions.g.cs index e9a1de986..b45e0a9df 100644 --- a/Elements.MEP/src/Generated/PortDimensions.g.cs +++ b/Elements.MEP/src/Generated/PortDimensions.g.cs @@ -19,12 +19,12 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Dimensions of port extra properties - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] - public partial class PortDimensions + public partial class PortDimensions { [JsonConstructor] public PortDimensions(double @extension, double @bodyDiameter, double @bodyLength) @@ -32,25 +32,25 @@ public PortDimensions(double @extension, double @bodyDiameter, double @bodyLengt this.Extension = @extension; this.BodyDiameter = @bodyDiameter; this.BodyLength = @bodyLength; - } - + } + // Empty constructor public PortDimensions() { } - + /// Length that the fitting extends beyond the port. [JsonProperty("Extension", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Extension { get; set; } - + /// Diameter of the “body” of the connector, expected to be larger than the diameter of the connector. [JsonProperty("Body Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double BodyDiameter { get; set; } - + /// Length of the body of the connector, length of the “thicker” part of the connector. [JsonProperty("Body Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double BodyLength { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationBase.g.cs b/Elements.MEP/src/Generated/PressureCalculationBase.g.cs index 3058a4799..5180ccfdb 100644 --- a/Elements.MEP/src/Generated/PressureCalculationBase.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationBase.g.cs @@ -19,28 +19,28 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Base class for information about pressure calculations of a fitting. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] - public partial class PressureCalculationBase + public partial class PressureCalculationBase { [JsonConstructor] public PressureCalculationBase(System.Guid @elementId) { this.ElementId = @elementId; - } - + } + // Empty constructor public PressureCalculationBase() { } - + /// The Id of the element this data applies to. [JsonProperty("ElementId", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Guid ElementId { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationCoupler.g.cs b/Elements.MEP/src/Generated/PressureCalculationCoupler.g.cs index afdf3b67f..654dd7a06 100644 --- a/Elements.MEP/src/Generated/PressureCalculationCoupler.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationCoupler.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The pressure calculations for a coupler. This may not be used...? - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationCoupler : PressureCalculationBase { @@ -44,58 +44,58 @@ public PressureCalculationCoupler(double @diameter, double @diameterInner, doubl this.MaxUnderPressure = @maxUnderPressure; this.TotalPressure = @totalPressure; this.FrictionLossCoefficient = @frictionLossCoefficient; - } - + } + // Empty constructor public PressureCalculationCoupler() : base() { } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("DiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterInner { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("HeightDelta", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDelta { get; set; } - + [JsonProperty("Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Length { get; set; } - + [JsonProperty("PipeLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLoss { get; set; } - + [JsonProperty("StaticGain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGain { get; set; } - + [JsonProperty("FrictionFactor", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionFactor { get; set; } - + [JsonProperty("ReynoldsNumber", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ReynoldsNumber { get; set; } - + [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - + /// The maximum underpressure this coupler can structurally sustain [JsonProperty("MaxUnderPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double MaxUnderPressure { get; set; } - + /// The sum if Dynamic and Static pressure at the start of the pipe [JsonProperty("TotalPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double TotalPressure { get; set; } - + [JsonProperty("FrictionLossCoefficient", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionLossCoefficient { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationCross.g.cs b/Elements.MEP/src/Generated/PressureCalculationCross.g.cs index c29d07153..18512ccd3 100644 --- a/Elements.MEP/src/Generated/PressureCalculationCross.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationCross.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The pressure calculation data for Cross fittings. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationCross : PressureCalculationBase { @@ -71,137 +71,137 @@ public PressureCalculationCross(double @diameter, double @diameterA, double @dia this.LengthB = @lengthB; this.LengthC = @lengthC; this.FrictionLossCoefficient = @frictionLossCoefficient; - } - + } + // Empty constructor public PressureCalculationCross() : base() { } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("DiameterA", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterA { get; set; } - + [JsonProperty("DiameterB", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterB { get; set; } - + [JsonProperty("DiameterC", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterC { get; set; } - + [JsonProperty("DiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterInner { get; set; } - + [JsonProperty("DiameterAInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterAInner { get; set; } - + [JsonProperty("DiameterBInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterBInner { get; set; } - + [JsonProperty("DiameterCInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterCInner { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("FlowA", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FlowA { get; set; } - + [JsonProperty("FlowB", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FlowB { get; set; } - + [JsonProperty("FlowC", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FlowC { get; set; } - + [JsonProperty("ZLossAToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLossAToTrunk { get; set; } - + [JsonProperty("ZAToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZAToTrunk { get; set; } - + [JsonProperty("ZLossBToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLossBToTrunk { get; set; } - + [JsonProperty("ZBToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZBToTrunk { get; set; } - + [JsonProperty("ZLossCToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLossCToTrunk { get; set; } - + [JsonProperty("ZCToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZCToTrunk { get; set; } - + [JsonProperty("StaticGainBToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGainBToTrunk { get; set; } - + [JsonProperty("StaticGainCToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGainCToTrunk { get; set; } - + [JsonProperty("StaticGainAToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGainAToTrunk { get; set; } - + [JsonProperty("FluidVelocityA", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocityA { get; set; } - + [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + [JsonProperty("FluidVelocityB", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocityB { get; set; } - + [JsonProperty("FluidVelocityC", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocityC { get; set; } - + [JsonProperty("HeightDeltaAToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDeltaAToTrunk { get; set; } - + [JsonProperty("HeightDeltaBToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDeltaBToTrunk { get; set; } - + [JsonProperty("HeightDeltaCToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDeltaCToTrunk { get; set; } - + [JsonProperty("PipeLossA", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLossA { get; set; } - + [JsonProperty("PipeLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLoss { get; set; } - + [JsonProperty("PipeLossB", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLossB { get; set; } - + [JsonProperty("PipeLossC", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLossC { get; set; } - + [JsonProperty("DynamicPressureA", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressureA { get; set; } - + [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - + [JsonProperty("DynamicPressureB", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressureB { get; set; } - + [JsonProperty("DynamicPressureC", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressureC { get; set; } - + [JsonProperty("LengthMain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double LengthMain { get; set; } - + [JsonProperty("Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Length { get; set; } - + [JsonProperty("LengthB", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double LengthB { get; set; } - + [JsonProperty("LengthC", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double LengthC { get; set; } - + [JsonProperty("FrictionLossCoefficient", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionLossCoefficient { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationElbow.g.cs b/Elements.MEP/src/Generated/PressureCalculationElbow.g.cs index 3f687b8d5..d00071fbc 100644 --- a/Elements.MEP/src/Generated/PressureCalculationElbow.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationElbow.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Pressure calculation data for an elbow - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationElbow : PressureCalculationBase { @@ -46,62 +46,62 @@ public PressureCalculationElbow(double @zLoss, double @z, double @staticGain, do this.DynamicPressure = @dynamicPressure; this.RoverD = @roverD; this.FrictionLossCoefficient = @frictionLossCoefficient; - } - + } + // Empty constructor public PressureCalculationElbow() : base() { } - + [JsonProperty("ZLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLoss { get; set; } - + [JsonProperty("Z", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Z { get; set; } - + [JsonProperty("StaticGain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGain { get; set; } - + [JsonProperty("PipeLossStart", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLossStart { get; set; } - + [JsonProperty("PipeLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLoss { get; set; } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("DiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterInner { get; set; } - + [JsonProperty("HeightDelta", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDelta { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("LengthStart", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double LengthStart { get; set; } - + [JsonProperty("Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Length { get; set; } - + [JsonProperty("BendAngle", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double BendAngle { get; set; } - + [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - + [JsonProperty("RoverD", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double RoverD { get; set; } - + [JsonProperty("FrictionLossCoefficient", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionLossCoefficient { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationManifold.g.cs b/Elements.MEP/src/Generated/PressureCalculationManifold.g.cs index ad406f249..797c3abe0 100644 --- a/Elements.MEP/src/Generated/PressureCalculationManifold.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationManifold.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The pressure calculation data for a manifold - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationManifold : PressureCalculationBase { @@ -39,41 +39,41 @@ public PressureCalculationManifold(IList @zLosses, IList @flows, this.PipeLosses = @pipeLosses; this.Flow = @flow; this.Diameter = @diameter; - } - + } + // Empty constructor public PressureCalculationManifold() : base() { } - + [JsonProperty("ZLosses", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList ZLosses { get; set; } - + [JsonProperty("Flows", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Flows { get; set; } - + [JsonProperty("Diameters", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Diameters { get; set; } - + [JsonProperty("HeightDeltas", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList HeightDeltas { get; set; } - + [JsonProperty("StaticGains", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList StaticGains { get; set; } - + [JsonProperty("Lengths", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Lengths { get; set; } - + [JsonProperty("PipeLosses", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList PipeLosses { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationReducer.g.cs b/Elements.MEP/src/Generated/PressureCalculationReducer.g.cs index 2486bacd3..10a8b837f 100644 --- a/Elements.MEP/src/Generated/PressureCalculationReducer.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationReducer.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The pressure calculation data for the fitting. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationReducer : PressureCalculationBase { @@ -48,68 +48,68 @@ public PressureCalculationReducer(double @startDiameter, double @diameter, doubl this.LengthStart = @lengthStart; this.Length = @length; this.FrictionLossCoefficient = @frictionLossCoefficient; - } - + } + // Empty constructor public PressureCalculationReducer() : base() { } - + [JsonProperty("StartDiameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StartDiameter { get; set; } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("StartDiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StartDiameterInner { get; set; } - + [JsonProperty("DiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterInner { get; set; } - + [JsonProperty("HeightDelta", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDelta { get; set; } - + [JsonProperty("ZLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLoss { get; set; } - + [JsonProperty("Z", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Z { get; set; } - + [JsonProperty("StaticGain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGain { get; set; } - + [JsonProperty("PipeLossStart", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLossStart { get; set; } - + [JsonProperty("PipeLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLoss { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("FluidVelocityStart", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocityStart { get; set; } - + [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + [JsonProperty("DynamicPressureStart", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressureStart { get; set; } - + [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - + [JsonProperty("LengthStart", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double LengthStart { get; set; } - + [JsonProperty("Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Length { get; set; } - + [JsonProperty("FrictionLossCoefficient", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionLossCoefficient { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationSegment.g.cs b/Elements.MEP/src/Generated/PressureCalculationSegment.g.cs index 8a5a1d30f..ca10734a6 100644 --- a/Elements.MEP/src/Generated/PressureCalculationSegment.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationSegment.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Pressure calculation data. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationSegment : PressureCalculationBase { @@ -44,58 +44,58 @@ public PressureCalculationSegment(double @diameter, double @diameterInner, doubl this.MaxUnderPressure = @maxUnderPressure; this.TotalPressure = @totalPressure; this.FrictionLossCoefficient = @frictionLossCoefficient; - } - + } + // Empty constructor public PressureCalculationSegment() : base() { } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("DiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterInner { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("HeightDelta", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDelta { get; set; } - + [JsonProperty("Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Length { get; set; } - + [JsonProperty("PipeLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLoss { get; set; } - + [JsonProperty("StaticGain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGain { get; set; } - + [JsonProperty("FrictionFactor", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionFactor { get; set; } - + [JsonProperty("ReynoldsNumber", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ReynoldsNumber { get; set; } - + [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - + /// The maximum underpressure this pipe can structurally sustain. [JsonProperty("MaxUnderPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double MaxUnderPressure { get; set; } - + /// The sum of Dynamic and Static pressures at the start of the pipe. [JsonProperty("TotalPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double TotalPressure { get; set; } - + [JsonProperty("FrictionLossCoefficient", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionLossCoefficient { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationTerminal.g.cs b/Elements.MEP/src/Generated/PressureCalculationTerminal.g.cs index 202ee1f2f..26b7b8ea4 100644 --- a/Elements.MEP/src/Generated/PressureCalculationTerminal.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationTerminal.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Pressure calc data - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationTerminal : PressureCalculationBase { @@ -43,53 +43,53 @@ public PressureCalculationTerminal(double? @fixedPressure, double @pipeLoss, dou this.HeightDelta = @heightDelta; this.DynamicPressure = @dynamicPressure; this.FrictionLossCoefficient = @frictionLossCoefficient; - } - + } + // Empty constructor public PressureCalculationTerminal() : base() { } - + [JsonProperty("FixedPressure", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double? FixedPressure { get; set; } - + [JsonProperty("PipeLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLoss { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + [JsonProperty("ZLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLoss { get; set; } - + [JsonProperty("Z", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Z { get; set; } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("DiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterInner { get; set; } - + [JsonProperty("Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Length { get; set; } - + [JsonProperty("StaticGain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGain { get; set; } - + [JsonProperty("HeightDelta", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDelta { get; set; } - + [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - + [JsonProperty("FrictionLossCoefficient", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionLossCoefficient { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/PressureCalculationWye.g.cs b/Elements.MEP/src/Generated/PressureCalculationWye.g.cs index eb34e9f14..4ae74875c 100644 --- a/Elements.MEP/src/Generated/PressureCalculationWye.g.cs +++ b/Elements.MEP/src/Generated/PressureCalculationWye.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// Pressure calculation data for a wye fitting - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class PressureCalculationWye : PressureCalculationBase { @@ -60,104 +60,104 @@ public PressureCalculationWye(double @diameter, double @mainDiameter, double @br this.Length = @length; this.LengthBranch = @lengthBranch; this.FrictionLossCoefficient = @frictionLossCoefficient; - } - + } + // Empty constructor public PressureCalculationWye() : base() { } - + [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + [JsonProperty("MainDiameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double MainDiameter { get; set; } - + [JsonProperty("BranchDiameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double BranchDiameter { get; set; } - + [JsonProperty("DiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DiameterInner { get; set; } - + [JsonProperty("MainDiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double MainDiameterInner { get; set; } - + [JsonProperty("BranchDiameterInner", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double BranchDiameterInner { get; set; } - + [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + [JsonProperty("FlowMain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FlowMain { get; set; } - + [JsonProperty("FlowBranch", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FlowBranch { get; set; } - + [JsonProperty("ZLossBranchToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLossBranchToTrunk { get; set; } - + [JsonProperty("ZBranchToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZBranchToTrunk { get; set; } - + [JsonProperty("ZLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ZLoss { get; set; } - + [JsonProperty("Z", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Z { get; set; } - + [JsonProperty("StaticGainBranchToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGainBranchToTrunk { get; set; } - + [JsonProperty("StaticGain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticGain { get; set; } - + [JsonProperty("FluidVelocityMain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocityMain { get; set; } - + [JsonProperty("FluidVelocity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocity { get; set; } - + [JsonProperty("FluidVelocityBranch", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FluidVelocityBranch { get; set; } - + [JsonProperty("HeightDelta", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDelta { get; set; } - + [JsonProperty("HeightDeltaBranchToTrunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double HeightDeltaBranchToTrunk { get; set; } - + [JsonProperty("PipeLossMain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLossMain { get; set; } - + [JsonProperty("PipeLoss", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLoss { get; set; } - + [JsonProperty("PipeLossBranch", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PipeLossBranch { get; set; } - + [JsonProperty("DynamicPressureMain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressureMain { get; set; } - + [JsonProperty("DynamicPressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressure { get; set; } - + [JsonProperty("DynamicPressureBranch", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DynamicPressureBranch { get; set; } - + [JsonProperty("LengthMain", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double LengthMain { get; set; } - + [JsonProperty("Length", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Length { get; set; } - + [JsonProperty("LengthBranch", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double LengthBranch { get; set; } - + [JsonProperty("FrictionLossCoefficient", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double FrictionLossCoefficient { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/RainLoad.g.cs b/Elements.MEP/src/Generated/RainLoad.g.cs index e127a300b..c8b482c70 100644 --- a/Elements.MEP/src/Generated/RainLoad.g.cs +++ b/Elements.MEP/src/Generated/RainLoad.g.cs @@ -19,10 +19,10 @@ namespace Elements { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// The amount of rain that needs to be drained. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class RainLoad : Element { @@ -32,22 +32,22 @@ public RainLoad(double @rainLoad, System.Guid @roofSection, System.Guid @id = de { this.RainLoad1 = @rainLoad; this.RoofSection = @roofSection; - } - + } + // Empty constructor public RainLoad() : base() { } - + /// The amount of water in L/s that needs to be drained. [JsonProperty("Rain Load", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double RainLoad1 { get; set; } - + /// ID of the roof section that is associated with this load [JsonProperty("Roof Section", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public System.Guid RoofSection { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Reducer.g.cs b/Elements.MEP/src/Generated/Reducer.g.cs index b452bbb03..8b3afa29e 100644 --- a/Elements.MEP/src/Generated/Reducer.g.cs +++ b/Elements.MEP/src/Generated/Reducer.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A Fitting that can reduce the diameter of the pipe passing through. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Reducer : Fitting { @@ -33,26 +33,26 @@ public Reducer(Port @start, Port @end, PressureCalculationReducer @pressureCalcu this.Start = @start; this.End = @end; this.PressureCalculations = @pressureCalculations; - } - + } + // Empty constructor public Reducer() : base() { } - + /// One end connector of the coupling. [JsonProperty("Start", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Start { get; set; } - + /// The other end of the reducer. [JsonProperty("End", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port End { get; set; } - + /// Pressure calcs [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationReducer PressureCalculations { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/RoofDrain.g.cs b/Elements.MEP/src/Generated/RoofDrain.g.cs index d1eede735..e6aa8084f 100644 --- a/Elements.MEP/src/Generated/RoofDrain.g.cs +++ b/Elements.MEP/src/Generated/RoofDrain.g.cs @@ -19,9 +19,9 @@ namespace Elements { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings + - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class RoofDrain : GeometricElement { @@ -36,42 +36,42 @@ public RoofDrain(double @diameter, double @drainageRate, int @lowLineIndex, doub this.IsFollower = @isFollower; this.WaterHeight = @waterHeight; this.RoofSection = @roofSection; - } - + } + // Empty constructor public RoofDrain() : base() { } - + /// The diameter of the roof drain. [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + /// The drainage rate of this drain [JsonProperty("Drainage Rate", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double DrainageRate { get; set; } - + /// The index of the lowline, in the Roof Section's list of Low Lines, that contains this roof drain. [JsonProperty("Low Line Index", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public int LowLineIndex { get; set; } - + /// The normalized parameter of this roof drain's location in the lowline. [JsonProperty("Position Parameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double PositionParameter { get; set; } - + /// This roof drain follows the relataive position of an original roof drain to its drainable section. [JsonProperty("IsFollower", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public bool IsFollower { get; set; } - + /// The design height of water at the Drainage Rate. [JsonProperty("WaterHeight", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double WaterHeight { get; set; } - + /// The ID of the associated DrainableRoofSection [JsonProperty("Roof Section", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string RoofSection { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Section.g.cs b/Elements.MEP/src/Generated/Section.g.cs index 870117128..334e1a25a 100644 --- a/Elements.MEP/src/Generated/Section.g.cs +++ b/Elements.MEP/src/Generated/Section.g.cs @@ -19,10 +19,10 @@ namespace Elements.Flow { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A non branching portion between two nodes in a Tree network - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Section : GeometricElement { @@ -37,42 +37,42 @@ public Section(Polyline @path, Node @end, double @flow, Node @start, Tree @tree, this.Tree = @tree; this.SectionKey = @sectionKey; this.HintPath = @hintPath; - } - + } + // Empty constructor public Section() : base() { } - + /// The polyline path of this Section. [JsonProperty("Path", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Polyline Path { get; set; } - + /// One end of the section. [JsonProperty("End", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Node End { get; set; } - + /// The flow of this section. [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + /// The start node of the section. [JsonProperty("Start", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Node Start { get; set; } - + /// The tree this section belongs to. [JsonProperty("Tree", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Tree Tree { get; set; } - + /// The key to identify this section in a network. [JsonProperty("SectionKey", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string SectionKey { get; set; } - + /// The suggested route for flow. [JsonProperty("HintPath", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Polyline HintPath { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/StraightSegment.g.cs b/Elements.MEP/src/Generated/StraightSegment.g.cs index 589be3cdc..a9b5d3eaa 100644 --- a/Elements.MEP/src/Generated/StraightSegment.g.cs +++ b/Elements.MEP/src/Generated/StraightSegment.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// An element representing a pipe between two PipeConnections. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class StraightSegment : ComponentBase { @@ -36,38 +36,38 @@ public StraightSegment(double @diameter, double @wallThickness, Port @end, Port this.Start = @start; this.Path = @path; this.PressureCalculations = @pressureCalculations; - } - + } + // Empty constructor public StraightSegment() : base() { } - + /// The design diameter of the pipe(not the flow diameter). [JsonProperty("Diameter", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Diameter { get; set; } - + /// The thickness of the wall of the pipe. The available diameter for flow is the Diameter minus 2X the Wall Thickness [JsonProperty("Wall Thickness", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double WallThickness { get; set; } - + /// The end of the pipe. Fluid travels from start -> end in a pipe. [JsonProperty("End", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port End { get; set; } - + /// The start of the pipe. Fluid travels from start -> end in a pipe. [JsonProperty("Start", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Start { get; set; } - + /// The path of the pipe segment. This polyline will normally have exactly two points except when a new path is being suggested as an override. [JsonProperty("Path", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Polyline Path { get; set; } - + /// The pressure calculation data for this pipe segment. [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationSegment PressureCalculations { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Terminal.g.cs b/Elements.MEP/src/Generated/Terminal.g.cs index 288f8c182..a47c51d29 100644 --- a/Elements.MEP/src/Generated/Terminal.g.cs +++ b/Elements.MEP/src/Generated/Terminal.g.cs @@ -20,10 +20,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A termination point of a piping system. Has a single connection. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Terminal : Fitting { @@ -35,30 +35,30 @@ public Terminal(Port @port, Node @flowNode, PressureCalculationTerminal @pressur this.FlowNode = @flowNode; this.PressureCalculations = @pressureCalculations; this.StaticPressure = @staticPressure; - } - + } + // Empty constructor public Terminal() : base() { } - + /// The connector for this terminal. [JsonProperty("Port", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Port { get; set; } - + /// The Node served by this Terminal, if any. [JsonProperty("FlowNode", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Node FlowNode { get; set; } - + /// The Pressure calculations [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationTerminal PressureCalculations { get; set; } - + /// The static pressure at the final termination. [JsonProperty("Static Pressure", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double StaticPressure { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Trunk.g.cs b/Elements.MEP/src/Generated/Trunk.g.cs index 2c67baa35..0f16682b0 100644 --- a/Elements.MEP/src/Generated/Trunk.g.cs +++ b/Elements.MEP/src/Generated/Trunk.g.cs @@ -19,10 +19,10 @@ namespace Elements.Flow { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A port with flow in or out of a tree. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Trunk : Node { @@ -32,22 +32,22 @@ public Trunk(double @flow, string @networkReference, Vector3 @position, System.G { this.Flow = @flow; this.NetworkReference = @networkReference; - } - + } + // Empty constructor public Trunk() : base() { } - + /// The amount of flow in the trunk. [JsonProperty("Flow", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Flow { get; set; } - + /// A reference to the network this node belongs to. [JsonProperty("NetworkReference", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string NetworkReference { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/Generated/Wye.g.cs b/Elements.MEP/src/Generated/Wye.g.cs index e6b27874f..1780aac3b 100644 --- a/Elements.MEP/src/Generated/Wye.g.cs +++ b/Elements.MEP/src/Generated/Wye.g.cs @@ -19,10 +19,10 @@ namespace Elements.Fittings { - #pragma warning disable // Disable all warnings +#pragma warning disable // Disable all warnings /// A Wye piping connection - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "10.1.21.0 (Newtonsoft.Json v13.0.0.0)")] public partial class Wye : Fitting { @@ -35,34 +35,34 @@ public Wye(Port @trunk, double @angle, Port @sideBranch, Port @mainBranch, Press this.SideBranch = @sideBranch; this.MainBranch = @mainBranch; this.PressureCalculations = @pressureCalculations; - } - + } + // Empty constructor public Wye() : base() { } - + /// The connector at the trunk [JsonProperty("Trunk", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port Trunk { get; set; } - + /// The angle the SideBranch makes with the MainBranch [JsonProperty("Angle", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Angle { get; set; } - + /// The connector that branches from the Trunk, angled from the MainBranch. [JsonProperty("SideBranch", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port SideBranch { get; set; } - + /// The connector of the main branch from the Trunk. [JsonProperty("MainBranch", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Port MainBranch { get; set; } - + /// Pressure Calculations [JsonProperty("Pressure Calculations", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public PressureCalculationWye PressureCalculations { get; set; } - - + + } } \ No newline at end of file diff --git a/Elements.MEP/src/MergeGroup.cs b/Elements.MEP/src/MergeGroup.cs index fcc114de7..592d17166 100644 --- a/Elements.MEP/src/MergeGroup.cs +++ b/Elements.MEP/src/MergeGroup.cs @@ -1,15 +1,15 @@ using Elements.Geometry; using Elements.Geometry.Solids; using System.Collections.Generic; +using System.Text.Json.Serialization; using Polygon = Elements.Geometry.Polygon; namespace Elements { /// A list of elements that are grouped together. - [Newtonsoft.Json.JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public partial class MergeGroup : GeometricElement { - [Newtonsoft.Json.JsonConstructor] + [JsonConstructor] public MergeGroup(IList @elementIds, Polygon @boundary, Transform @transform = null, Material @material = null, Representation @representation = null, bool @isElementDefinition = false, System.Guid @id = default, string @name = null) : base(transform, material, representation, isElementDefinition, id, name) { @@ -18,11 +18,11 @@ public MergeGroup(IList @elementIds, Polygon @boundary, Transform @trans } /// The guids of the elements that are in this group. - [Newtonsoft.Json.JsonProperty("ElementIds", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("ElementIds")] public IList ElementIds { get; set; } /// The boundary of the space. - [Newtonsoft.Json.JsonProperty("Boundary", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("Boundary")] public Polygon Boundary { get; set; } public override void UpdateRepresentations() diff --git a/Elements.MEP/test/SerializationTests.cs b/Elements.MEP/test/SerializationTests.cs index 161f2f4c8..f25c5b02e 100644 --- a/Elements.MEP/test/SerializationTests.cs +++ b/Elements.MEP/test/SerializationTests.cs @@ -65,8 +65,8 @@ public void RoofDrainTests() model.AddElement(drain); var json = model.ToJson(); - var mdl = Model.FromJson(json, out var errors); - Assert.Empty(errors); + var mdl = Model.FromJson(json); + // Assert.Empty(errors); } } } \ No newline at end of file diff --git a/Elements.Playground/Elements.Playground.csproj b/Elements.Playground/Elements.Playground.csproj index 83a14308e..8f1ba3652 100644 --- a/Elements.Playground/Elements.Playground.csproj +++ b/Elements.Playground/Elements.Playground.csproj @@ -1,18 +1,19 @@ - net5.0 + net6.0 en false false false + true - - + + - + diff --git a/Elements.Playground/Pages/Model.razor b/Elements.Playground/Pages/Model.razor index bc9adafa5..9f0aa4b0e 100644 --- a/Elements.Playground/Pages/Model.razor +++ b/Elements.Playground/Pages/Model.razor @@ -3,20 +3,23 @@ @using Microsoft.CodeAnalysis @using Microsoft.CodeAnalysis.CSharp @using Microsoft.CodeAnalysis.CSharp.Scripting.Hosting +@using System.Diagnostics @using System.Reflection @using System.IO @using System.Threading @using System.Web +@using System.Diagnostics @inject IJSRuntime JSRuntime @inject IJSUnmarshalledRuntime JSUnmarshalledRuntime @inject NavigationManager MyNavigationManager - +@using System.Text.RegularExpressions;
@csharp
-
@((MarkupString)Output)
+
@((MarkupString)Regex.Replace( + HttpUtility.HtmlEncode(@Output), "\r?\n|\r", "
"))
@code { @@ -32,35 +35,35 @@ var p = wf.GetProfileByType(WideFlangeProfileType.W10x100); for(var i=0; i<1; i++) { - var start = new Vector3(i, 0, 0); - var end = new Vector3(i, length, i); +var start = new Vector3(i, 0, 0); +var end = new Vector3(i, length, i); - // The bottom chord - var bottomChord = new Line(start, end); - var bottomChordBeam = new Beam(bottomChord, p, m); - model.AddElement(bottomChordBeam); +// The bottom chord +var bottomChord = new Line(start, end); +var bottomChordBeam = new Beam(bottomChord, p, null, m); +model.AddElement(bottomChordBeam); - var topChord = new Line(start + new Vector3(0,0,5), end + new Vector3(0,0,5)); - var topChordBeam = new Beam(topChord, p, m); - model.AddElement(topChordBeam); +var topChord = new Line(start + new Vector3(0,0,5), end + new Vector3(0,0,5)); +var topChordBeam = new Beam(topChord, p, null, m); +model.AddElement(topChordBeam); - Vector3 last = default(Vector3); - for(var j=0.0; j<=1.0; j+=0.1) - { - var pt = bottomChord.PointAt(j); - var top = pt + new Vector3(0,0,5); - var panelLine = new Line(pt, top); - var panelBeam = new Beam(panelLine, p, m); - model.AddElement(panelBeam); +Vector3 last = default(Vector3); +for(var j=0.0; j<=1.0; j+=0.1) +{ +var pt = bottomChord.PointAt(j); +var top = pt + new Vector3(0,0,5); +var panelLine = new Line(pt, top); +var panelBeam = new Beam(panelLine, p, null, m); +model.AddElement(panelBeam); - if(j > 0.0) - { - var braceLine = new Line(top, last); - var braceBeam = new Beam(braceLine, p, m); - model.AddElement(braceBeam); - } - last = pt; - } +if(j > 0.0) +{ +var braceLine = new Line(top, last); +var braceBeam = new Beam(braceLine, p, null, m); +model.AddElement(braceBeam); +} +last = pt; +} } return model;"; private static string Output = ""; @@ -115,6 +118,11 @@ return model;"; var writer = new StringWriter(); Console.SetOut(writer); + // Redirect debug to the console. + Trace.Listeners.Clear(); + Trace.Listeners.Add( + new TextWriterTraceListener(Console.Out)); + Exception exception = null; try { @@ -143,7 +151,6 @@ return model;"; Output = writer.ToString(); if (exception != null) { - Output += "\r\n" + exception.ToString(); } Console.SetOut(currentOut); diff --git a/Elements.Playground/README.md b/Elements.Playground/README.md index 2c84deef2..0552be000 100644 --- a/Elements.Playground/README.md +++ b/Elements.Playground/README.md @@ -9,7 +9,7 @@ This is a minimal example using .NET 5, Blazor webassembly, and Elements. Visit http://localhost:5000. ### Publishing -`dotnet public -c release` +`dotnet publish -c release` ### Notes about hosting on Github Pages - In the site's repo on github diff --git a/Elements.Playground/wwwroot/js/model.js b/Elements.Playground/wwwroot/js/model.js index b99318baa..2013da11d 100644 --- a/Elements.Playground/wwwroot/js/model.js +++ b/Elements.Playground/wwwroot/js/model.js @@ -58,18 +58,9 @@ function initializeEditor() { enableLiveAutocompletion: true }); - let timer; - let runTimer = () => { - timer = setTimeout(() => { - invokeRun(); - }, 2000); - } - editor.getSession().on('change', function () { var code = editor.getValue(); DotNet.invokeMethod('Elements.Playground', 'SetCodeValue', code) - clearTimeout(timer); - runTimer(); }); } diff --git a/Elements.Serialization.DXF/src/ToDxfExtensions.cs b/Elements.Serialization.DXF/src/ToDxfExtensions.cs index 6eb64b22d..4e303f994 100644 --- a/Elements.Serialization.DXF/src/ToDxfExtensions.cs +++ b/Elements.Serialization.DXF/src/ToDxfExtensions.cs @@ -75,7 +75,7 @@ public static int To24BitColor(this Color color) } /// - /// + /// /// /// /// diff --git a/Elements.Serialization.DXF/tests/DxfTests.cs b/Elements.Serialization.DXF/tests/DxfTests.cs index 5f9eb5f89..60c8f9507 100644 --- a/Elements.Serialization.DXF/tests/DxfTests.cs +++ b/Elements.Serialization.DXF/tests/DxfTests.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.IO; +using System.Text.Json; using Elements.Geometry; using Xunit; @@ -67,7 +68,7 @@ public void DxfFromModel() var renderer = new DXF.ModelToDxf(); var configJson = File.ReadAllText("../../../TestModels/cad-standard.json"); - var config = Newtonsoft.Json.JsonConvert.DeserializeObject(configJson); + var config = JsonSerializer.Deserialize(configJson); renderer.SetMappingConfiguration(config); var stream = renderer.Render(model); stream.Position = 0; diff --git a/Elements.Serialization.SVG/test/SvgTests.cs b/Elements.Serialization.SVG/test/SvgTests.cs index 6c9347de8..2e0f2c644 100644 --- a/Elements.Serialization.SVG/test/SvgTests.cs +++ b/Elements.Serialization.SVG/test/SvgTests.cs @@ -23,7 +23,7 @@ public class SvgTests public void Plan() { var json = File.ReadAllText("../../../models/tower.json"); - var model = Model.FromJson(json, out _); + var model = Model.FromJson(json); model.UpdateRepresentations(); model.UpdateBoundsAndComputedSolids(); diff --git a/Elements.Wasm/.gitignore b/Elements.Wasm/.gitignore new file mode 100644 index 000000000..3c6742f8d --- /dev/null +++ b/Elements.Wasm/.gitignore @@ -0,0 +1 @@ +deploy \ No newline at end of file diff --git a/Elements.Wasm/Elements.Wasm.csproj b/Elements.Wasm/Elements.Wasm.csproj new file mode 100644 index 000000000..2c7565b3b --- /dev/null +++ b/Elements.Wasm/Elements.Wasm.csproj @@ -0,0 +1,22 @@ + + + + net6.0 + enable + enable + en + true + + false + + + + + + + + + + + + diff --git a/Elements.Wasm/ElementsAPI.cs b/Elements.Wasm/ElementsAPI.cs new file mode 100644 index 000000000..c2fac1523 --- /dev/null +++ b/Elements.Wasm/ElementsAPI.cs @@ -0,0 +1,96 @@ +using System.Linq; +using System.Threading.Tasks; +using Elements; +using Elements.Geometry; +using Elements.Serialization.glTF; +using Elements.Spatial; +using Elements.Validators; +using Microsoft.JSInterop; +using System.Diagnostics; +using System.Text; + +public static class ElementsAPI +{ + [JSInvokable] + public static Task ModelFromJson(string json) + { + return Task.FromResult(Model.FromJson(json)); + } + + [JSInvokable] + public static Task ModelToGlbBase64(string json) + { + Validator.DisableValidationOnConstruction = true; + + var model = Model.GeometricElementModelFromJson(json); + return Task.FromResult(model.ToBase64String()); + } + + [JSInvokable] + public static Task ModelToGlbBytes(string json) + { + Validator.DisableValidationOnConstruction = true; + + var sw = new Stopwatch(); + sw.Start(); + var model = Model.GeometricElementModelFromJson(json); + Debug.WriteLine($"{sw.ElapsedMilliseconds}ms for creating the model from json."); + sw.Restart(); + var result = Task.FromResult(model.ToGlTF()); + Debug.WriteLine($"{sw.ElapsedMilliseconds}ms for creating the glb from json."); + return result; + } + + [JSInvokable] + public static Task Test(int value) + { + Validator.DisableValidationOnConstruction = true; + + var sw = new Stopwatch(); + sw.Start(); + var sb = new StringBuilder(); + + var model = new Model(); + var r = new Random(); + var size = 10; + var profile = new Profile(Polygon.L(0.1, 0.1, 0.05)); + for (var i = 0; i < value; i++) + { + var start = new Vector3(r.NextDouble() * size, r.NextDouble() * size, r.NextDouble() * size); + var end = new Vector3(r.NextDouble() * size, r.NextDouble() * size, r.NextDouble() * size); + var line = new Line(start, end); + // var c = new Color(r.NextDouble(), r.NextDouble(), r.NextDouble(), 1.0); + // var m = new Material(Guid.NewGuid().ToString(), c); + var beam = new Beam(line, profile, null, BuiltInMaterials.Steel); + model.AddElement(beam); + } + sb.AppendLine($"{sw.ElapsedMilliseconds}ms for creating test beams."); + sw.Restart(); + + var json = model.ToJson(); + sb.AppendLine($"{sw.ElapsedMilliseconds}ms for serializing model."); + sw.Restart(); + + // var baseModel = Model.FromJson(json); + // sb.AppendLine($"{sw.ElapsedMilliseconds}ms for deserializing model using base deserializer."); + // sw.Restart(); + + var newModel = Model.GeometricElementModelFromJson(json); + sb.AppendLine($"{sw.ElapsedMilliseconds}ms for deserializing model using geometric elements"); + sw.Restart(); + + var result = model.ToGlTF(); + sb.AppendLine($"{sw.ElapsedMilliseconds}ms for creating the glb."); + return Task.FromResult(new TestResult() + { + Glb = result, + Results = sb.ToString() + }); + } + + public class TestResult + { + public byte[]? Glb { get; set; } + public string? Results { get; set; } + } +} diff --git a/Elements.Wasm/Program.cs b/Elements.Wasm/Program.cs new file mode 100644 index 000000000..34026f32a --- /dev/null +++ b/Elements.Wasm/Program.cs @@ -0,0 +1,8 @@ +using Microsoft.AspNetCore.Components.Web; +using Microsoft.AspNetCore.Components.WebAssembly.Hosting; + +var builder = WebAssemblyHostBuilder.CreateDefault(args); + +builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) }); + +await builder.Build().RunAsync(); diff --git a/Elements.Wasm/Properties/launchSettings.json b/Elements.Wasm/Properties/launchSettings.json new file mode 100644 index 000000000..ea9610c7e --- /dev/null +++ b/Elements.Wasm/Properties/launchSettings.json @@ -0,0 +1,30 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:41674", + "sslPort": 44385 + } + }, + "profiles": { + "Elements.Wasm": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "applicationUrl": "https://localhost:7289;http://localhost:5072", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/Elements.Wasm/README.md b/Elements.Wasm/README.md new file mode 100644 index 000000000..f49bcf6d5 --- /dev/null +++ b/Elements.Wasm/README.md @@ -0,0 +1,22 @@ +# Elements.Wasm +This is a minimal web assembly project. + +### Build and Deploy +The elements web assembly assets are served from S3 via cloud front at https://elements.hypar.io. The deploy script will publish the "app" and copy and deploy all necessary files. +``` +./deploy.sh +``` + +### Run +After using the deployment script above, you can run a local application against the deployed files by doing the following. +``` +cd wwwroot +python3 -m http.server +``` + +### Files +`Elements.js` +- The javascript elements API. Elements is made available on the window object. + +`ElementsAPI.cs` +- A wrapper around .net elements that is called by the javascript API. \ No newline at end of file diff --git a/Elements.Wasm/deploy.sh b/Elements.Wasm/deploy.sh new file mode 100755 index 000000000..eabc08cc2 --- /dev/null +++ b/Elements.Wasm/deploy.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +source='./bin/Release/net6.0/wwwroot/_framework' + +echo "Building the app..." +dotnet publish -c release + +echo "Uploading assets to s3..." +aws s3 sync "$source" s3://elements-wasm/ --exclude "*.gz" --exclude "*.br" + +echo "Creating an invalidation..." +aws cloudfront create-invalidation --distribution-id E19YQ16H2KTDNU --paths "/*" \ No newline at end of file diff --git a/Elements.Wasm/wwwroot/elements.js b/Elements.Wasm/wwwroot/elements.js new file mode 100644 index 000000000..a93f9d828 --- /dev/null +++ b/Elements.Wasm/wwwroot/elements.js @@ -0,0 +1,19 @@ +class Elements { + async modelFromJson(json) { + return DotNet.invokeMethodAsync('Elements.Wasm', 'ModelFromJson', json) + } + + async modelToGlbBase64(json) { + return DotNet.invokeMethodAsync('Elements.Wasm', 'ModelToGlbBase64', json) + } + + async modelToGlbBytes(json) { + return DotNet.invokeMethodAsync('Elements.Wasm', 'ModelToGlbBytes', json) + } + + async test(value) { + return DotNet.invokeMethodAsync('Elements.Wasm', 'Test', value) + } +} + +window.elements = new Elements(); \ No newline at end of file diff --git a/Elements.Wasm/wwwroot/index.html b/Elements.Wasm/wwwroot/index.html new file mode 100644 index 000000000..31ebd135b --- /dev/null +++ b/Elements.Wasm/wwwroot/index.html @@ -0,0 +1,135 @@ + + + + + + + Elements.Wasm + + + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/Elements.Wasm/wwwroot/model.json b/Elements.Wasm/wwwroot/model.json new file mode 100644 index 000000000..a8ad0ba51 --- /dev/null +++ b/Elements.Wasm/wwwroot/model.json @@ -0,0 +1,144757 @@ +{ + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Elements": { + "77a9f129-0920-40f0-9e77-044b189f100b": { + "discriminator": "Elements.Geometry.Profiles.WideFlangeProfile", + "d": 0.40386, + "tw": 0.038862, + "bf": 0.33274, + "tf": 0.062738, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.16637, + "Y": 0.20193, + "Z": 0.0 + }, + { + "X": -0.16637, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.019431, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.019431, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.16637, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.16637, + "Y": -0.20193, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": -0.20193, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.019431, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.019431, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": 0.20193, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "77a9f129-0920-40f0-9e77-044b189f100b", + "Name": "W12x279" + }, + "f4f88090-a34c-42af-9cb8-30bca38ef11e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7342488177745831, + "Green": 0.9899171818932133, + "Blue": 0.30313707110618104, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f4f88090-a34c-42af-9cb8-30bca38ef11e", + "Name": "ffa6b3b5-5a87-49ff-ba32-c2f50515b46c" + }, + "cf453dad-ab5e-49ba-ba24-d5df93119866": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f4f88090-a34c-42af-9cb8-30bca38ef11e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cf453dad-ab5e-49ba-ba24-d5df93119866", + "Name": null + }, + "d26b17d3-f6bf-4eab-a625-1dfe416433f0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3389443128085436, + "Green": 0.16118375545422722, + "Blue": 0.5312237681500724, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d26b17d3-f6bf-4eab-a625-1dfe416433f0", + "Name": "05bf2e90-0caf-4496-bc90-2bdb95dce4a5" + }, + "529c8a8a-0469-4ee0-90a7-5c701dd83ece": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -58.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d26b17d3-f6bf-4eab-a625-1dfe416433f0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -58.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "529c8a8a-0469-4ee0-90a7-5c701dd83ece", + "Name": null + }, + "8775cab2-6e13-45f7-a802-8bf045e026c0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4009919471112042, + "Green": 0.3825796574273052, + "Blue": 0.6625239162996989, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8775cab2-6e13-45f7-a802-8bf045e026c0", + "Name": "4c4f4337-f8f9-48e8-8cd3-5abd01bba1b2" + }, + "ce4db56d-928e-4b33-941d-16a502388a3f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -57.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -57.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8775cab2-6e13-45f7-a802-8bf045e026c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -57.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -57.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ce4db56d-928e-4b33-941d-16a502388a3f", + "Name": null + }, + "125305b1-37a0-484c-b268-a7d5bdefa462": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3616121049791631, + "Green": 0.2888516594138237, + "Blue": 0.9483488793244347, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "125305b1-37a0-484c-b268-a7d5bdefa462", + "Name": "636007ae-9fdf-46bb-87dc-8d9974634d71" + }, + "fad93883-fb0c-4a1e-aa9b-4f18f0f2490b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -56.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "125305b1-37a0-484c-b268-a7d5bdefa462", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -56.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fad93883-fb0c-4a1e-aa9b-4f18f0f2490b", + "Name": null + }, + "f42d89f9-6cd5-4c9e-9096-f555195bbb83": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6455493022899839, + "Green": 0.9451100206678315, + "Blue": 0.15982116719699518, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f42d89f9-6cd5-4c9e-9096-f555195bbb83", + "Name": "9b65595c-0140-4de4-b31f-79c2ea739c09" + }, + "2b1da427-1f95-49ad-9976-7810953a0078": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -55.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f42d89f9-6cd5-4c9e-9096-f555195bbb83", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -55.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2b1da427-1f95-49ad-9976-7810953a0078", + "Name": null + }, + "94edc645-3811-42f8-8f9b-4ce0d023a11c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4890142308962598, + "Green": 0.3518197295962925, + "Blue": 0.754810053275344, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "94edc645-3811-42f8-8f9b-4ce0d023a11c", + "Name": "1938be4a-74d5-4ff0-b23b-a284fca72434" + }, + "a1cfd414-66fd-465a-a1a5-e91aae80e679": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -54.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -54.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "94edc645-3811-42f8-8f9b-4ce0d023a11c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -54.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -54.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a1cfd414-66fd-465a-a1a5-e91aae80e679", + "Name": null + }, + "d3c758e4-76b6-4b56-b1c3-fa28678a1e7d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1313233841822126, + "Green": 0.45660366604877806, + "Blue": 0.9943902534406587, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d3c758e4-76b6-4b56-b1c3-fa28678a1e7d", + "Name": "783b809a-3b2a-4fe3-9c83-d30389e4eef1" + }, + "89c9038b-5fe8-4db1-8c83-e04561e74381": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -53.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d3c758e4-76b6-4b56-b1c3-fa28678a1e7d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -53.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "89c9038b-5fe8-4db1-8c83-e04561e74381", + "Name": null + }, + "733e117a-34b8-4a96-a130-50b5b4706580": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3620129126878515, + "Green": 0.7918260003402019, + "Blue": 0.3609958916720915, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "733e117a-34b8-4a96-a130-50b5b4706580", + "Name": "af53bdbd-5a5d-4874-9929-5478635750e7" + }, + "21a8a705-3f72-4385-a38d-2e0196bb3de5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -52.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "733e117a-34b8-4a96-a130-50b5b4706580", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -52.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "21a8a705-3f72-4385-a38d-2e0196bb3de5", + "Name": null + }, + "4c644c8d-91d2-42cb-a8c4-f869fd6a5a96": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5061224747943331, + "Green": 0.04256310083091403, + "Blue": 0.3818656687540308, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4c644c8d-91d2-42cb-a8c4-f869fd6a5a96", + "Name": "95218879-b39b-4a1a-8089-b64cfd2e4dff" + }, + "046fe772-7b5e-4b89-9622-cf61225cd16c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -51.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -51.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4c644c8d-91d2-42cb-a8c4-f869fd6a5a96", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -51.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -51.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "046fe772-7b5e-4b89-9622-cf61225cd16c", + "Name": null + }, + "b4fdc2d6-2eff-483f-a71b-c8323c0d8fc7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8426658156526582, + "Green": 0.8365632890893907, + "Blue": 0.999187590088317, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b4fdc2d6-2eff-483f-a71b-c8323c0d8fc7", + "Name": "af8eb32a-e47c-4ff2-a721-023e0207269e" + }, + "6c3196ce-f88a-45dc-80dc-29797713af71": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -50.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b4fdc2d6-2eff-483f-a71b-c8323c0d8fc7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -50.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6c3196ce-f88a-45dc-80dc-29797713af71", + "Name": null + }, + "dde49fcb-8475-4d45-9f55-1080444c621b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3230489633619082, + "Green": 0.8098286394075624, + "Blue": 0.5818022957918245, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "dde49fcb-8475-4d45-9f55-1080444c621b", + "Name": "6dc7d6d2-1876-4dce-aeac-06199796ede2" + }, + "c4e07335-e765-490f-a0a5-b16cb7c79f20": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -49.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dde49fcb-8475-4d45-9f55-1080444c621b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -49.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c4e07335-e765-490f-a0a5-b16cb7c79f20", + "Name": null + }, + "11095bdd-4cad-41b6-8ecd-9f0b7264d534": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7935420371561973, + "Green": 0.022198746456857186, + "Blue": 0.004480384292304695, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "11095bdd-4cad-41b6-8ecd-9f0b7264d534", + "Name": "0786410e-9477-4633-9000-f2d22b96fdd9" + }, + "a9546e8a-4667-44a5-8b08-e3779f922690": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -48.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -48.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "11095bdd-4cad-41b6-8ecd-9f0b7264d534", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -48.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -48.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a9546e8a-4667-44a5-8b08-e3779f922690", + "Name": null + }, + "39c035bf-b688-4e13-b0e8-27c51b2dddac": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7903348802543874, + "Green": 0.2377481247474198, + "Blue": 0.0072555774856617565, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "39c035bf-b688-4e13-b0e8-27c51b2dddac", + "Name": "45492b8a-16ad-40e7-88b7-df1cd267c5bf" + }, + "9c3ef253-b875-474c-805b-eca60e21715d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -47.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "39c035bf-b688-4e13-b0e8-27c51b2dddac", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -47.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9c3ef253-b875-474c-805b-eca60e21715d", + "Name": null + }, + "21171db6-335b-409e-ab8c-19336bfeaecd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.301360693434887, + "Green": 0.7345765799910652, + "Blue": 0.7678452305346006, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "21171db6-335b-409e-ab8c-19336bfeaecd", + "Name": "52e95c52-17df-4cea-8fd0-45678e100b26" + }, + "b13a171c-5b99-4221-8217-6c092388fc12": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -46.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "21171db6-335b-409e-ab8c-19336bfeaecd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -46.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b13a171c-5b99-4221-8217-6c092388fc12", + "Name": null + }, + "2e86b192-a48d-4cde-8392-9fdb7f7c2ffe": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9827697598295145, + "Green": 0.45292934843009774, + "Blue": 0.5118342812693838, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2e86b192-a48d-4cde-8392-9fdb7f7c2ffe", + "Name": "3a79a722-f099-4076-928c-11404901553f" + }, + "6ad75ac3-0ede-49ef-a566-aa73d457e0c7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -45.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e86b192-a48d-4cde-8392-9fdb7f7c2ffe", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -45.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6ad75ac3-0ede-49ef-a566-aa73d457e0c7", + "Name": null + }, + "235804f0-5f9a-4e1a-a65f-42b79747f970": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.16395173834820825, + "Green": 0.44937136697087965, + "Blue": 0.19522022790984261, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "235804f0-5f9a-4e1a-a65f-42b79747f970", + "Name": "deeba801-92f1-4b88-9beb-ec4f3c869a40" + }, + "95fbf2e9-fe52-495c-b47f-442abf111052": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -44.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "235804f0-5f9a-4e1a-a65f-42b79747f970", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -44.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "95fbf2e9-fe52-495c-b47f-442abf111052", + "Name": null + }, + "a069db18-5c94-439a-ad9d-6bbc2c515c34": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8532355375835837, + "Green": 0.769455196228556, + "Blue": 0.38285632169938477, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a069db18-5c94-439a-ad9d-6bbc2c515c34", + "Name": "49134053-f6cc-4632-918b-39421f0be78c" + }, + "1163c3c8-7c18-493d-a842-2cf31819712e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -43.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a069db18-5c94-439a-ad9d-6bbc2c515c34", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -43.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1163c3c8-7c18-493d-a842-2cf31819712e", + "Name": null + }, + "0f819e0c-4246-4f91-ab50-4df4d1f1ce09": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.13382077921825497, + "Green": 0.15563801310753358, + "Blue": 0.22468407788532044, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0f819e0c-4246-4f91-ab50-4df4d1f1ce09", + "Name": "bf2f2422-8f72-4e5c-afe0-0141c59e50f2" + }, + "9be52ad0-ddef-408a-ba38-3e55af1f2adf": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -42.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -42.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0f819e0c-4246-4f91-ab50-4df4d1f1ce09", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -42.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -42.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9be52ad0-ddef-408a-ba38-3e55af1f2adf", + "Name": null + }, + "66d292b4-eefa-4c6e-b8e8-04093be617c1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.24671803193479686, + "Green": 0.3722359050867315, + "Blue": 0.1980911815530114, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "66d292b4-eefa-4c6e-b8e8-04093be617c1", + "Name": "1c76290f-aa7e-4617-b983-4e9c150140ed" + }, + "1efaa668-8516-4d41-a2d1-8074be669c3c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -41.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "66d292b4-eefa-4c6e-b8e8-04093be617c1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -41.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1efaa668-8516-4d41-a2d1-8074be669c3c", + "Name": null + }, + "9a493f31-1ff1-412d-b77b-566efdd6fd10": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9421411794340896, + "Green": 0.8328218380142105, + "Blue": 0.11862065462331318, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9a493f31-1ff1-412d-b77b-566efdd6fd10", + "Name": "4ffa978a-704f-456e-bdb0-14505e43d604" + }, + "056c00c3-53b2-4ec9-8d4e-24d24da9f177": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -40.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9a493f31-1ff1-412d-b77b-566efdd6fd10", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -40.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "056c00c3-53b2-4ec9-8d4e-24d24da9f177", + "Name": null + }, + "fc7a74b2-0547-43c1-9d8d-5e54ae11424d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.14935809939604164, + "Green": 0.5583261314585461, + "Blue": 0.5460163683379146, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "fc7a74b2-0547-43c1-9d8d-5e54ae11424d", + "Name": "3da90910-7bae-439d-88d7-5a29b6abcd19" + }, + "9517688e-ae7d-497e-821d-99f5800c1a1b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -39.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -39.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "fc7a74b2-0547-43c1-9d8d-5e54ae11424d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -39.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -39.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9517688e-ae7d-497e-821d-99f5800c1a1b", + "Name": null + }, + "e6906102-9fed-4e2f-aa7b-0eca8c305efb": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6633363262113818, + "Green": 0.03856314161725489, + "Blue": 0.4790230200062613, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e6906102-9fed-4e2f-aa7b-0eca8c305efb", + "Name": "854ead50-1242-4079-bb1f-9792f7ef5890" + }, + "aed56aa8-7ce4-4a99-b6e0-2ee6f2260ac0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -38.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e6906102-9fed-4e2f-aa7b-0eca8c305efb", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -38.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "aed56aa8-7ce4-4a99-b6e0-2ee6f2260ac0", + "Name": null + }, + "ab35ab9e-8100-4193-8488-95199c55a824": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.36654658353261027, + "Green": 0.8520072651337866, + "Blue": 0.9229112742109742, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ab35ab9e-8100-4193-8488-95199c55a824", + "Name": "4055f767-338c-43eb-860f-4c0ac280dd46" + }, + "bb971ae8-8924-4c2c-b046-3fc9c5b809da": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -37.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ab35ab9e-8100-4193-8488-95199c55a824", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -37.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bb971ae8-8924-4c2c-b046-3fc9c5b809da", + "Name": null + }, + "daebde06-4fd0-4873-8cb8-b3ca66ef3285": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1553407829046905, + "Green": 0.6986793506418725, + "Blue": 0.11407160484887269, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "daebde06-4fd0-4873-8cb8-b3ca66ef3285", + "Name": "cb8f6a27-90bd-4a59-bc01-5a1df2b7d0cd" + }, + "22100274-f86e-4887-b862-7b203a7db98f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -36.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -36.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "daebde06-4fd0-4873-8cb8-b3ca66ef3285", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -36.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -36.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "22100274-f86e-4887-b862-7b203a7db98f", + "Name": null + }, + "88d444ff-b038-4017-b7b7-0dce82f9708f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7475544757896823, + "Green": 0.8299626907473256, + "Blue": 0.7220270860577128, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "88d444ff-b038-4017-b7b7-0dce82f9708f", + "Name": "b783228c-3662-492b-99be-bd865d0692d7" + }, + "ad2bbd86-6366-4a62-a4e8-e908fe78b2c4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -35.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "88d444ff-b038-4017-b7b7-0dce82f9708f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -35.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ad2bbd86-6366-4a62-a4e8-e908fe78b2c4", + "Name": null + }, + "145a132a-2f51-43f2-9420-e8cd05b095c1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.22654502290605802, + "Green": 0.379243152858337, + "Blue": 0.33889665191010415, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "145a132a-2f51-43f2-9420-e8cd05b095c1", + "Name": "06c21f14-6cab-41cc-9165-08751fda3d50" + }, + "350c9007-b575-42b8-8832-524aaf946b53": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -34.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "145a132a-2f51-43f2-9420-e8cd05b095c1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -34.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "350c9007-b575-42b8-8832-524aaf946b53", + "Name": null + }, + "6cfcbd4d-bd29-4cdf-a304-72dbc7e17ddb": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8491616104027078, + "Green": 0.34217073644612483, + "Blue": 0.5931917338600343, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6cfcbd4d-bd29-4cdf-a304-72dbc7e17ddb", + "Name": "e938d136-969c-455c-bfa4-77726ad504a5" + }, + "1132b8ff-3573-438d-8240-eff3c406bb20": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -33.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -33.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6cfcbd4d-bd29-4cdf-a304-72dbc7e17ddb", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -33.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -33.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1132b8ff-3573-438d-8240-eff3c406bb20", + "Name": null + }, + "f8ab2a5b-9b8b-4dbd-b351-0002ea07c44f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1866454408441882, + "Green": 0.9894302780690744, + "Blue": 0.06710809286083472, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f8ab2a5b-9b8b-4dbd-b351-0002ea07c44f", + "Name": "cdca6984-7321-4755-ad4a-4b472203722d" + }, + "f3974a04-0e0b-4f67-97e2-92bb433ef385": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -32.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f8ab2a5b-9b8b-4dbd-b351-0002ea07c44f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -32.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f3974a04-0e0b-4f67-97e2-92bb433ef385", + "Name": null + }, + "2b96409b-fd3b-4e48-a511-f56b66cc7fac": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6163312683889323, + "Green": 0.18922818414365322, + "Blue": 0.6541906263000288, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2b96409b-fd3b-4e48-a511-f56b66cc7fac", + "Name": "e020aac6-0f39-47ef-80dc-881664974b16" + }, + "65927932-a3d1-4f17-b6b4-8912e0a1d315": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -31.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -31.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2b96409b-fd3b-4e48-a511-f56b66cc7fac", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -31.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -31.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "65927932-a3d1-4f17-b6b4-8912e0a1d315", + "Name": null + }, + "a89ecf43-8c21-4d30-a3f2-9d1434fc0b1d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.35711821790650405, + "Green": 0.5468240052214004, + "Blue": 0.6499628413701257, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a89ecf43-8c21-4d30-a3f2-9d1434fc0b1d", + "Name": "958622a6-3e65-43ec-b4b0-6e5dc28681c8" + }, + "57058731-42d2-43f7-905d-214373b4771a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -30.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a89ecf43-8c21-4d30-a3f2-9d1434fc0b1d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -30.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "57058731-42d2-43f7-905d-214373b4771a", + "Name": null + }, + "971c51b6-9f77-463b-990d-905f4f004b53": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8063892027392933, + "Green": 0.8481937008202978, + "Blue": 0.4049262867332093, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "971c51b6-9f77-463b-990d-905f4f004b53", + "Name": "7bd38e5a-baf0-4d04-bb3c-bc3d075548d8" + }, + "d12bb07a-04fb-419a-8042-8561d10597d9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -29.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 29.333333333333318, + "Y": -29.000000000000004, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "971c51b6-9f77-463b-990d-905f4f004b53", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -29.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 29.333333333333318, + "Y": -29.000000000000004, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d12bb07a-04fb-419a-8042-8561d10597d9", + "Name": null + }, + "bc4edeb3-d32e-4153-a133-1f17f2eb46aa": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8886349228623486, + "Green": 0.1520025940388453, + "Blue": 0.17625044853251914, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "bc4edeb3-d32e-4153-a133-1f17f2eb46aa", + "Name": "ec0979db-ca2e-489e-83ba-a18b9403c8b3" + }, + "e5d63e93-6643-45e9-8e97-7df44a758f5e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 28.66666666666665, + "Y": -28.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "bc4edeb3-d32e-4153-a133-1f17f2eb46aa", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 28.66666666666665, + "Y": -28.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e5d63e93-6643-45e9-8e97-7df44a758f5e", + "Name": null + }, + "92691036-da98-483a-8563-116e2e1ded83": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.22182886219668616, + "Green": 0.3194334336181327, + "Blue": 0.41436620681284286, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "92691036-da98-483a-8563-116e2e1ded83", + "Name": "06ffe01b-46ff-42c2-ba03-c3841a36193f" + }, + "b7d55a3a-0353-4797-b276-8ee7e7b49b77": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -27.0, + "Z": 0.0 + }, + "End": { + "X": 27.999999999999986, + "Y": -27.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "92691036-da98-483a-8563-116e2e1ded83", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -27.0, + "Z": 0.0 + }, + "End": { + "X": 27.999999999999986, + "Y": -27.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b7d55a3a-0353-4797-b276-8ee7e7b49b77", + "Name": null + }, + "0e340513-944a-451e-852f-ddcac60d24e0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.032811261263122435, + "Green": 0.797405154815598, + "Blue": 0.5973641018370931, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0e340513-944a-451e-852f-ddcac60d24e0", + "Name": "8b388c46-d90b-47d4-8e11-9709c8c92d84" + }, + "f019ef88-850e-4f59-a316-8151bb8dcc83": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -26.0, + "Z": 0.0 + }, + "End": { + "X": 27.33333333333332, + "Y": -26.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0e340513-944a-451e-852f-ddcac60d24e0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -26.0, + "Z": 0.0 + }, + "End": { + "X": 27.33333333333332, + "Y": -26.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f019ef88-850e-4f59-a316-8151bb8dcc83", + "Name": null + }, + "33095e5c-f750-413f-8ac5-44ca51ad2d86": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2723089536988684, + "Green": 0.6978947546788933, + "Blue": 0.07077584558668353, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "33095e5c-f750-413f-8ac5-44ca51ad2d86", + "Name": "fb23625c-00c6-413b-be33-fb5b3ee4f1d5" + }, + "431275ce-a236-4cf5-a2b9-eaf94d70f84d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 26.66666666666665, + "Y": -25.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "33095e5c-f750-413f-8ac5-44ca51ad2d86", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 26.66666666666665, + "Y": -25.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "431275ce-a236-4cf5-a2b9-eaf94d70f84d", + "Name": null + }, + "1380b979-ea90-4690-b739-98cfc7f82536": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2687847168505121, + "Green": 0.38626630342857277, + "Blue": 0.32567532236020796, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1380b979-ea90-4690-b739-98cfc7f82536", + "Name": "d1006620-0ca7-45cf-8f43-40e320c2b0eb" + }, + "67eeccac-1fc2-4018-b599-6c3b1bb89c23": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -24.0, + "Z": 0.0 + }, + "End": { + "X": 25.999999999999986, + "Y": -24.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1380b979-ea90-4690-b739-98cfc7f82536", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -24.0, + "Z": 0.0 + }, + "End": { + "X": 25.999999999999986, + "Y": -24.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "67eeccac-1fc2-4018-b599-6c3b1bb89c23", + "Name": null + }, + "de00664a-26bc-4f35-b0c6-1b27a183144d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5026569918276076, + "Green": 0.020173009028738833, + "Blue": 0.9929927522283944, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "de00664a-26bc-4f35-b0c6-1b27a183144d", + "Name": "22517a79-6832-4591-b173-5b05a0f46964" + }, + "8c1c2ec8-5b44-4e3b-b727-557f426e6fe5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -23.0, + "Z": 0.0 + }, + "End": { + "X": 25.33333333333332, + "Y": -23.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "de00664a-26bc-4f35-b0c6-1b27a183144d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -23.0, + "Z": 0.0 + }, + "End": { + "X": 25.33333333333332, + "Y": -23.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8c1c2ec8-5b44-4e3b-b727-557f426e6fe5", + "Name": null + }, + "afe0ecb2-2660-46f4-b2b4-b771f46ef137": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8591945296429072, + "Green": 0.09297956903138178, + "Blue": 0.49065110156808567, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "afe0ecb2-2660-46f4-b2b4-b771f46ef137", + "Name": "1ec9ce16-4440-462d-9c3d-99ae50ca8863" + }, + "7908c0ce-6323-4544-9792-c2a4114065a0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 24.66666666666665, + "Y": -22.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "afe0ecb2-2660-46f4-b2b4-b771f46ef137", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 24.66666666666665, + "Y": -22.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7908c0ce-6323-4544-9792-c2a4114065a0", + "Name": null + }, + "6d6b91ac-8938-4ac9-88da-57b8e6b01b27": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5254289207632789, + "Green": 0.9627126585518535, + "Blue": 0.5688958533894717, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6d6b91ac-8938-4ac9-88da-57b8e6b01b27", + "Name": "96db76c0-b6b1-4f1d-b62d-ef23764ad6d7" + }, + "dbecafea-c585-44df-a9bf-3c8c1f1506e4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -21.0, + "Z": 0.0 + }, + "End": { + "X": 23.999999999999986, + "Y": -21.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6d6b91ac-8938-4ac9-88da-57b8e6b01b27", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -21.0, + "Z": 0.0 + }, + "End": { + "X": 23.999999999999986, + "Y": -21.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dbecafea-c585-44df-a9bf-3c8c1f1506e4", + "Name": null + }, + "70ea38c7-9eda-43f2-9594-3a46e77d67bf": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4789082754770798, + "Green": 0.047005057822449625, + "Blue": 0.8493349574736017, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "70ea38c7-9eda-43f2-9594-3a46e77d67bf", + "Name": "4a7ea393-5650-4dde-aa94-a25472bb81eb" + }, + "5018d157-88f6-4c9c-9440-2aacc2425fa2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 23.33333333333332, + "Y": -20.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "70ea38c7-9eda-43f2-9594-3a46e77d67bf", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 23.33333333333332, + "Y": -20.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5018d157-88f6-4c9c-9440-2aacc2425fa2", + "Name": null + }, + "4d6b1665-e46d-46f4-893f-cd1060160a57": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8248323937062325, + "Green": 0.00942836562610621, + "Blue": 0.3051832599123862, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4d6b1665-e46d-46f4-893f-cd1060160a57", + "Name": "2b9b71cf-a244-494f-9454-ff0293a97563" + }, + "87c7925a-04f6-40d1-9e3c-9bfdf1ebf280": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 22.66666666666665, + "Y": -19.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4d6b1665-e46d-46f4-893f-cd1060160a57", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 22.66666666666665, + "Y": -19.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "87c7925a-04f6-40d1-9e3c-9bfdf1ebf280", + "Name": null + }, + "ca4283c7-6b1b-4463-85b6-2ca28bc9e175": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2729484328408485, + "Green": 0.3489515801653972, + "Blue": 0.8504856498215746, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ca4283c7-6b1b-4463-85b6-2ca28bc9e175", + "Name": "96ec1f02-bb5a-419e-9582-e144ef59be63" + }, + "c6a69b54-9c45-44f6-be39-cedc23c4a908": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -18.0, + "Z": 0.0 + }, + "End": { + "X": 21.999999999999986, + "Y": -18.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ca4283c7-6b1b-4463-85b6-2ca28bc9e175", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -18.0, + "Z": 0.0 + }, + "End": { + "X": 21.999999999999986, + "Y": -18.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c6a69b54-9c45-44f6-be39-cedc23c4a908", + "Name": null + }, + "07867ac8-ff61-4e55-a7d1-e3ba791bb908": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7091453181156634, + "Green": 0.8589195529273337, + "Blue": 0.6779600967084803, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "07867ac8-ff61-4e55-a7d1-e3ba791bb908", + "Name": "9373e904-3e5a-4d43-a1d1-48daf9399036" + }, + "47b3b010-ec6c-47ec-b648-c92f41226e96": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -17.0, + "Z": 0.0 + }, + "End": { + "X": 21.333333333333318, + "Y": -17.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "07867ac8-ff61-4e55-a7d1-e3ba791bb908", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -17.0, + "Z": 0.0 + }, + "End": { + "X": 21.333333333333318, + "Y": -17.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "47b3b010-ec6c-47ec-b648-c92f41226e96", + "Name": null + }, + "d6dacac0-3106-4d82-beba-1b5c57303448": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5457766375251937, + "Green": 0.0047161607093718656, + "Blue": 0.0598097192402043, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d6dacac0-3106-4d82-beba-1b5c57303448", + "Name": "b61672d4-8e61-47d5-bc22-672bae403515" + }, + "210b7e79-60b8-4ff8-a1b0-ff8dbfe9035f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 20.66666666666665, + "Y": -16.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d6dacac0-3106-4d82-beba-1b5c57303448", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 20.66666666666665, + "Y": -16.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "210b7e79-60b8-4ff8-a1b0-ff8dbfe9035f", + "Name": null + }, + "9167572b-9d78-4a3e-8515-dd5af3c3b2d2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9245304450972613, + "Green": 0.8163503491395854, + "Blue": 0.5447655816305268, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9167572b-9d78-4a3e-8515-dd5af3c3b2d2", + "Name": "ebdb9c57-7374-40bb-a12b-11717523c5af" + }, + "3a861718-d2a2-4b53-b14b-a3887f80ee5d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 19.999999999999986, + "Y": -15.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9167572b-9d78-4a3e-8515-dd5af3c3b2d2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 19.999999999999986, + "Y": -15.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3a861718-d2a2-4b53-b14b-a3887f80ee5d", + "Name": null + }, + "739142be-8b07-44ac-a239-a995eab87cb8": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9958276320229413, + "Green": 0.9143364871453198, + "Blue": 0.29153552339018113, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "739142be-8b07-44ac-a239-a995eab87cb8", + "Name": "b7b63860-b903-40bd-bd77-8226f1a7bf95" + }, + "d36fb6cc-21f1-4b01-ad1d-559ff7fecf90": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -14.0, + "Z": 0.0 + }, + "End": { + "X": 19.333333333333318, + "Y": -14.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "739142be-8b07-44ac-a239-a995eab87cb8", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -14.0, + "Z": 0.0 + }, + "End": { + "X": 19.333333333333318, + "Y": -14.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d36fb6cc-21f1-4b01-ad1d-559ff7fecf90", + "Name": null + }, + "b0455c9d-3133-419c-a0d0-59fabe9004b0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9963322472741512, + "Green": 0.3475465515384202, + "Blue": 0.8029618807150805, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b0455c9d-3133-419c-a0d0-59fabe9004b0", + "Name": "d84a7df3-37a8-4696-b3a3-542c1aae806f" + }, + "9a502a09-a39b-421c-8688-f51bf5d82c19": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 18.666666666666654, + "Y": -13.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b0455c9d-3133-419c-a0d0-59fabe9004b0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 18.666666666666654, + "Y": -13.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9a502a09-a39b-421c-8688-f51bf5d82c19", + "Name": null + }, + "0cd2f606-71f6-4e12-8c6c-f0cfe9fa7054": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.32851530393982087, + "Green": 0.8544612260788964, + "Blue": 0.5266509961926615, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0cd2f606-71f6-4e12-8c6c-f0cfe9fa7054", + "Name": "17eee549-7d94-4cd8-9905-efcb11ea6509" + }, + "4a586f18-c72b-411d-b2c5-e06adcd0a24c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -12.0, + "Z": 0.0 + }, + "End": { + "X": 17.999999999999986, + "Y": -12.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0cd2f606-71f6-4e12-8c6c-f0cfe9fa7054", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -12.0, + "Z": 0.0 + }, + "End": { + "X": 17.999999999999986, + "Y": -12.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4a586f18-c72b-411d-b2c5-e06adcd0a24c", + "Name": null + }, + "c96f3bff-f0e4-46e7-8ec5-e3d7f7f5b58b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6569700891417312, + "Green": 0.947194673096386, + "Blue": 0.755214131788916, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c96f3bff-f0e4-46e7-8ec5-e3d7f7f5b58b", + "Name": "9b14a531-621c-4309-9f73-8509450479d3" + }, + "42842dee-7da9-4b4a-a13a-6fde648376c7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -11.0, + "Z": 0.0 + }, + "End": { + "X": 17.333333333333318, + "Y": -11.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c96f3bff-f0e4-46e7-8ec5-e3d7f7f5b58b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -11.0, + "Z": 0.0 + }, + "End": { + "X": 17.333333333333318, + "Y": -11.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42842dee-7da9-4b4a-a13a-6fde648376c7", + "Name": null + }, + "431845e6-0cf4-458a-a2e5-c21a2e51ff0e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9142751851651236, + "Green": 0.3632060020990698, + "Blue": 0.18928993548699186, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "431845e6-0cf4-458a-a2e5-c21a2e51ff0e", + "Name": "1dd3c2ff-e511-487d-b28c-80a2ae19f407" + }, + "997d40fb-59b5-4c48-b406-4b11d4321fda": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.666666666666654, + "Y": -10.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "431845e6-0cf4-458a-a2e5-c21a2e51ff0e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.666666666666654, + "Y": -10.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "997d40fb-59b5-4c48-b406-4b11d4321fda", + "Name": null + }, + "4a06bd48-39c1-4a52-be5e-56dbe8d9d6ca": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6073545951430475, + "Green": 0.7429205867196064, + "Blue": 0.2724283757956831, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4a06bd48-39c1-4a52-be5e-56dbe8d9d6ca", + "Name": "df21974e-dc53-400e-b91b-ee3f417ee5b4" + }, + "59bf0a65-c0c3-4d0c-9c75-a87d802da88c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -9.0, + "Z": 0.0 + }, + "End": { + "X": 15.999999999999988, + "Y": -9.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4a06bd48-39c1-4a52-be5e-56dbe8d9d6ca", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -9.0, + "Z": 0.0 + }, + "End": { + "X": 15.999999999999988, + "Y": -9.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "59bf0a65-c0c3-4d0c-9c75-a87d802da88c", + "Name": null + }, + "58af0d17-76be-4c82-aed3-6a7d6f500f89": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5650312493392412, + "Green": 0.20797886755688993, + "Blue": 0.7879767891894918, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "58af0d17-76be-4c82-aed3-6a7d6f500f89", + "Name": "9973c52d-2f95-4c3a-a5ba-3248845bc54d" + }, + "81efc71c-edfa-4aea-b1ae-986854505e59": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -8.0, + "Z": 0.0 + }, + "End": { + "X": 15.33333333333332, + "Y": -8.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "58af0d17-76be-4c82-aed3-6a7d6f500f89", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -8.0, + "Z": 0.0 + }, + "End": { + "X": 15.33333333333332, + "Y": -8.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "81efc71c-edfa-4aea-b1ae-986854505e59", + "Name": null + }, + "c99abc11-14fd-4412-b291-65467353184b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2921808419247069, + "Green": 0.9993605208580199, + "Blue": 0.3489431745134961, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c99abc11-14fd-4412-b291-65467353184b", + "Name": "ba362f1d-6924-429b-aa20-02dbadb3f8d3" + }, + "f98036df-bba0-4e05-86c4-8cba815bf22f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 14.666666666666652, + "Y": -7.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c99abc11-14fd-4412-b291-65467353184b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 14.666666666666652, + "Y": -7.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f98036df-bba0-4e05-86c4-8cba815bf22f", + "Name": null + }, + "53ebcdb5-becf-4109-b587-2dc95b52b6fd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2202901957651089, + "Green": 0.5596393987348487, + "Blue": 0.5273467505012391, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "53ebcdb5-becf-4109-b587-2dc95b52b6fd", + "Name": "df5f78e7-301c-4fbf-ae68-192a54b98571" + }, + "cabff896-a3cc-4175-992a-ba1e9b0706d9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -6.0, + "Z": 0.0 + }, + "End": { + "X": 13.999999999999986, + "Y": -6.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "53ebcdb5-becf-4109-b587-2dc95b52b6fd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -6.0, + "Z": 0.0 + }, + "End": { + "X": 13.999999999999986, + "Y": -6.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cabff896-a3cc-4175-992a-ba1e9b0706d9", + "Name": null + }, + "72e0d1c6-bd45-4c9d-a869-3a587b71d014": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6477152256517277, + "Green": 0.9568803543024139, + "Blue": 0.015456848319366969, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "72e0d1c6-bd45-4c9d-a869-3a587b71d014", + "Name": "fb4ea495-82e7-4f8c-b9f8-0026a6cdce33" + }, + "9455dad4-dc28-4f0e-a330-df77f6e7939d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 13.33333333333332, + "Y": -5.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "72e0d1c6-bd45-4c9d-a869-3a587b71d014", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 13.33333333333332, + "Y": -5.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9455dad4-dc28-4f0e-a330-df77f6e7939d", + "Name": null + }, + "0268cf3a-749a-4d60-9f18-d60abcecd135": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9331830329881902, + "Green": 0.9346640845456459, + "Blue": 0.27662921989179645, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0268cf3a-749a-4d60-9f18-d60abcecd135", + "Name": "1158bd6d-1a85-4fdb-a888-f54e1898cb7b" + }, + "75b8570d-8c1c-49dc-8dfe-4395515e63df": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 12.666666666666652, + "Y": -4.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0268cf3a-749a-4d60-9f18-d60abcecd135", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 12.666666666666652, + "Y": -4.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "75b8570d-8c1c-49dc-8dfe-4395515e63df", + "Name": null + }, + "06ee2c9e-f174-4867-8809-e68b9d66cd6c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9458855199375588, + "Green": 0.5296012887403375, + "Blue": 0.04837617140653365, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "06ee2c9e-f174-4867-8809-e68b9d66cd6c", + "Name": "f807b2a9-5192-4951-8b02-c9bcef67b6f4" + }, + "a43d39a4-4613-48ad-abfa-a5b40ce48090": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -3.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999986, + "Y": -3.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "06ee2c9e-f174-4867-8809-e68b9d66cd6c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -3.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999986, + "Y": -3.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a43d39a4-4613-48ad-abfa-a5b40ce48090", + "Name": null + }, + "e45b7e4c-4940-4eda-a148-27bc694dd710": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.27736032999929056, + "Green": 0.4825760282029286, + "Blue": 0.6994585062840295, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e45b7e4c-4940-4eda-a148-27bc694dd710", + "Name": "bf11894c-7879-4d9a-949a-cedbec3ddfc5" + }, + "be79e411-70bb-4bdc-9381-f616c34616e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 11.33333333333332, + "Y": -2.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e45b7e4c-4940-4eda-a148-27bc694dd710", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 11.33333333333332, + "Y": -2.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "be79e411-70bb-4bdc-9381-f616c34616e8", + "Name": null + }, + "e75e77ba-7225-46f3-b47d-44378c149492": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.046373076758521176, + "Green": 0.49631708976641165, + "Blue": 0.15496713954720978, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e75e77ba-7225-46f3-b47d-44378c149492", + "Name": "99d7a7b2-c2e7-4ff3-8498-7f94647f3643" + }, + "cd4080dc-4840-4c3d-83a7-eec05f9a921d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 10.666666666666652, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e75e77ba-7225-46f3-b47d-44378c149492", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 10.666666666666652, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cd4080dc-4840-4c3d-83a7-eec05f9a921d", + "Name": null + }, + "87654b68-576e-401a-99f0-d780d7a15c60": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7785322637197246, + "Green": 0.6159783436991173, + "Blue": 0.40175690706901107, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "87654b68-576e-401a-99f0-d780d7a15c60", + "Name": "42c20bb0-fb64-4385-98fd-c120698c1733" + }, + "c6502787-f3e9-48b2-8742-cc888b559bd8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.3749999999999895, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.3749999999999895, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "87654b68-576e-401a-99f0-d780d7a15c60", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.3749999999999895, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.3749999999999895, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c6502787-f3e9-48b2-8742-cc888b559bd8", + "Name": null + }, + "a571ee12-9969-4f79-832e-347b8531b7a6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.09527151803265863, + "Green": 0.7948701329505398, + "Blue": 0.4957135508282639, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a571ee12-9969-4f79-832e-347b8531b7a6", + "Name": "b4c40dee-f7bd-411d-bce3-ee518887730e" + }, + "eb77c9f2-3025-4a26-9e5a-44b30640d2eb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.7499999999999897, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.7499999999999897, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a571ee12-9969-4f79-832e-347b8531b7a6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.7499999999999897, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.7499999999999897, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "eb77c9f2-3025-4a26-9e5a-44b30640d2eb", + "Name": null + }, + "1f9d5724-1896-4a57-9875-0f26072a7fbe": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.48867016122148843, + "Green": 0.9384220423821462, + "Blue": 0.2617955739897655, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1f9d5724-1896-4a57-9875-0f26072a7fbe", + "Name": "3faa5502-4973-451e-9f44-bd76bdab9d0f" + }, + "e3213149-d18c-48f7-8fa0-5e44f2c1bfd3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.12499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.12499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1f9d5724-1896-4a57-9875-0f26072a7fbe", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.12499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.12499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e3213149-d18c-48f7-8fa0-5e44f2c1bfd3", + "Name": null + }, + "3eda7eed-22cd-4bb0-9110-e6e434602937": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7873813434445213, + "Green": 0.35949919575802014, + "Blue": 0.6083714815826954, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "3eda7eed-22cd-4bb0-9110-e6e434602937", + "Name": "def2ff78-c7d5-4085-90bc-28e4f2cf8d07" + }, + "1e6142c9-4bc0-4dbd-9550-5d3faa59aa7d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.49999999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.49999999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3eda7eed-22cd-4bb0-9110-e6e434602937", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.49999999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.49999999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1e6142c9-4bc0-4dbd-9550-5d3faa59aa7d", + "Name": null + }, + "c3389c7d-bf0b-48e7-b422-2a1a3afdca22": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.756788792441035, + "Green": 0.7036467900982345, + "Blue": 0.9149759662872999, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c3389c7d-bf0b-48e7-b422-2a1a3afdca22", + "Name": "e06c2c49-785d-4451-ac4f-7e3effaeba8c" + }, + "faa4de2c-ba4e-469f-8449-518b29acc4c0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.87499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.87499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c3389c7d-bf0b-48e7-b422-2a1a3afdca22", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.87499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.87499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "faa4de2c-ba4e-469f-8449-518b29acc4c0", + "Name": null + }, + "5fb89498-64a8-43e5-9247-35d708ceaab6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9425923488766851, + "Green": 0.7760420515090423, + "Blue": 0.7879071528035715, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "5fb89498-64a8-43e5-9247-35d708ceaab6", + "Name": "d0b5b99e-f82e-4868-b809-d2212f766ad6" + }, + "880bd249-918c-40f8-aa7a-5d8de97570f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.2499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.2499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "5fb89498-64a8-43e5-9247-35d708ceaab6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.2499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.2499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "880bd249-918c-40f8-aa7a-5d8de97570f0", + "Name": null + }, + "60c645a8-87c6-4ba4-8b80-1e38a7b0efe7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2756151302138414, + "Green": 0.6808000782880932, + "Blue": 0.8975808717764825, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "60c645a8-87c6-4ba4-8b80-1e38a7b0efe7", + "Name": "75aa10a0-02b9-4e0c-9ce0-d81d1dd82ba6" + }, + "76c09ccc-045b-40a3-a11c-c6af00220080": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.6249999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.6249999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "60c645a8-87c6-4ba4-8b80-1e38a7b0efe7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.6249999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.6249999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "76c09ccc-045b-40a3-a11c-c6af00220080", + "Name": null + }, + "e39af83f-9a76-49e7-b929-55ded469c8d7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5111941478732946, + "Green": 0.723787056153541, + "Blue": 0.012530588550740195, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e39af83f-9a76-49e7-b929-55ded469c8d7", + "Name": "a221eba3-8105-40ab-b24a-046c14ec3892" + }, + "2d245aa6-3656-4767-910b-e6f5d953c0c3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.9999999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.9999999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e39af83f-9a76-49e7-b929-55ded469c8d7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.9999999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.9999999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2d245aa6-3656-4767-910b-e6f5d953c0c3", + "Name": null + }, + "2043ccca-defe-4c81-a62b-c48c14d4be34": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.47858491189711955, + "Green": 0.9683896652275649, + "Blue": 0.8336047133587323, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2043ccca-defe-4c81-a62b-c48c14d4be34", + "Name": "62b50e78-ff55-41ee-bc49-d7a445183b50" + }, + "38387b62-b231-4326-8ae6-65e4127118a4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.3749999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.3749999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2043ccca-defe-4c81-a62b-c48c14d4be34", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.3749999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.3749999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "38387b62-b231-4326-8ae6-65e4127118a4", + "Name": null + }, + "c71d8ebd-bd68-46a8-a9c0-240b006a0117": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.14091376408045822, + "Green": 0.3299942651437569, + "Blue": 0.2603445585166777, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c71d8ebd-bd68-46a8-a9c0-240b006a0117", + "Name": "81626520-7e4b-49bb-9ada-beb9872bccfc" + }, + "e1f7244b-dc79-4111-927a-d231c91c53b4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.7499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.7499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c71d8ebd-bd68-46a8-a9c0-240b006a0117", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.7499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.7499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e1f7244b-dc79-4111-927a-d231c91c53b4", + "Name": null + }, + "8af2e579-ea2f-4760-bcfe-c4a0d67f5962": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5729698695116536, + "Green": 0.51865817258072, + "Blue": 0.7116617777904783, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8af2e579-ea2f-4760-bcfe-c4a0d67f5962", + "Name": "5a4a0b8b-b86b-41ce-9ff1-9df34b6798db" + }, + "f196b90b-458e-450e-9bb4-c51e123d9092": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.124999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.124999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8af2e579-ea2f-4760-bcfe-c4a0d67f5962", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.124999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.124999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f196b90b-458e-450e-9bb4-c51e123d9092", + "Name": null + }, + "57055c8e-62e6-440d-991e-790364cb15a1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.633009649642282, + "Green": 0.5136485782049822, + "Blue": 0.3833821771589025, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "57055c8e-62e6-440d-991e-790364cb15a1", + "Name": "a38ccc7f-8c63-47e7-b688-30307d3d2ee0" + }, + "f2a648c9-9440-4354-9615-4f737fc77104": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "57055c8e-62e6-440d-991e-790364cb15a1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f2a648c9-9440-4354-9615-4f737fc77104", + "Name": null + }, + "1520af39-6173-48dc-8e2c-fe5ee269dc35": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.947186267444485, + "Green": 0.12501867773245026, + "Blue": 0.7647692657843089, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1520af39-6173-48dc-8e2c-fe5ee269dc35", + "Name": "b764fa7e-ac32-4afe-a8e6-2c995770566c" + }, + "3d1e51c9-6f58-4cbd-a52f-0bf214568c4a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.874999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.874999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1520af39-6173-48dc-8e2c-fe5ee269dc35", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.874999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.874999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3d1e51c9-6f58-4cbd-a52f-0bf214568c4a", + "Name": null + }, + "ecb315ab-445e-4d1f-bad1-3ab69e0b9eb4": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.031633199672975204, + "Green": 0.15904506443023916, + "Blue": 0.018458311920267676, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ecb315ab-445e-4d1f-bad1-3ab69e0b9eb4", + "Name": "81595673-badb-4e6e-b762-fbe283940ef9" + }, + "bd333cd8-66bb-4d92-aa54-231a748c8fb7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.249999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.249999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ecb315ab-445e-4d1f-bad1-3ab69e0b9eb4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.249999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.249999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bd333cd8-66bb-4d92-aa54-231a748c8fb7", + "Name": null + }, + "80515097-fc80-47f6-8851-266f1cdb4a95": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7536612743296014, + "Green": 0.14580168954366896, + "Blue": 0.5751648887876257, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "80515097-fc80-47f6-8851-266f1cdb4a95", + "Name": "3a96bc49-cff0-4278-9b45-71d1bd55723b" + }, + "d6dc068d-4d2b-49e6-a478-e88390b1fbd4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.624999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.624999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "80515097-fc80-47f6-8851-266f1cdb4a95", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.624999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.624999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d6dc068d-4d2b-49e6-a478-e88390b1fbd4", + "Name": null + }, + "6cc0f3f4-3e16-44d8-800b-546f78a60e69": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6682577383091011, + "Green": 0.18909672749652376, + "Blue": 0.825954498642103, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6cc0f3f4-3e16-44d8-800b-546f78a60e69", + "Name": "a278ed2f-0fbd-4ef6-a98c-7cbf9a83b451" + }, + "c308c90d-a29a-414d-a8bb-252d9d7ec8ca": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.999999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.999999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6cc0f3f4-3e16-44d8-800b-546f78a60e69", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.999999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.999999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c308c90d-a29a-414d-a8bb-252d9d7ec8ca", + "Name": null + }, + "4452a299-6051-4b2b-8639-00ad060cb206": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.13340020511923367, + "Green": 0.3347679811226055, + "Blue": 0.7065339766938863, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4452a299-6051-4b2b-8639-00ad060cb206", + "Name": "8ebac075-0e29-4733-9249-3e9577923a56" + }, + "3be27845-de4c-425c-bc34-06db244a217b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.374999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.374999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4452a299-6051-4b2b-8639-00ad060cb206", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.374999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.374999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3be27845-de4c-425c-bc34-06db244a217b", + "Name": null + }, + "96c4ca62-159d-4153-9473-bab8633df548": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9115513534804579, + "Green": 0.7707579465446798, + "Blue": 0.8155170114783183, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "96c4ca62-159d-4153-9473-bab8633df548", + "Name": "cad1a4df-23a9-4b4f-a479-d13322bc80a2" + }, + "6e7d3a6f-52cd-4baf-bc61-c937cfbb9cee": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.749999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.749999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "96c4ca62-159d-4153-9473-bab8633df548", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.749999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.749999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6e7d3a6f-52cd-4baf-bc61-c937cfbb9cee", + "Name": null + }, + "2f58ff7f-3855-4581-8cbe-82fff3f0cb0e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2573862677707273, + "Green": 0.26733811584643, + "Blue": 0.8921912875455763, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2f58ff7f-3855-4581-8cbe-82fff3f0cb0e", + "Name": "cebc75a7-6b29-4196-ad85-578d6b7a7105" + }, + "528c931a-334c-424d-bf07-caf1c1ebcd88": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.124999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.124999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2f58ff7f-3855-4581-8cbe-82fff3f0cb0e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.124999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.124999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "528c931a-334c-424d-bf07-caf1c1ebcd88", + "Name": null + }, + "0a5183db-17da-4e06-9b55-b7863fa8d5be": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3892263185182709, + "Green": 0.616686606135539, + "Blue": 0.8264804677229749, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0a5183db-17da-4e06-9b55-b7863fa8d5be", + "Name": "5b76d706-67a7-47c5-9860-1048746bbb16" + }, + "6d5faea2-73c1-449a-9c56-c6926f4882b6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0a5183db-17da-4e06-9b55-b7863fa8d5be", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6d5faea2-73c1-449a-9c56-c6926f4882b6", + "Name": null + }, + "a3750d05-d607-4d21-8e4b-cb60e9a85fc7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6621088374695316, + "Green": 0.34775639714103024, + "Blue": 0.6084277772383894, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a3750d05-d607-4d21-8e4b-cb60e9a85fc7", + "Name": "7f05f04c-0efe-4ed2-83ea-fffe567987bd" + }, + "e0b50b6e-69ab-4dae-8d71-e52de8dc130a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.874999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.874999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a3750d05-d607-4d21-8e4b-cb60e9a85fc7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.874999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.874999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e0b50b6e-69ab-4dae-8d71-e52de8dc130a", + "Name": null + }, + "fbb3ba70-c82c-48fc-a847-29e47735d312": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.001451015473087791, + "Green": 0.21441147393286764, + "Blue": 0.8408410231773001, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "fbb3ba70-c82c-48fc-a847-29e47735d312", + "Name": "2b96aa89-81f4-43bb-8d1c-8a724b3b26fd" + }, + "11f06034-aa6c-4e96-8bd9-c89ee0204db7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.249999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "fbb3ba70-c82c-48fc-a847-29e47735d312", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.249999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "11f06034-aa6c-4e96-8bd9-c89ee0204db7", + "Name": null + }, + "42af8713-ef19-459c-9642-65a9904edb95": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.896709703792217, + "Green": 0.12377914279875306, + "Blue": 0.1899982118932522, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "42af8713-ef19-459c-9642-65a9904edb95", + "Name": "49f9c8f5-82e6-4344-ba8c-6102fbc676cb" + }, + "7589e644-75a7-4ce2-adf0-ef7b58354425": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.624999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.624999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "42af8713-ef19-459c-9642-65a9904edb95", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.624999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.624999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7589e644-75a7-4ce2-adf0-ef7b58354425", + "Name": null + }, + "45ea4ef7-30ff-4502-93c4-2d60aca43740": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5315937891283975, + "Green": 0.9954060814322001, + "Blue": 0.651023373776592, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "45ea4ef7-30ff-4502-93c4-2d60aca43740", + "Name": "9401e664-8359-448f-b55e-0b1f0f26eb13" + }, + "8d67e19a-ef51-40b5-9ed8-3b23071e0754": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.999999999999995, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "45ea4ef7-30ff-4502-93c4-2d60aca43740", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.999999999999995, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8d67e19a-ef51-40b5-9ed8-3b23071e0754", + "Name": null + }, + "9f894599-b05f-45b7-9107-6f851355ade2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.023137887019262598, + "Green": 0.2439819305408662, + "Blue": 0.521755013857854, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9f894599-b05f-45b7-9107-6f851355ade2", + "Name": "5d3f2c92-8f0d-456d-b1ad-bab4005f06a1" + }, + "a7af29c8-93b7-4c33-8c23-730fd8805ab9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.374999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.374999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9f894599-b05f-45b7-9107-6f851355ade2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.374999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.374999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a7af29c8-93b7-4c33-8c23-730fd8805ab9", + "Name": null + }, + "ae14042c-0696-4031-94ec-70b12cfdb00a": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8791225598562148, + "Green": 0.7575328735436931, + "Blue": 0.577985366609872, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ae14042c-0696-4031-94ec-70b12cfdb00a", + "Name": "20c2f18b-5e31-49e6-bcd5-d41066411c3e" + }, + "cb5b9af2-f5ac-47df-b86a-409ea72c5d60": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.749999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.749999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ae14042c-0696-4031-94ec-70b12cfdb00a", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.749999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.749999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cb5b9af2-f5ac-47df-b86a-409ea72c5d60", + "Name": null + }, + "cb48ea37-61f5-49b3-bb5b-24fc73d9f513": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4373656997631144, + "Green": 0.8103271735880185, + "Blue": 0.779292937731041, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "cb48ea37-61f5-49b3-bb5b-24fc73d9f513", + "Name": "b7883e6e-a796-4f9b-8ba2-6c853050fe33" + }, + "3030f0f6-5a45-4407-9a01-07a0e9498e42": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.124999999999993, + "Y": -0.1875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "cb48ea37-61f5-49b3-bb5b-24fc73d9f513", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.124999999999993, + "Y": -0.1875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3030f0f6-5a45-4407-9a01-07a0e9498e42", + "Name": null + }, + "21cec7a0-d53b-41e3-867e-2d0c483cfcdf": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.007650214716629225, + "Green": 0.007513558961224537, + "Blue": 0.9952262840211514, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "21cec7a0-d53b-41e3-867e-2d0c483cfcdf", + "Name": "a3f02fa3-138e-4cd1-838f-ce5aabd9c4bd" + }, + "636f517c-1005-46b9-bd4c-47c7f411bf77": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.499999999999995, + "Y": -0.7500000000000142, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "21cec7a0-d53b-41e3-867e-2d0c483cfcdf", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.499999999999995, + "Y": -0.7500000000000142, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "636f517c-1005-46b9-bd4c-47c7f411bf77", + "Name": null + }, + "807ab9c3-0a11-43ae-b929-e6887979bfa3": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5538105818227914, + "Green": 0.6614185160311956, + "Blue": 0.7479002260360402, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "807ab9c3-0a11-43ae-b929-e6887979bfa3", + "Name": "e7cfc30b-1c8b-4a2f-927c-65de3a2ac5e4" + }, + "ea8b8b10-1213-4983-a19b-69bebaf402e7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.874999999999995, + "Y": -1.312500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "807ab9c3-0a11-43ae-b929-e6887979bfa3", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.874999999999995, + "Y": -1.312500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ea8b8b10-1213-4983-a19b-69bebaf402e7", + "Name": null + }, + "1e400e61-5f50-4cff-910d-e7aab9b32a91": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.89614476631216, + "Green": 0.3756233818715547, + "Blue": 0.24631046235855225, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1e400e61-5f50-4cff-910d-e7aab9b32a91", + "Name": "40a665fb-2a00-4450-a47b-424160b4e58f" + }, + "4a146f05-e355-49e5-8504-3c9432f384e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.249999999999993, + "Y": -1.875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1e400e61-5f50-4cff-910d-e7aab9b32a91", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.249999999999993, + "Y": -1.875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4a146f05-e355-49e5-8504-3c9432f384e8", + "Name": null + }, + "19be73f9-a03d-4b22-b75a-98935d086695": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.49119088961332613, + "Green": 0.5579599489262141, + "Blue": 0.5083320715969112, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "19be73f9-a03d-4b22-b75a-98935d086695", + "Name": "49c380a2-d709-43b5-9dae-9d265aed51d9" + }, + "a2f1e7ed-b8c1-47cd-83dd-e60dc0818bc2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.624999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.624999999999995, + "Y": -2.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "19be73f9-a03d-4b22-b75a-98935d086695", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.624999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.624999999999995, + "Y": -2.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a2f1e7ed-b8c1-47cd-83dd-e60dc0818bc2", + "Name": null + }, + "85429e92-7c32-46a5-a911-cc275ba4105d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9382887980613339, + "Green": 0.3695243622034436, + "Blue": 0.8112886672892089, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "85429e92-7c32-46a5-a911-cc275ba4105d", + "Name": "c83f997e-244a-4000-b047-434ba7caf0d7" + }, + "bdd0f0e8-7300-48b0-913f-8776c3d2231f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999995, + "Y": -3.000000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "85429e92-7c32-46a5-a911-cc275ba4105d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999995, + "Y": -3.000000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bdd0f0e8-7300-48b0-913f-8776c3d2231f", + "Name": null + }, + "2704992d-ce4b-41d9-b031-1e678198ab86": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4100305346818783, + "Green": 0.7522102588565136, + "Blue": 0.9313902156108014, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2704992d-ce4b-41d9-b031-1e678198ab86", + "Name": "e98e6ee7-2ed1-4a69-90e1-cd015ed8328c" + }, + "045c499f-ec79-41d1-ac1e-ddfb32d9f7fb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.374999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.374999999999995, + "Y": -3.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2704992d-ce4b-41d9-b031-1e678198ab86", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.374999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.374999999999995, + "Y": -3.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "045c499f-ec79-41d1-ac1e-ddfb32d9f7fb", + "Name": null + }, + "559100ba-db6b-40e0-bbad-57905da942f9": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7343238656103257, + "Green": 0.771548034516884, + "Blue": 0.06531758469777069, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "559100ba-db6b-40e0-bbad-57905da942f9", + "Name": "311b9158-d32f-4a52-94df-7c1e4d540fb6" + }, + "42dcefb8-17f0-42f4-938a-a243ae74a51f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.749999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.749999999999995, + "Y": -4.125000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "559100ba-db6b-40e0-bbad-57905da942f9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.749999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.749999999999995, + "Y": -4.125000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42dcefb8-17f0-42f4-938a-a243ae74a51f", + "Name": null + }, + "7c0f85b4-4931-4568-8419-f0c122d679e2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6359562867488509, + "Green": 0.6018064159908362, + "Blue": 0.3393618996904054, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "7c0f85b4-4931-4568-8419-f0c122d679e2", + "Name": "aca0ed1b-05b9-4fca-b84d-1ffd0515da6d" + }, + "de733d84-a479-4217-9a99-274d0a3c3648": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.124999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.124999999999995, + "Y": -4.687500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7c0f85b4-4931-4568-8419-f0c122d679e2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.124999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.124999999999995, + "Y": -4.687500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "de733d84-a479-4217-9a99-274d0a3c3648", + "Name": null + }, + "265cff73-df79-4154-b767-c3f49df1bab4": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0555106029172943, + "Green": 0.8884134664611953, + "Blue": 0.5267760160038136, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "265cff73-df79-4154-b767-c3f49df1bab4", + "Name": "bdd0d164-5940-4db0-9b34-1a74c7956584" + }, + "012427a7-a81a-420f-a503-ca9d9b357ca3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.499999999999995, + "Y": -5.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "265cff73-df79-4154-b767-c3f49df1bab4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.499999999999995, + "Y": -5.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "012427a7-a81a-420f-a503-ca9d9b357ca3", + "Name": null + }, + "0b291d87-6385-4cc7-93b2-ebe4d990d6dc": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2937619976204643, + "Green": 0.37826370791451247, + "Blue": 0.5098052423027368, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0b291d87-6385-4cc7-93b2-ebe4d990d6dc", + "Name": "8ba6f06c-6f26-46eb-bc28-b95c102b99d1" + }, + "9011c0c0-0aa1-478a-82aa-74b3b5b2fc42": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.874999999999995, + "Y": -5.812500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b291d87-6385-4cc7-93b2-ebe4d990d6dc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.874999999999995, + "Y": -5.812500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9011c0c0-0aa1-478a-82aa-74b3b5b2fc42", + "Name": null + }, + "b276aaf4-0ede-44d6-bbe1-6e567ed2a0f4": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3142059209357043, + "Green": 0.9518606187551565, + "Blue": 0.8063594325475206, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b276aaf4-0ede-44d6-bbe1-6e567ed2a0f4", + "Name": "2e16c8cb-798e-4786-89b6-4ac8f740c9d2" + }, + "8b41402b-cd71-4185-8283-b9cd1669ee4f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.249999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.249999999999995, + "Y": -6.375000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b276aaf4-0ede-44d6-bbe1-6e567ed2a0f4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.249999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.249999999999995, + "Y": -6.375000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8b41402b-cd71-4185-8283-b9cd1669ee4f", + "Name": null + }, + "9476008f-1ebd-4d67-99f8-74f9f3f72fb2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.04718752999193386, + "Green": 0.6544586227529023, + "Blue": 0.3402428381798057, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9476008f-1ebd-4d67-99f8-74f9f3f72fb2", + "Name": "88e5f0d4-7108-437a-a073-be479a260e45" + }, + "fc3646e4-8513-4027-ae55-5c5a115b69fb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.624999999999996, + "Y": -6.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9476008f-1ebd-4d67-99f8-74f9f3f72fb2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.624999999999996, + "Y": -6.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fc3646e4-8513-4027-ae55-5c5a115b69fb", + "Name": null + }, + "9f528bf7-0989-49b0-a2f0-6fe665d49d98": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6132014932172379, + "Green": 0.4476404336502964, + "Blue": 0.552992957901672, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9f528bf7-0989-49b0-a2f0-6fe665d49d98", + "Name": "eae60340-2dbf-4443-bb73-1c974668d969" + }, + "fc442e8c-979c-4b9f-852c-d88cdece239d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.999999999999995, + "Y": -7.500000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9f528bf7-0989-49b0-a2f0-6fe665d49d98", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.999999999999995, + "Y": -7.500000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fc442e8c-979c-4b9f-852c-d88cdece239d", + "Name": null + }, + "05b6961f-c9e9-4ebf-81a8-abe880220eb6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.09294079714125991, + "Green": 0.0005649374800570949, + "Blue": 0.7481557609271984, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "05b6961f-c9e9-4ebf-81a8-abe880220eb6", + "Name": "b210b242-bbde-44c5-9c57-941a0666c546" + }, + "7c563816-e3be-4c1e-81f5-071317eb5ce5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.374999999999996, + "Y": -8.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "05b6961f-c9e9-4ebf-81a8-abe880220eb6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.374999999999996, + "Y": -8.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7c563816-e3be-4c1e-81f5-071317eb5ce5", + "Name": null + }, + "9f26c661-7913-42ca-8841-464d949c6b6d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9436877495346999, + "Green": 0.040402899515071374, + "Blue": 0.43744613250598596, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9f26c661-7913-42ca-8841-464d949c6b6d", + "Name": "e539aba3-da44-4e33-a44d-b3b3048ea37e" + }, + "711cd2c5-2814-4d8c-b29d-8937221d7404": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.749999999999996, + "Y": -8.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9f26c661-7913-42ca-8841-464d949c6b6d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.749999999999996, + "Y": -8.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "711cd2c5-2814-4d8c-b29d-8937221d7404", + "Name": null + }, + "34b88b15-ef83-4e84-a460-ad9a4616e84e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.14269130217968082, + "Green": 0.08484908895792863, + "Blue": 0.8744575683374226, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "34b88b15-ef83-4e84-a460-ad9a4616e84e", + "Name": "2665a998-520a-4fa2-8808-ce2aeec742c7" + }, + "dd9eb05d-3574-4e6e-8c56-7b52901e2cee": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.124999999999993, + "Y": -9.187500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "34b88b15-ef83-4e84-a460-ad9a4616e84e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.124999999999993, + "Y": -9.187500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dd9eb05d-3574-4e6e-8c56-7b52901e2cee", + "Name": null + }, + "5d78cf49-dfb7-42ab-b348-6920fe51fe5a": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7104663465686452, + "Green": 0.4690920251743365, + "Blue": 0.0053226146871795015, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "5d78cf49-dfb7-42ab-b348-6920fe51fe5a", + "Name": "54212f33-3e44-4811-8b36-664f51351661" + }, + "8bcb2928-16ce-4a8a-acca-4c5b2a1e7594": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.499999999999996, + "Y": -9.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "5d78cf49-dfb7-42ab-b348-6920fe51fe5a", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.499999999999996, + "Y": -9.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8bcb2928-16ce-4a8a-acca-4c5b2a1e7594", + "Name": null + }, + "d188b4ef-ba6b-4edb-a10c-49e9818370cd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6465951509990707, + "Green": 0.7030418341527888, + "Blue": 0.03877913907113445, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d188b4ef-ba6b-4edb-a10c-49e9818370cd", + "Name": "516ba3f6-ae9c-4620-bb1a-ab7e4cc3bcee" + }, + "5291d7a1-215d-4c81-90bd-c8eb30b58d3d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.874999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.874999999999996, + "Y": -10.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d188b4ef-ba6b-4edb-a10c-49e9818370cd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.874999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.874999999999996, + "Y": -10.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5291d7a1-215d-4c81-90bd-c8eb30b58d3d", + "Name": null + }, + "2b15283e-a2b7-4656-8f9b-dfecafa7e09d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7139753530332704, + "Green": 0.3716939279677784, + "Blue": 0.40570714297038835, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2b15283e-a2b7-4656-8f9b-dfecafa7e09d", + "Name": "ab928c62-6e1a-408c-a9bc-3693e14d8043" + }, + "c13c2537-6a2d-4fb4-b380-2b71ad509517": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.249999999999996, + "Y": -10.875000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2b15283e-a2b7-4656-8f9b-dfecafa7e09d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.249999999999996, + "Y": -10.875000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c13c2537-6a2d-4fb4-b380-2b71ad509517", + "Name": null + }, + "2985d601-2264-4bad-9063-302295449666": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.655864384330746, + "Green": 0.4982999789054971, + "Blue": 0.7730050495700003, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2985d601-2264-4bad-9063-302295449666", + "Name": "4a77a171-bb70-4a77-92b2-3fe116ecb12a" + }, + "0d8a9e32-1c00-43ec-a16f-2fa023240af0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.624999999999996, + "Y": -11.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2985d601-2264-4bad-9063-302295449666", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.624999999999996, + "Y": -11.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0d8a9e32-1c00-43ec-a16f-2fa023240af0", + "Name": null + }, + "b9bb0cb5-22ac-4319-ad4c-93a794143015": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.22112421003222663, + "Green": 0.6023827686916956, + "Blue": 0.9973596739570423, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b9bb0cb5-22ac-4319-ad4c-93a794143015", + "Name": "5d0157bc-e003-4ad3-b686-5180727e248c" + }, + "b2aeae12-142c-4bd9-ae20-1ed762bc0f65": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.0, + "Y": -12.000000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b9bb0cb5-22ac-4319-ad4c-93a794143015", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.0, + "Y": -12.000000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b2aeae12-142c-4bd9-ae20-1ed762bc0f65", + "Name": null + }, + "d0c525ab-3389-48dc-a192-cda401a643ee": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7365052200558154, + "Green": 0.17698496867762178, + "Blue": 0.6060993301710577, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d0c525ab-3389-48dc-a192-cda401a643ee", + "Name": "df6bfa97-d5a1-4fa8-bda7-62a6bb761d38" + }, + "fc02934b-ee43-4cb6-ab52-fe293b80dacd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.374999999999996, + "Y": -12.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0c525ab-3389-48dc-a192-cda401a643ee", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.374999999999996, + "Y": -12.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fc02934b-ee43-4cb6-ab52-fe293b80dacd", + "Name": null + }, + "3f2418b9-2a10-4b35-b20c-20a3ffafbcfb": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7019726390493907, + "Green": 0.8911012680694002, + "Blue": 0.7150657394505412, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "3f2418b9-2a10-4b35-b20c-20a3ffafbcfb", + "Name": "4a65b495-8e2e-4dee-9c1e-84ac5f3f37ee" + }, + "d47f702a-2a25-4edb-8bed-40acbed45d10": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.749999999999996, + "Y": -13.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3f2418b9-2a10-4b35-b20c-20a3ffafbcfb", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.749999999999996, + "Y": -13.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d47f702a-2a25-4edb-8bed-40acbed45d10", + "Name": null + }, + "452e8f4a-6733-4700-b32f-6be8328f9098": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.47104582910940324, + "Green": 0.7968290414646403, + "Blue": 0.3045698252062173, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "452e8f4a-6733-4700-b32f-6be8328f9098", + "Name": "70a8e5a5-b593-437d-8cfd-a8e438b3c746" + }, + "755bdb74-1881-4135-9565-004229bb014e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.124999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.124999999999996, + "Y": -13.687500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "452e8f4a-6733-4700-b32f-6be8328f9098", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.124999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.124999999999996, + "Y": -13.687500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "755bdb74-1881-4135-9565-004229bb014e", + "Name": null + }, + "773133b8-f888-4f10-8fbf-72d40811c381": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.37839725770912935, + "Green": 0.6413830684690658, + "Blue": 0.7709830970368269, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "773133b8-f888-4f10-8fbf-72d40811c381", + "Name": "3aa68e82-b776-402f-b6a9-ecfbe64028dc" + }, + "6dfec819-533f-4a86-964d-e9a6e08d1d56": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.499999999999996, + "Y": -14.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "773133b8-f888-4f10-8fbf-72d40811c381", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.499999999999996, + "Y": -14.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6dfec819-533f-4a86-964d-e9a6e08d1d56", + "Name": null + }, + "8eb76bd9-7bfd-47ef-80cf-28db59597e0c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.31716182377057234, + "Green": 0.6922685372141509, + "Blue": 0.5614035164757648, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8eb76bd9-7bfd-47ef-80cf-28db59597e0c", + "Name": "7e8a7840-8d81-432d-8839-25b3a4280007" + }, + "fdc35cd7-18ce-428e-9731-4adf21c85ec4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.875, + "Y": -14.812500000000021, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8eb76bd9-7bfd-47ef-80cf-28db59597e0c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.875, + "Y": -14.812500000000021, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fdc35cd7-18ce-428e-9731-4adf21c85ec4", + "Name": null + }, + "53745bbf-2b3c-4642-91b9-c8484fc3a31f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9019157671844195, + "Green": 0.9128193007376135, + "Blue": 0.8035643775032667, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "53745bbf-2b3c-4642-91b9-c8484fc3a31f", + "Name": "9d1c58b5-060f-4c8c-9787-b426f59d955c" + }, + "e620b4c2-5268-4471-bb70-bbcbd8720a60": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.249999999999996, + "Y": -15.375000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "53745bbf-2b3c-4642-91b9-c8484fc3a31f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.249999999999996, + "Y": -15.375000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e620b4c2-5268-4471-bb70-bbcbd8720a60", + "Name": null + }, + "dc716264-1054-48dc-afa7-2f127cb50b5f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.652318447666391, + "Green": 0.5832956510518191, + "Blue": 0.9091716827401759, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "dc716264-1054-48dc-afa7-2f127cb50b5f", + "Name": "93063016-2dc5-43f2-a1d6-ad0d12fbb5fa" + }, + "fe3ccc56-6898-449f-8a7e-96a4e6e56fdd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.624999999999996, + "Y": -15.937500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dc716264-1054-48dc-afa7-2f127cb50b5f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.624999999999996, + "Y": -15.937500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fe3ccc56-6898-449f-8a7e-96a4e6e56fdd", + "Name": null + }, + "8eac0740-19c8-4e59-883a-5ffcf14ec771": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5044826276155574, + "Green": 0.6676107699366337, + "Blue": 0.24881878460236767, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8eac0740-19c8-4e59-883a-5ffcf14ec771", + "Name": "ac2afff7-0e08-4e6c-8b81-fbd753bb6508" + }, + "3bc23751-c7ef-4148-8bd1-1b271ab9357c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.0, + "Y": -16.50000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8eac0740-19c8-4e59-883a-5ffcf14ec771", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.0, + "Y": -16.50000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3bc23751-c7ef-4148-8bd1-1b271ab9357c", + "Name": null + }, + "b24987ef-03cd-4b03-9f64-666db63820e1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7675802934763861, + "Green": 0.33321217695866345, + "Blue": 0.282764694785124, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b24987ef-03cd-4b03-9f64-666db63820e1", + "Name": "3d9cc55a-05f1-45d1-bf5f-87ce47017817" + }, + "92452fa8-e370-44e5-89a9-73882543c5f6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.374999999999996, + "Y": -17.062500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b24987ef-03cd-4b03-9f64-666db63820e1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.374999999999996, + "Y": -17.062500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "92452fa8-e370-44e5-89a9-73882543c5f6", + "Name": null + }, + "6cf7876e-301f-420c-9fb9-1a9ad1910f76": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9345356952094174, + "Green": 0.957337108886492, + "Blue": 0.9493404547447992, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6cf7876e-301f-420c-9fb9-1a9ad1910f76", + "Name": "c4da3a0c-f181-494a-bbf1-f8b29ab73fb4" + }, + "d6c5bca5-0771-4392-99b2-9bc88ac5ed94": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.75, + "Y": -17.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6cf7876e-301f-420c-9fb9-1a9ad1910f76", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.75, + "Y": -17.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d6c5bca5-0771-4392-99b2-9bc88ac5ed94", + "Name": null + }, + "d5da68ba-6358-47a0-921d-ac5960a24d83": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7799879083316716, + "Green": 0.8718165871090333, + "Blue": 0.39818216878836143, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d5da68ba-6358-47a0-921d-ac5960a24d83", + "Name": "bd9ebe23-9442-429d-8373-ea084e85c5b4" + }, + "285df4ab-4bf9-41eb-886d-a29481294ad8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.125, + "Y": -18.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d5da68ba-6358-47a0-921d-ac5960a24d83", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.125, + "Y": -18.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "285df4ab-4bf9-41eb-886d-a29481294ad8", + "Name": null + }, + "3094ff7d-09e2-42d2-afdd-5ec9d57f3a64": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7507960869701561, + "Green": 0.20718252947888455, + "Blue": 0.8634179308374496, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "3094ff7d-09e2-42d2-afdd-5ec9d57f3a64", + "Name": "93ea84e7-6501-4e58-aba6-bae4937eb6e6" + }, + "51757840-e557-45cc-8cc9-74e624021fb2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.499999999999996, + "Y": -18.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3094ff7d-09e2-42d2-afdd-5ec9d57f3a64", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.499999999999996, + "Y": -18.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "51757840-e557-45cc-8cc9-74e624021fb2", + "Name": null + }, + "4005d950-981a-4915-9ab2-1f762b1c489f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8313468023349283, + "Green": 0.4407186631302902, + "Blue": 0.19374782088852852, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4005d950-981a-4915-9ab2-1f762b1c489f", + "Name": "d213125a-74ca-47d8-9d36-28c7741fcc87" + }, + "301e6b51-cdbf-4f3c-9d68-f3cf46d912ce": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.875, + "Y": -19.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4005d950-981a-4915-9ab2-1f762b1c489f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.875, + "Y": -19.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "301e6b51-cdbf-4f3c-9d68-f3cf46d912ce", + "Name": null + }, + "c24bf2d8-5ea6-442d-b7fd-232f40a73745": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1593918288868814, + "Green": 0.23942051745924192, + "Blue": 0.6722629837096962, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c24bf2d8-5ea6-442d-b7fd-232f40a73745", + "Name": "61b697ed-ed8d-4c77-88fd-6cce6ee9f742" + }, + "9baabc76-fa06-4ed8-9bba-48c5b3e11a98": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.25, + "Y": -19.875000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c24bf2d8-5ea6-442d-b7fd-232f40a73745", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.25, + "Y": -19.875000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9baabc76-fa06-4ed8-9bba-48c5b3e11a98", + "Name": null + }, + "dc2550e3-88b9-4e44-a464-b71b020e5618": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7007527894809622, + "Green": 0.2681978932899413, + "Blue": 0.06165876568372304, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "dc2550e3-88b9-4e44-a464-b71b020e5618", + "Name": "78b7a7d0-3cff-4129-a558-bd85eb377571" + }, + "5ef78095-dff6-45d4-8e83-e97ff9ba7693": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.625, + "Y": -20.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dc2550e3-88b9-4e44-a464-b71b020e5618", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.625, + "Y": -20.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5ef78095-dff6-45d4-8e83-e97ff9ba7693", + "Name": null + }, + "6308b3c4-0afa-4938-9c84-4ad9636594aa": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2677960420343075, + "Green": 0.39681352926269803, + "Blue": 0.6794253907536275, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6308b3c4-0afa-4938-9c84-4ad9636594aa", + "Name": "a0047c19-6ce2-4bcf-a142-d1ae8ccabf58" + }, + "b9bad69b-c553-4b23-a6d6-2e785b74ca42": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.0, + "Y": -21.00000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6308b3c4-0afa-4938-9c84-4ad9636594aa", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.0, + "Y": -21.00000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b9bad69b-c553-4b23-a6d6-2e785b74ca42", + "Name": null + }, + "f28ef0de-2bbc-471a-b22e-648807061650": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8443036264946235, + "Green": 0.7539486171463265, + "Blue": 0.5854806781678836, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f28ef0de-2bbc-471a-b22e-648807061650", + "Name": "bb6052be-8999-4240-9e1a-42b7a8cab552" + }, + "69fc9919-4a94-4e7b-a51c-d227dae4cc5f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.374999999999996, + "Y": -21.562500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f28ef0de-2bbc-471a-b22e-648807061650", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.374999999999996, + "Y": -21.562500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "69fc9919-4a94-4e7b-a51c-d227dae4cc5f", + "Name": null + }, + "172876e2-4f28-48ae-8b97-92ab5ad56170": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9694406720667336, + "Green": 0.5688057623658356, + "Blue": 0.019087117639876493, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "172876e2-4f28-48ae-8b97-92ab5ad56170", + "Name": "12a2393e-02ee-48b8-8b7f-3d786e9f78ab" + }, + "2c2f7637-4b9b-40c1-8da9-a822fd54357f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.75, + "Y": -22.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "172876e2-4f28-48ae-8b97-92ab5ad56170", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.75, + "Y": -22.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2c2f7637-4b9b-40c1-8da9-a822fd54357f", + "Name": null + }, + "52c5be44-3065-490c-af22-b8bbc9d96a07": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0881879912168663, + "Green": 0.23202259244025805, + "Blue": 0.5093741987409881, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "52c5be44-3065-490c-af22-b8bbc9d96a07", + "Name": "768b355b-f7e8-4a82-a573-1e7e1a1365f8" + }, + "aaef37cb-6692-426b-869b-d3fbcac206fc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.125, + "Y": -22.68750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "52c5be44-3065-490c-af22-b8bbc9d96a07", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.125, + "Y": -22.68750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "aaef37cb-6692-426b-869b-d3fbcac206fc", + "Name": null + }, + "f64124a6-8dfd-406e-b31c-dbd7f231a946": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.35728054556868993, + "Green": 0.9343923455730045, + "Blue": 0.5578890911107366, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f64124a6-8dfd-406e-b31c-dbd7f231a946", + "Name": "b0607171-326f-401c-9552-9ed0143cbbfe" + }, + "b054c9a1-5185-49ef-9b8e-a4570d566043": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.5, + "Y": -23.250000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f64124a6-8dfd-406e-b31c-dbd7f231a946", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.5, + "Y": -23.250000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b054c9a1-5185-49ef-9b8e-a4570d566043", + "Name": null + }, + "a01e049d-4638-46ea-80fa-6173ba18599b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4323010446654172, + "Green": 0.5365101338999859, + "Blue": 0.8394919325781482, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a01e049d-4638-46ea-80fa-6173ba18599b", + "Name": "f3ff5240-d47c-49a7-8053-d181c7f3c669" + }, + "11049a6b-52cf-4bd2-8a19-a3b818858dcf": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.875, + "Y": -23.812500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a01e049d-4638-46ea-80fa-6173ba18599b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.875, + "Y": -23.812500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "11049a6b-52cf-4bd2-8a19-a3b818858dcf", + "Name": null + }, + "1081bcc5-6645-44aa-9362-d684b01b0dc5": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.355229370461418, + "Green": 0.5984093493774577, + "Blue": 0.7695664813600325, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1081bcc5-6645-44aa-9362-d684b01b0dc5", + "Name": "26360937-8080-4969-beba-d5b47cb48e62" + }, + "429a545c-65cc-4130-a4a5-58a9b4d58485": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -24.37500000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1081bcc5-6645-44aa-9362-d684b01b0dc5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -24.37500000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "429a545c-65cc-4130-a4a5-58a9b4d58485", + "Name": null + }, + "f96d820d-7a61-4b54-92d8-df1690812724": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3728009282484655, + "Green": 0.5663657368004162, + "Blue": 0.48508600773526633, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f96d820d-7a61-4b54-92d8-df1690812724", + "Name": "0bf04fbb-0526-49d3-a5c5-a701cffcd290" + }, + "d131d435-af87-43b1-9328-d6f9c1cff155": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.625, + "Y": -24.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f96d820d-7a61-4b54-92d8-df1690812724", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.625, + "Y": -24.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d131d435-af87-43b1-9328-d6f9c1cff155", + "Name": null + }, + "e17d5611-255f-495b-b3f2-b8bebe6d7b36": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6979855856383153, + "Green": 0.07056896484949113, + "Blue": 0.4721006376073233, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e17d5611-255f-495b-b3f2-b8bebe6d7b36", + "Name": "a2adcdd6-92f7-48f4-b2d1-a017d223752d" + }, + "3d9c75f1-e889-4c3e-80c7-5a2a0c701fc7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.0, + "Y": -25.500000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e17d5611-255f-495b-b3f2-b8bebe6d7b36", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.0, + "Y": -25.500000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3d9c75f1-e889-4c3e-80c7-5a2a0c701fc7", + "Name": null + }, + "acb89ff4-9d64-4181-a6d2-a7a10a0fd378": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6098165566147382, + "Green": 0.4929266187795096, + "Blue": 0.34387513359257726, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "acb89ff4-9d64-4181-a6d2-a7a10a0fd378", + "Name": "4df5e013-4f76-4650-a94a-90d207205eac" + }, + "5a6b106e-cdbb-44ec-ba07-ed9e9619995f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.375, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.375, + "Y": -26.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "acb89ff4-9d64-4181-a6d2-a7a10a0fd378", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.375, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.375, + "Y": -26.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5a6b106e-cdbb-44ec-ba07-ed9e9619995f", + "Name": null + }, + "09af1ca6-9047-4bca-8f4a-b6d08f07f789": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.23690869903047973, + "Green": 0.8037298381345951, + "Blue": 0.39941287664669234, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "09af1ca6-9047-4bca-8f4a-b6d08f07f789", + "Name": "e5cecadd-ee24-4428-afbc-997a797bab10" + }, + "1bcce726-d246-4bf6-bfdb-40bf36423cd0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.75, + "Y": -26.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "09af1ca6-9047-4bca-8f4a-b6d08f07f789", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.75, + "Y": -26.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1bcce726-d246-4bf6-bfdb-40bf36423cd0", + "Name": null + }, + "110566da-81d7-4108-84b4-387cc18755c7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.18716001891864464, + "Green": 0.4997842514420786, + "Blue": 0.9363986476959655, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "110566da-81d7-4108-84b4-387cc18755c7", + "Name": "6677a12b-2d2d-458c-bb1e-0fa929e8a7ba" + }, + "86dbdf19-8365-46bb-8fd0-6568d2c6968e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.125, + "Y": -27.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "110566da-81d7-4108-84b4-387cc18755c7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.125, + "Y": -27.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "86dbdf19-8365-46bb-8fd0-6568d2c6968e", + "Name": null + }, + "08c954c2-4ec5-4a8b-a0c8-06def73d9967": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6033393040314965, + "Green": 0.0902320687147938, + "Blue": 0.20338849174016552, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "08c954c2-4ec5-4a8b-a0c8-06def73d9967", + "Name": "95435046-c6c8-4078-bc2b-14de46831e6a" + }, + "5ba89eac-deb6-4b30-8c63-aa3aeb6f10a7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.5, + "Y": -27.750000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "08c954c2-4ec5-4a8b-a0c8-06def73d9967", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.5, + "Y": -27.750000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5ba89eac-deb6-4b30-8c63-aa3aeb6f10a7", + "Name": null + }, + "d0ed7748-dc01-4694-bd74-6acf90319d22": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.36385977657691565, + "Green": 0.8105472362649382, + "Blue": 0.3030108247431977, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d0ed7748-dc01-4694-bd74-6acf90319d22", + "Name": "c330e729-d81a-40f4-a459-0bc6c8fedc77" + }, + "48512fbb-070d-4ac3-b46c-db024f96764e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.875, + "Y": -28.312500000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0ed7748-dc01-4694-bd74-6acf90319d22", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.875, + "Y": -28.312500000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "48512fbb-070d-4ac3-b46c-db024f96764e", + "Name": null + }, + "4256a72d-67f8-4cfd-b623-cda1a95ad2ed": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.37909505114848496, + "Green": 0.6626080957532898, + "Blue": 0.9751599370386265, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4256a72d-67f8-4cfd-b623-cda1a95ad2ed", + "Name": "50e596eb-41ad-4818-8d30-722eaf2a8e55" + }, + "067e6e50-b9a4-4051-9a88-ef70134865cb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.250000000000004, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.250000000000004, + "Y": -28.875000000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4256a72d-67f8-4cfd-b623-cda1a95ad2ed", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.250000000000004, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.250000000000004, + "Y": -28.875000000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "067e6e50-b9a4-4051-9a88-ef70134865cb", + "Name": null + }, + "ff71ce93-3577-4b7b-9629-95a57668371f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.35404373209646145, + "Green": 0.47406625676623837, + "Blue": 0.5063263175572856, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ff71ce93-3577-4b7b-9629-95a57668371f", + "Name": "bfdb74a7-13f0-4b5d-9a97-526e181ddeef" + }, + "2a219401-cd11-4b33-887c-8405e8aff89d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.625, + "Y": -29.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ff71ce93-3577-4b7b-9629-95a57668371f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.625, + "Y": -29.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2a219401-cd11-4b33-887c-8405e8aff89d", + "Name": null + }, + "ca45ed23-9590-4a54-9033-1d0e5bcfab99": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ca45ed23-9590-4a54-9033-1d0e5bcfab99", + "Name": null + }, + "a685c334-87cc-4819-a510-1a407ba0e9c6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3, + "Green": 0.7, + "Blue": 0.7, + "Alpha": 0.6 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "a685c334-87cc-4819-a510-1a407ba0e9c6", + "Name": "envelope" + }, + "43388ca2-4262-4ba5-8965-60d8ffeb25ec": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "43388ca2-4262-4ba5-8965-60d8ffeb25ec", + "Name": null + }, + "681f0379-5e88-4951-97bb-99cbd307f175": { + "discriminator": "Elements.Envelope", + "Profile": "ca45ed23-9590-4a54-9033-1d0e5bcfab99", + "Elevation": -10.0, + "Height": 10.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -10.0 + ] + } + }, + "Material": "a685c334-87cc-4819-a510-1a407ba0e9c6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "43388ca2-4262-4ba5-8965-60d8ffeb25ec", + "Height": 10.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "681f0379-5e88-4951-97bb-99cbd307f175", + "Name": "" + }, + "b1d94f62-fd8b-4883-9f3a-51a61abc7874": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b1d94f62-fd8b-4883-9f3a-51a61abc7874", + "Name": null + }, + "90bc8c6e-c055-4b39-9118-4bdb488e400a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "90bc8c6e-c055-4b39-9118-4bdb488e400a", + "Name": null + }, + "a870fe10-a1af-4d71-8ef4-18d2befc1ae0": { + "discriminator": "Elements.Envelope", + "Profile": "b1d94f62-fd8b-4883-9f3a-51a61abc7874", + "Elevation": 0.0, + "Height": 20.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a685c334-87cc-4819-a510-1a407ba0e9c6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "90bc8c6e-c055-4b39-9118-4bdb488e400a", + "Height": 20.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a870fe10-a1af-4d71-8ef4-18d2befc1ae0", + "Name": "" + }, + "d1e0443c-b18f-44a5-b81d-07d70a9aac43": { + "discriminator": "Elements.Primitive", + "Id": "d1e0443c-b18f-44a5-b81d-07d70a9aac43", + "Name": "Basement" + }, + "17934ee8-895e-4fa6-b581-f327412eea4f": { + "discriminator": "Elements.Primitive", + "Id": "17934ee8-895e-4fa6-b581-f327412eea4f", + "Name": "Ground Floor" + }, + "96c1166f-e649-4dcc-aa4e-926454480d73": { + "discriminator": "Elements.Primitive", + "Id": "96c1166f-e649-4dcc-aa4e-926454480d73", + "Name": "Typical Floor" + }, + "605b5379-10c6-4efc-83f2-9c3546c9af53": { + "discriminator": "Elements.Primitive", + "Id": "605b5379-10c6-4efc-83f2-9c3546c9af53", + "Name": "Penthouse" + }, + "aa8ce056-c0eb-4204-9399-0ffad6e3ac55": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "aa8ce056-c0eb-4204-9399-0ffad6e3ac55", + "Name": "Basement_material" + }, + "5a566959-580b-488e-b559-7b48143d91e0": { + "discriminator": "Elements.Level", + "Elevation": -10.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -10.0 + ] + } + }, + "Material": "aa8ce056-c0eb-4204-9399-0ffad6e3ac55", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5a566959-580b-488e-b559-7b48143d91e0", + "Name": "Basement" + }, + "3e4e7b6e-3392-4ed8-8611-839662f931d7": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": -10.0, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "3e4e7b6e-3392-4ed8-8611-839662f931d7", + "Name": "Basement" + }, + "e0b52343-c271-41bf-b812-ed6657043d1a": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": -10.0 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": -1.0000999999999998 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "e0b52343-c271-41bf-b812-ed6657043d1a", + "Name": "Basement" + }, + "c1e5299d-3f7f-407b-be18-d042cc7948b1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c1e5299d-3f7f-407b-be18-d042cc7948b1", + "Name": null + }, + "0a56d396-bd81-44c6-9ec0-34fa2fb7ee25": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0a56d396-bd81-44c6-9ec0-34fa2fb7ee25", + "Name": null + }, + "f44f6d0d-44b2-4349-b9c0-268c0fec42fa": { + "discriminator": "Elements.LevelVolume", + "Profile": "c1e5299d-3f7f-407b-be18-d042cc7948b1", + "Height": 10.0, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -10.0 + ] + } + }, + "Material": "aa8ce056-c0eb-4204-9399-0ffad6e3ac55", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0a56d396-bd81-44c6-9ec0-34fa2fb7ee25", + "Height": 9.9999, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f44f6d0d-44b2-4349-b9c0-268c0fec42fa", + "Name": "Basement", + "Plan View": "e0b52343-c271-41bf-b812-ed6657043d1a" + }, + "c0c81819-9cb1-416b-acbd-4e8daccdc4cd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "c0c81819-9cb1-416b-acbd-4e8daccdc4cd", + "Name": "Ground Floor_material" + }, + "4498ac7b-7175-4918-b3bf-8abb95bb6935": { + "discriminator": "Elements.Level", + "Elevation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c0c81819-9cb1-416b-acbd-4e8daccdc4cd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4498ac7b-7175-4918-b3bf-8abb95bb6935", + "Name": "Ground Floor" + }, + "386cc57a-efe7-4362-ab41-4a3305ef6c15": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 0.0, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "386cc57a-efe7-4362-ab41-4a3305ef6c15", + "Name": "Ground Floor" + }, + "0b098943-0ee6-4ef6-8a43-7f22a3b09e3b": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 3.4999000000000002 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "0b098943-0ee6-4ef6-8a43-7f22a3b09e3b", + "Name": "Ground Floor" + }, + "211117af-28a9-4b74-8996-fa36c30cd3d1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "211117af-28a9-4b74-8996-fa36c30cd3d1", + "Name": null + }, + "0b06d229-214a-4a96-b1ee-67de9c0e1d14": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0b06d229-214a-4a96-b1ee-67de9c0e1d14", + "Name": null + }, + "6928cefc-d742-40c6-9761-8e5cfb3b2436": { + "discriminator": "Elements.LevelVolume", + "Profile": "211117af-28a9-4b74-8996-fa36c30cd3d1", + "Height": 4.5, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c0c81819-9cb1-416b-acbd-4e8daccdc4cd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0b06d229-214a-4a96-b1ee-67de9c0e1d14", + "Height": 4.4999, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6928cefc-d742-40c6-9761-8e5cfb3b2436", + "Name": "Ground Floor", + "Plan View": "0b098943-0ee6-4ef6-8a43-7f22a3b09e3b" + }, + "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Name": "Typical Floor_material" + }, + "ee8911ad-eea2-48ba-b2a8-5467bd6e08b8": { + "discriminator": "Elements.Level", + "Elevation": 4.5, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ee8911ad-eea2-48ba-b2a8-5467bd6e08b8", + "Name": "Typical Floor (1)" + }, + "d4b46f9d-cf38-4fc6-a2cd-077dc468327a": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 4.5, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "d4b46f9d-cf38-4fc6-a2cd-077dc468327a", + "Name": "Typical Floor (1)" + }, + "406be19c-8218-4a08-a2c0-b340f6047806": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 4.5 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 7.3499 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "406be19c-8218-4a08-a2c0-b340f6047806", + "Name": "Typical Floor (1)" + }, + "18ea53e1-ba0a-42ae-b5b8-e314368872ac": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "18ea53e1-ba0a-42ae-b5b8-e314368872ac", + "Name": null + }, + "859b2a87-f398-4bbe-88b4-ab7d6b98a9da": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "859b2a87-f398-4bbe-88b4-ab7d6b98a9da", + "Name": null + }, + "8b3714c5-ffb8-44dc-95a2-fb007b339fc2": { + "discriminator": "Elements.LevelVolume", + "Profile": "18ea53e1-ba0a-42ae-b5b8-e314368872ac", + "Height": 3.8499999999999996, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "859b2a87-f398-4bbe-88b4-ab7d6b98a9da", + "Height": 3.8498999999999994, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8b3714c5-ffb8-44dc-95a2-fb007b339fc2", + "Name": "Typical Floor (1)", + "Plan View": "406be19c-8218-4a08-a2c0-b340f6047806" + }, + "4e013d4b-edd5-4efe-a968-e60dcd5e89c0": { + "discriminator": "Elements.Level", + "Elevation": 8.35, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4e013d4b-edd5-4efe-a968-e60dcd5e89c0", + "Name": "Typical Floor (2)" + }, + "ee43fa61-b3cc-420f-ae54-e2857401c23a": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 8.35, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "ee43fa61-b3cc-420f-ae54-e2857401c23a", + "Name": "Typical Floor (2)" + }, + "d6c96d5d-55d4-4e41-855b-c12762ad9aa0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 8.35 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 11.1999 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "d6c96d5d-55d4-4e41-855b-c12762ad9aa0", + "Name": "Typical Floor (2)" + }, + "d94b7e64-109f-4713-af2a-d32af437ebb3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d94b7e64-109f-4713-af2a-d32af437ebb3", + "Name": null + }, + "fcb66a3d-a9c5-4c36-a2d2-8c1153063296": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fcb66a3d-a9c5-4c36-a2d2-8c1153063296", + "Name": null + }, + "da2199d3-e0aa-41f2-a120-ceb40688e0d5": { + "discriminator": "Elements.LevelVolume", + "Profile": "d94b7e64-109f-4713-af2a-d32af437ebb3", + "Height": 3.8499999999999996, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "fcb66a3d-a9c5-4c36-a2d2-8c1153063296", + "Height": 3.8498999999999994, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "da2199d3-e0aa-41f2-a120-ceb40688e0d5", + "Name": "Typical Floor (2)", + "Plan View": "d6c96d5d-55d4-4e41-855b-c12762ad9aa0" + }, + "3a088b37-46ad-4e14-bd29-720a75330a59": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "3a088b37-46ad-4e14-bd29-720a75330a59", + "Name": "Penthouse_material" + }, + "bed58e8b-1609-4703-a051-d7a9fc24d2a6": { + "discriminator": "Elements.Level", + "Elevation": 12.2, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Material": "3a088b37-46ad-4e14-bd29-720a75330a59", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bed58e8b-1609-4703-a051-d7a9fc24d2a6", + "Name": "Penthouse" + }, + "215e327f-2581-4292-8c2b-ac4a8f431bc0": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 12.2, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "215e327f-2581-4292-8c2b-ac4a8f431bc0", + "Name": "Penthouse" + }, + "1861a342-f735-4fbc-bec6-0c38f7e18a0d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 12.2 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 18.9999 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "1861a342-f735-4fbc-bec6-0c38f7e18a0d", + "Name": "Penthouse" + }, + "fc68d63c-e9a5-44f6-b410-af2b42eb9e74": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fc68d63c-e9a5-44f6-b410-af2b42eb9e74", + "Name": null + }, + "e56268a9-d57e-41e2-87c0-367b202bd720": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e56268a9-d57e-41e2-87c0-367b202bd720", + "Name": null + }, + "5382e5c8-a0fc-46f0-aaae-15586fa677fd": { + "discriminator": "Elements.LevelVolume", + "Profile": "fc68d63c-e9a5-44f6-b410-af2b42eb9e74", + "Height": 7.800000000000001, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Material": "3a088b37-46ad-4e14-bd29-720a75330a59", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e56268a9-d57e-41e2-87c0-367b202bd720", + "Height": 7.799900000000001, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5382e5c8-a0fc-46f0-aaae-15586fa677fd", + "Name": "Penthouse", + "Plan View": "1861a342-f735-4fbc-bec6-0c38f7e18a0d" + }, + "6771e26c-6d64-4c0e-962c-018166d01dfd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.800000011920929, + "GlossinessFactor": 0.5, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Name": "panel" + }, + "c47b651a-0ac0-4b76-a847-bdde1a073d17": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c47b651a-0ac0-4b76-a847-bdde1a073d17", + "Name": null + }, + "f8950a85-67a1-4d0e-b71a-3dad11a889fc": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + -1.0658141036401503E-14, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c47b651a-0ac0-4b76-a847-bdde1a073d17", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f8950a85-67a1-4d0e-b71a-3dad11a889fc", + "Name": "FP_1_0" + }, + "906e8bc7-2847-4c8c-82df-4f4ed1d33090": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "906e8bc7-2847-4c8c-82df-4f4ed1d33090", + "Name": null + }, + "06319917-282e-4212-9488-b7a24f5360ab": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "906e8bc7-2847-4c8c-82df-4f4ed1d33090", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "06319917-282e-4212-9488-b7a24f5360ab", + "Name": "FP_1" + }, + "6d255750-badf-48df-940f-c20cf683aedd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.7 + }, + "SpecularFactor": 0.800000011920929, + "GlossinessFactor": 1.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "6d255750-badf-48df-940f-c20cf683aedd", + "Name": "Glazing" + }, + "931b54f2-081d-46ff-926e-ad9f8a0ed196": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Name": null + }, + "cb0a9a3d-8cdb-4dd2-9562-ae567db59400": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "cb0a9a3d-8cdb-4dd2-9562-ae567db59400", + "Name": "FP_1_1" + }, + "93053083-85d5-43d5-8061-86e596552218": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "93053083-85d5-43d5-8061-86e596552218", + "Name": "FG_1_1" + }, + "fe7162e6-39e4-45a4-81e6-bfe02e642a1b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "fe7162e6-39e4-45a4-81e6-bfe02e642a1b", + "Name": "FP_1_2" + }, + "78043bf8-3424-4251-9add-61a2ecffdb90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "78043bf8-3424-4251-9add-61a2ecffdb90", + "Name": "FG_1_2" + }, + "7cc63ff2-ae64-461e-8821-f63175ff7377": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7cc63ff2-ae64-461e-8821-f63175ff7377", + "Name": "FP_1_3" + }, + "56a43179-0a6d-46be-bbd9-ec90544edae6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "56a43179-0a6d-46be-bbd9-ec90544edae6", + "Name": "FG_1_3" + }, + "e388f552-f508-4404-9438-a7789f6c1b25": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e388f552-f508-4404-9438-a7789f6c1b25", + "Name": "FP_1_4" + }, + "fd1bca60-3527-4184-9793-546750104775": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "fd1bca60-3527-4184-9793-546750104775", + "Name": "FG_1_4" + }, + "f0d21d9d-ae74-4b31-9f22-2b9d75b4984d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f0d21d9d-ae74-4b31-9f22-2b9d75b4984d", + "Name": "FP_1_5" + }, + "b1912f25-1479-4d03-b1d7-d25533f6d465": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b1912f25-1479-4d03-b1d7-d25533f6d465", + "Name": "FG_1_5" + }, + "9f593865-f103-49e6-b728-f78a18f12ec3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9f593865-f103-49e6-b728-f78a18f12ec3", + "Name": "FP_1_6" + }, + "75b6be77-0504-4953-a0bd-8aee73d7d941": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "75b6be77-0504-4953-a0bd-8aee73d7d941", + "Name": "FG_1_6" + }, + "28eec4d3-1e62-43ef-a522-29bb4c2e5120": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "28eec4d3-1e62-43ef-a522-29bb4c2e5120", + "Name": "FP_1_7" + }, + "a54c6903-3673-4c37-a645-21309e3c85d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a54c6903-3673-4c37-a645-21309e3c85d1", + "Name": "FG_1_7" + }, + "82ae069a-e5ac-4281-8af1-5187f7364c95": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "82ae069a-e5ac-4281-8af1-5187f7364c95", + "Name": "FP_1_8" + }, + "7ed89d00-2529-4008-8662-1b63cbe5fd15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7ed89d00-2529-4008-8662-1b63cbe5fd15", + "Name": "FG_1_8" + }, + "678abb40-0927-4521-a3bd-3ded535a5fd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "678abb40-0927-4521-a3bd-3ded535a5fd9", + "Name": "FP_1_9" + }, + "046fdc20-8d49-482e-8e47-ad672909c354": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "046fdc20-8d49-482e-8e47-ad672909c354", + "Name": "FG_1_9" + }, + "a4f1b793-0e65-4849-b091-26d5286ce4d2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a4f1b793-0e65-4849-b091-26d5286ce4d2", + "Name": "FP_1_10" + }, + "e8191292-a465-45ad-a6ce-278271695ab6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e8191292-a465-45ad-a6ce-278271695ab6", + "Name": "FG_1_10" + }, + "900639ea-fef3-4824-ba3e-1e3b23b826d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "900639ea-fef3-4824-ba3e-1e3b23b826d7", + "Name": "FP_1_11" + }, + "e7de7303-5ab9-450b-bc7b-6d19bc8f9bc9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e7de7303-5ab9-450b-bc7b-6d19bc8f9bc9", + "Name": "FG_1_11" + }, + "ec3ac7ca-58d0-4efc-b70d-51d4925748f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ec3ac7ca-58d0-4efc-b70d-51d4925748f4", + "Name": "FP_1_12" + }, + "9ce3b453-218c-4e6c-9165-3190abc77f9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9ce3b453-218c-4e6c-9165-3190abc77f9a", + "Name": "FG_1_12" + }, + "d4574e56-f4d7-4134-bfd1-4521b31d2b49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "d4574e56-f4d7-4134-bfd1-4521b31d2b49", + "Name": "FP_1_13" + }, + "cae32929-d8f9-46f1-9830-0455d3f2ce9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "cae32929-d8f9-46f1-9830-0455d3f2ce9f", + "Name": "FG_1_13" + }, + "2805a18f-9023-46cc-9e8b-5662b18aba45": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2805a18f-9023-46cc-9e8b-5662b18aba45", + "Name": "FP_1_14" + }, + "1d10978e-841c-4592-8e35-1986f279276f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1d10978e-841c-4592-8e35-1986f279276f", + "Name": "FG_1_14" + }, + "ed9d9f3d-2c28-463e-827a-ea2ce81b6047": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ed9d9f3d-2c28-463e-827a-ea2ce81b6047", + "Name": "FP_1_15" + }, + "6c81f118-9b00-40d7-affd-25c04e6f0fe9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6c81f118-9b00-40d7-affd-25c04e6f0fe9", + "Name": "FG_1_15" + }, + "63ae5fe7-266d-4027-99ca-69f493f7387a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "63ae5fe7-266d-4027-99ca-69f493f7387a", + "Name": "FP_1_16" + }, + "dcd438d0-34ee-4deb-99d6-83bfe1305410": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "dcd438d0-34ee-4deb-99d6-83bfe1305410", + "Name": "FG_1_16" + }, + "743f4f34-c559-4260-a8a6-2d2b56173645": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "743f4f34-c559-4260-a8a6-2d2b56173645", + "Name": "FP_1_17" + }, + "e27313d9-a024-4d02-a5c9-e83477d0db3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e27313d9-a024-4d02-a5c9-e83477d0db3f", + "Name": "FG_1_17" + }, + "ede1f5a4-1af2-4dbe-a3d1-aea74a0b01cc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ede1f5a4-1af2-4dbe-a3d1-aea74a0b01cc", + "Name": null + }, + "839093fa-79a1-4bb2-b47e-80b31e669032": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 29.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ede1f5a4-1af2-4dbe-a3d1-aea74a0b01cc", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "839093fa-79a1-4bb2-b47e-80b31e669032", + "Name": "FP_1_18" + }, + "be847250-9c1a-4719-a377-a33f8ab5d42b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "be847250-9c1a-4719-a377-a33f8ab5d42b", + "Name": null + }, + "42eb2824-6fb3-4328-9cfa-8d1610e2a3a4": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "be847250-9c1a-4719-a377-a33f8ab5d42b", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42eb2824-6fb3-4328-9cfa-8d1610e2a3a4", + "Name": "FP_1_0" + }, + "4a183951-1962-478d-869b-60bbf6ecd5a0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "4a183951-1962-478d-869b-60bbf6ecd5a0", + "Name": null + }, + "3d4426ba-b64e-45cf-aec7-1176c3c98719": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4a183951-1962-478d-869b-60bbf6ecd5a0", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Name": "FP_1" + }, + "3ef6d442-9d82-4633-a4a5-1036eacb1c59": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Name": null + }, + "e98862d8-9444-4af2-b75f-ffd8a4661abe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e98862d8-9444-4af2-b75f-ffd8a4661abe", + "Name": "FP_1_1" + }, + "74f8d08d-3812-4d50-b0b9-4d1860ed7f9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "74f8d08d-3812-4d50-b0b9-4d1860ed7f9f", + "Name": "FG_1_1" + }, + "268c9ed9-5798-4e55-b6fd-36f4fd41aff2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "268c9ed9-5798-4e55-b6fd-36f4fd41aff2", + "Name": "FP_1_2" + }, + "dec24cb8-ce3c-49ab-9b79-0a178a77ad00": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "dec24cb8-ce3c-49ab-9b79-0a178a77ad00", + "Name": "FG_1_2" + }, + "1e778c9b-3670-4fa8-b603-d98cc9fa1699": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1e778c9b-3670-4fa8-b603-d98cc9fa1699", + "Name": "FP_1_3" + }, + "f055eff3-d0a4-4ce7-90ac-5133712bd288": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f055eff3-d0a4-4ce7-90ac-5133712bd288", + "Name": "FG_1_3" + }, + "3fe77381-f738-45a2-8954-b5bb25dee64e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3fe77381-f738-45a2-8954-b5bb25dee64e", + "Name": "FP_1_4" + }, + "092af80a-0134-495d-870e-b9ccf99b84b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "092af80a-0134-495d-870e-b9ccf99b84b1", + "Name": "FG_1_4" + }, + "e1a7c69e-cb72-4a0e-a543-a8f4617adfd1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e1a7c69e-cb72-4a0e-a543-a8f4617adfd1", + "Name": "FP_1_5" + }, + "f3ddc507-f3f2-4d51-996c-ba170ca9bc68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f3ddc507-f3f2-4d51-996c-ba170ca9bc68", + "Name": "FG_1_5" + }, + "f39905ef-3722-46b8-bc48-3364b5238df6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f39905ef-3722-46b8-bc48-3364b5238df6", + "Name": "FP_1_6" + }, + "03690d8a-aa6b-494c-9724-697e335d3633": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "03690d8a-aa6b-494c-9724-697e335d3633", + "Name": "FG_1_6" + }, + "095161c4-af60-4037-886f-d524c88cd3ac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "095161c4-af60-4037-886f-d524c88cd3ac", + "Name": "FP_1_7" + }, + "aa006dc7-5af9-4e8e-92e7-fc0485426c83": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "aa006dc7-5af9-4e8e-92e7-fc0485426c83", + "Name": "FG_1_7" + }, + "c65253c8-7e15-470c-8fe5-4546b68d97c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c65253c8-7e15-470c-8fe5-4546b68d97c5", + "Name": "FP_1_8" + }, + "a35e3f90-89d5-4e8f-ba7c-d1278b3c9d4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a35e3f90-89d5-4e8f-ba7c-d1278b3c9d4a", + "Name": "FG_1_8" + }, + "9c554f8e-83d5-4e68-97d3-28e1dac678f0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9c554f8e-83d5-4e68-97d3-28e1dac678f0", + "Name": "FP_1_9" + }, + "f3fd129f-a763-49b6-ab3f-c8a8ad5a74bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f3fd129f-a763-49b6-ab3f-c8a8ad5a74bb", + "Name": "FG_1_9" + }, + "b30088c5-18c2-4f31-893f-62096f57f4d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b30088c5-18c2-4f31-893f-62096f57f4d9", + "Name": "FP_1_10" + }, + "30ff4c33-14a0-4cac-a4ba-6264ccab4090": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "30ff4c33-14a0-4cac-a4ba-6264ccab4090", + "Name": "FG_1_10" + }, + "90e07bf5-4d42-4f82-bbcf-8962234f0367": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "90e07bf5-4d42-4f82-bbcf-8962234f0367", + "Name": "FP_1_11" + }, + "3f9c5ea8-0eef-42b5-8051-ac606d0374aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3f9c5ea8-0eef-42b5-8051-ac606d0374aa", + "Name": "FG_1_11" + }, + "107d58a9-3a5b-4fa4-b8c5-ce4270a1e739": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "107d58a9-3a5b-4fa4-b8c5-ce4270a1e739", + "Name": "FP_1_12" + }, + "52f5f081-f188-4fc6-986f-8352469fe346": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "52f5f081-f188-4fc6-986f-8352469fe346", + "Name": "FG_1_12" + }, + "99f2f5e1-3e9a-49e0-a61b-5a777b3294c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "99f2f5e1-3e9a-49e0-a61b-5a777b3294c3", + "Name": "FP_1_13" + }, + "1f10033d-8be2-415d-9ca8-98b92dafd859": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1f10033d-8be2-415d-9ca8-98b92dafd859", + "Name": "FG_1_13" + }, + "336cc1f8-a0ab-44a8-8968-8195d844c396": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "336cc1f8-a0ab-44a8-8968-8195d844c396", + "Name": "FP_1_14" + }, + "40d5641f-0600-4ad8-8b7f-65cc12db4d2c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "40d5641f-0600-4ad8-8b7f-65cc12db4d2c", + "Name": "FG_1_14" + }, + "4f861061-cd6b-4957-8726-4e038c6e663a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4f861061-cd6b-4957-8726-4e038c6e663a", + "Name": "FP_1_15" + }, + "83f465f9-9ff5-4607-bee8-9f7c57f78ee6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "83f465f9-9ff5-4607-bee8-9f7c57f78ee6", + "Name": "FG_1_15" + }, + "30bf048f-80f3-4a45-8055-49176397188a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "30bf048f-80f3-4a45-8055-49176397188a", + "Name": "FP_1_16" + }, + "8ac79010-6df0-4212-b174-9a5928651ee2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8ac79010-6df0-4212-b174-9a5928651ee2", + "Name": "FG_1_16" + }, + "87e78028-232e-4839-8c8a-d09b0f30bc81": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "87e78028-232e-4839-8c8a-d09b0f30bc81", + "Name": "FP_1_17" + }, + "233cbfe1-540c-41bb-b948-bf823e73f636": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "233cbfe1-540c-41bb-b948-bf823e73f636", + "Name": "FG_1_17" + }, + "5342297d-7ade-4b3a-b780-3f53cbea1e5b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5342297d-7ade-4b3a-b780-3f53cbea1e5b", + "Name": null + }, + "076a535e-d209-4cb0-b3f1-162cb08aab66": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -30.549999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5342297d-7ade-4b3a-b780-3f53cbea1e5b", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "076a535e-d209-4cb0-b3f1-162cb08aab66", + "Name": "FP_1_18" + }, + "4e8b2071-9d49-47c8-832b-48df23a28b1d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386746, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386746, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4e8b2071-9d49-47c8-832b-48df23a28b1d", + "Name": null + }, + "b456aeb6-7a4e-4fa9-8f18-1e7913ce8f7d": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 30.0, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -30.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4e8b2071-9d49-47c8-832b-48df23a28b1d", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b456aeb6-7a4e-4fa9-8f18-1e7913ce8f7d", + "Name": "FP_1_0" + }, + "5c514df7-2877-4f81-8898-f429342f589c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "5c514df7-2877-4f81-8898-f429342f589c", + "Name": null + }, + "39012c42-5bc1-4f70-8625-fbcb6ded8b43": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5c514df7-2877-4f81-8898-f429342f589c", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Name": "FP_1" + }, + "4532e939-5a9b-45a7-962e-faee9617610a": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "4532e939-5a9b-45a7-962e-faee9617610a", + "Name": null + }, + "497ccd33-e3ec-471c-a0a1-aa5405183cdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "497ccd33-e3ec-471c-a0a1-aa5405183cdf", + "Name": "FP_1_1" + }, + "6be12d68-5c5f-4582-b0a2-ccc388149ab0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6be12d68-5c5f-4582-b0a2-ccc388149ab0", + "Name": "FG_1_1" + }, + "4b66d4e4-c76c-4a45-be6e-4a3ec435ecc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4b66d4e4-c76c-4a45-be6e-4a3ec435ecc0", + "Name": "FP_1_2" + }, + "548bc86b-6132-4298-bf9f-e159d1e9a226": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "548bc86b-6132-4298-bf9f-e159d1e9a226", + "Name": "FG_1_2" + }, + "24286e57-95dc-4fea-8d12-b68b15a67d53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "24286e57-95dc-4fea-8d12-b68b15a67d53", + "Name": "FP_1_3" + }, + "9de1ff26-46ab-44cf-b7ab-b6816257f357": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9de1ff26-46ab-44cf-b7ab-b6816257f357", + "Name": "FG_1_3" + }, + "a7ae8722-317e-460a-a4fd-6025acc2f39b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a7ae8722-317e-460a-a4fd-6025acc2f39b", + "Name": "FP_1_4" + }, + "975397a0-a0d6-4e6e-bcb9-c237b55f0e5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "975397a0-a0d6-4e6e-bcb9-c237b55f0e5a", + "Name": "FG_1_4" + }, + "11227235-5570-4fd0-ad43-418dcb5d4e13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "11227235-5570-4fd0-ad43-418dcb5d4e13", + "Name": "FP_1_5" + }, + "e6cd6743-d143-450c-b24c-a8fa110173cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e6cd6743-d143-450c-b24c-a8fa110173cb", + "Name": "FG_1_5" + }, + "b866d391-759a-4107-bce1-6690074ec0f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b866d391-759a-4107-bce1-6690074ec0f8", + "Name": "FP_1_6" + }, + "300ce9a2-bf2c-480d-bf8c-8a77e252e186": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "300ce9a2-bf2c-480d-bf8c-8a77e252e186", + "Name": "FG_1_6" + }, + "73298113-cc50-4969-b10d-f4c5152e4699": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "73298113-cc50-4969-b10d-f4c5152e4699", + "Name": "FP_1_7" + }, + "2834b881-cd36-4f9d-b13e-6fc91fb85f9e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2834b881-cd36-4f9d-b13e-6fc91fb85f9e", + "Name": "FG_1_7" + }, + "8dee3b31-1721-4446-86e9-3c41e340e591": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8dee3b31-1721-4446-86e9-3c41e340e591", + "Name": "FP_1_8" + }, + "e58885fa-0c0d-42ff-8b37-6e342b6c6fb9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e58885fa-0c0d-42ff-8b37-6e342b6c6fb9", + "Name": "FG_1_8" + }, + "7b1d5343-c925-4d18-a17a-e80c23a866d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7b1d5343-c925-4d18-a17a-e80c23a866d7", + "Name": "FP_1_9" + }, + "50a33b6c-ce11-472c-97ce-a5af939dbda2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "50a33b6c-ce11-472c-97ce-a5af939dbda2", + "Name": "FG_1_9" + }, + "baebb40e-2c09-47e6-ba1e-8ac32c73af3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "baebb40e-2c09-47e6-ba1e-8ac32c73af3c", + "Name": "FP_1_10" + }, + "b0371fad-0ea4-4217-8ec7-dd3b6e0b7e38": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b0371fad-0ea4-4217-8ec7-dd3b6e0b7e38", + "Name": "FG_1_10" + }, + "803446b8-ae2e-4a09-aa30-5bfd1ea08be3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "803446b8-ae2e-4a09-aa30-5bfd1ea08be3", + "Name": "FP_1_11" + }, + "aadd6695-e3db-462e-92ed-888e1679eebe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "aadd6695-e3db-462e-92ed-888e1679eebe", + "Name": "FG_1_11" + }, + "20d8c796-b95a-41ae-a5db-9fd43cb65f6c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "20d8c796-b95a-41ae-a5db-9fd43cb65f6c", + "Name": "FP_1_12" + }, + "ba4be1b4-d4ae-405d-bbb1-3bdc7f6dc3fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ba4be1b4-d4ae-405d-bbb1-3bdc7f6dc3fc", + "Name": "FG_1_12" + }, + "90abec15-2def-41f0-989e-a242b9690ad7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "90abec15-2def-41f0-989e-a242b9690ad7", + "Name": "FP_1_13" + }, + "6702c390-470f-47bb-9a8b-b47baefdb2a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6702c390-470f-47bb-9a8b-b47baefdb2a2", + "Name": "FG_1_13" + }, + "26401f21-9651-4cc3-bba2-7c5c689fb2ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "26401f21-9651-4cc3-bba2-7c5c689fb2ce", + "Name": "FP_1_14" + }, + "a83f44d3-feee-4170-9871-6f83b6a4ca81": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a83f44d3-feee-4170-9871-6f83b6a4ca81", + "Name": "FG_1_14" + }, + "e7b6ab3d-78f4-420e-a870-cb4b197cdc90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e7b6ab3d-78f4-420e-a870-cb4b197cdc90", + "Name": "FP_1_15" + }, + "5f8b02c4-8a49-40dc-a51e-b24ca53a814d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5f8b02c4-8a49-40dc-a51e-b24ca53a814d", + "Name": "FG_1_15" + }, + "402d5f7d-e526-40ad-9db8-bab722d27269": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "402d5f7d-e526-40ad-9db8-bab722d27269", + "Name": "FP_1_16" + }, + "c6c2be81-0564-4fd6-80ff-0ff5d0e8da91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c6c2be81-0564-4fd6-80ff-0ff5d0e8da91", + "Name": "FG_1_16" + }, + "7e24dfad-68af-4ef0-a804-3181c109eb3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7e24dfad-68af-4ef0-a804-3181c109eb3f", + "Name": "FP_1_17" + }, + "b6f98dda-d0e0-4afa-a7ba-d514be6f591d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b6f98dda-d0e0-4afa-a7ba-d514be6f591d", + "Name": "FG_1_17" + }, + "b68539ce-86ce-40c8-9d01-480a870a8e7a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b68539ce-86ce-40c8-9d01-480a870a8e7a", + "Name": "FP_1_18" + }, + "f8b1b3a7-880f-47ad-b602-3a32d7178469": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f8b1b3a7-880f-47ad-b602-3a32d7178469", + "Name": "FG_1_18" + }, + "f10be33a-e74d-4d2e-931d-d85415d20d27": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f10be33a-e74d-4d2e-931d-d85415d20d27", + "Name": "FP_1_19" + }, + "889b9025-5338-416b-8072-b48ab0efe083": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "889b9025-5338-416b-8072-b48ab0efe083", + "Name": "FG_1_19" + }, + "acb36dfe-8e4c-4431-97fb-2eb4419550f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "acb36dfe-8e4c-4431-97fb-2eb4419550f4", + "Name": "FP_1_20" + }, + "40179770-f1d5-4869-834b-2e3095300f60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "40179770-f1d5-4869-834b-2e3095300f60", + "Name": "FG_1_20" + }, + "4a2933c0-d3c3-4544-b6dd-f2ff54491dbc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4a2933c0-d3c3-4544-b6dd-f2ff54491dbc", + "Name": "FP_1_21" + }, + "a77a4234-be74-4d21-a884-284dc8e782a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a77a4234-be74-4d21-a884-284dc8e782a4", + "Name": "FG_1_21" + }, + "3e2bed90-fa20-4fa2-ad1e-78da208fb6da": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386497, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386497, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3e2bed90-fa20-4fa2-ad1e-78da208fb6da", + "Name": null + }, + "57d67d71-82c8-4069-99a4-5af2a2a6e5aa": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 10.09860149737966, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -0.14790224606948854, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3e2bed90-fa20-4fa2-ad1e-78da208fb6da", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "57d67d71-82c8-4069-99a4-5af2a2a6e5aa", + "Name": "FP_1_22" + }, + "7f55ecce-2d3c-43c1-8008-81bd5c2e98e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7f55ecce-2d3c-43c1-8008-81bd5c2e98e7", + "Name": null + }, + "be6e4ebf-ff7d-4543-8feb-4d2b990338c3": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 10.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7f55ecce-2d3c-43c1-8008-81bd5c2e98e7", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "be6e4ebf-ff7d-4543-8feb-4d2b990338c3", + "Name": "FP_1_0" + }, + "60d4c307-dd35-4b33-b1e2-f4dba17a6ce7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "60d4c307-dd35-4b33-b1e2-f4dba17a6ce7", + "Name": null + }, + "f9f98ec1-f9db-43e9-98a9-614f21463575": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "60d4c307-dd35-4b33-b1e2-f4dba17a6ce7", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Name": "FP_1" + }, + "3c6a7973-c49e-4a15-8609-ea146c9713a4": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Name": null + }, + "a94c5fe3-a7a8-43d3-89b1-9c409a290aa3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a94c5fe3-a7a8-43d3-89b1-9c409a290aa3", + "Name": "FP_1_1" + }, + "55745c7a-5a9f-47fd-9d5f-75967d1f448a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "55745c7a-5a9f-47fd-9d5f-75967d1f448a", + "Name": "FG_1_1" + }, + "688f4a12-e8d6-45a2-935c-cfafb2759437": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "688f4a12-e8d6-45a2-935c-cfafb2759437", + "Name": "FP_1_2" + }, + "6506feaf-cf93-4f3a-a562-d09002760e59": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6506feaf-cf93-4f3a-a562-d09002760e59", + "Name": "FG_1_2" + }, + "1d4122bb-1e07-46e3-beaa-fdb079e59c61": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1d4122bb-1e07-46e3-beaa-fdb079e59c61", + "Name": "FP_1_3" + }, + "13181a29-3837-45b4-94ed-10a42deb744f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "13181a29-3837-45b4-94ed-10a42deb744f", + "Name": "FG_1_3" + }, + "c4648627-428d-4c43-8d69-4b2b23a05d3e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c4648627-428d-4c43-8d69-4b2b23a05d3e", + "Name": "FP_1_4" + }, + "464a5ddf-7f2e-4293-ba7d-680f50359ec6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "464a5ddf-7f2e-4293-ba7d-680f50359ec6", + "Name": "FG_1_4" + }, + "2fd955b9-6626-4474-93fe-3addd165fc57": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2fd955b9-6626-4474-93fe-3addd165fc57", + "Name": "FP_1_5" + }, + "d6336dfc-5372-4f96-824a-86ec24d0967d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "d6336dfc-5372-4f96-824a-86ec24d0967d", + "Name": "FG_1_5" + }, + "d85420a1-1ef7-40e3-8965-e57e41550732": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d85420a1-1ef7-40e3-8965-e57e41550732", + "Name": null + }, + "43f4ee8d-6071-4b78-8060-c9de6b4837a5": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 0.75, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d85420a1-1ef7-40e3-8965-e57e41550732", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "43f4ee8d-6071-4b78-8060-c9de6b4837a5", + "Name": "FP_1_6" + }, + "6b1acc50-fad0-4260-998a-c204920346cc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.000647985949743371, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.000647985949743371, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6b1acc50-fad0-4260-998a-c204920346cc", + "Name": null + }, + "69f0488a-1062-429c-9240-dd95b9f4b143": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + 0.0, + -1.0, + 0.0, + 1.7763568394002506E-16, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6b1acc50-fad0-4260-998a-c204920346cc", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "69f0488a-1062-429c-9240-dd95b9f4b143", + "Name": "FP_1_0" + }, + "731d5a08-a7cc-48ab-a189-b62fff7f4372": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "731d5a08-a7cc-48ab-a189-b62fff7f4372", + "Name": null + }, + "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "731d5a08-a7cc-48ab-a189-b62fff7f4372", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Name": "FP_1" + }, + "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Name": null + }, + "4a4224ce-e3c3-485c-bc47-472c195332f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4a4224ce-e3c3-485c-bc47-472c195332f1", + "Name": "FP_1_1" + }, + "69c627fd-2df9-4f8c-af8e-386f12c1c187": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "69c627fd-2df9-4f8c-af8e-386f12c1c187", + "Name": "FG_1_1" + }, + "069f51b4-96ae-498e-9e52-cffdca9b91ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "069f51b4-96ae-498e-9e52-cffdca9b91ab", + "Name": "FP_1_2" + }, + "94231bed-f7b8-48ff-9185-fd27cd846f0d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "94231bed-f7b8-48ff-9185-fd27cd846f0d", + "Name": "FG_1_2" + }, + "93f7bf84-8de6-4718-84c3-ab59740b84f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "93f7bf84-8de6-4718-84c3-ab59740b84f7", + "Name": "FP_1_3" + }, + "4750fb32-269e-4e01-a823-d93393776ddb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4750fb32-269e-4e01-a823-d93393776ddb", + "Name": "FG_1_3" + }, + "fcca5bb5-5296-4c1b-bbd7-6c441738f0dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "fcca5bb5-5296-4c1b-bbd7-6c441738f0dd", + "Name": "FP_1_4" + }, + "e538a2c1-9c02-4645-8230-0561ce16a5d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e538a2c1-9c02-4645-8230-0561ce16a5d8", + "Name": "FG_1_4" + }, + "23e9f34f-b764-4443-a37b-66f787d5073b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "23e9f34f-b764-4443-a37b-66f787d5073b", + "Name": "FP_1_5" + }, + "c018f5ce-0bb2-421e-b4dd-e1f08b582780": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c018f5ce-0bb2-421e-b4dd-e1f08b582780", + "Name": "FG_1_5" + }, + "0cc6f802-51cb-4a76-aec1-5fd4d96d2a23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "0cc6f802-51cb-4a76-aec1-5fd4d96d2a23", + "Name": "FP_1_6" + }, + "354104cd-9ef9-4288-a0eb-8df53fabcc22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "354104cd-9ef9-4288-a0eb-8df53fabcc22", + "Name": "FG_1_6" + }, + "edb2576d-f19d-464f-89f6-317101ca6bd8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "edb2576d-f19d-464f-89f6-317101ca6bd8", + "Name": "FP_1_7" + }, + "b322d77b-6437-40cd-8fea-50de582db7a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b322d77b-6437-40cd-8fea-50de582db7a5", + "Name": "FG_1_7" + }, + "2317ff04-c481-4c72-8771-4decbaeb5c34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2317ff04-c481-4c72-8771-4decbaeb5c34", + "Name": "FP_1_8" + }, + "26204908-e1c3-4aab-8b05-6b9739dfd833": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "26204908-e1c3-4aab-8b05-6b9739dfd833", + "Name": "FG_1_8" + }, + "f1aceed9-a325-44a1-b534-c8836e3caddb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f1aceed9-a325-44a1-b534-c8836e3caddb", + "Name": "FP_1_9" + }, + "3bf5bd9c-ea84-4709-af7a-04499b2cba89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3bf5bd9c-ea84-4709-af7a-04499b2cba89", + "Name": "FG_1_9" + }, + "7921389d-debe-481e-95bc-772f177510e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7921389d-debe-481e-95bc-772f177510e2", + "Name": "FP_1_10" + }, + "c4e66a6c-3450-4fa3-a8da-f45dd8288ba3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c4e66a6c-3450-4fa3-a8da-f45dd8288ba3", + "Name": "FG_1_10" + }, + "6e1f8143-a865-4c5b-a359-6385f55f5eb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6e1f8143-a865-4c5b-a359-6385f55f5eb0", + "Name": "FP_1_11" + }, + "0977783f-83ee-4c7e-9003-09af57c10d3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "0977783f-83ee-4c7e-9003-09af57c10d3c", + "Name": "FG_1_11" + }, + "6df3b335-1bfb-4471-be77-bbc2357be886": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6df3b335-1bfb-4471-be77-bbc2357be886", + "Name": "FP_1_12" + }, + "04701e0e-fd12-40cf-bdcd-208be22cb649": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "04701e0e-fd12-40cf-bdcd-208be22cb649", + "Name": "FG_1_12" + }, + "a5bc91d9-f060-4381-912e-52fe44202fbd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a5bc91d9-f060-4381-912e-52fe44202fbd", + "Name": "FP_1_13" + }, + "6f200b4f-3651-4634-beb4-a13b88c7c4d0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6f200b4f-3651-4634-beb4-a13b88c7c4d0", + "Name": "FG_1_13" + }, + "6d084be9-2569-4742-b05f-5305e65578be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6d084be9-2569-4742-b05f-5305e65578be", + "Name": "FP_1_14" + }, + "4256e695-b27a-437e-8554-d73975983775": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4256e695-b27a-437e-8554-d73975983775", + "Name": "FG_1_14" + }, + "013b4532-cc0f-40dc-97be-12ff2b42ca7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "013b4532-cc0f-40dc-97be-12ff2b42ca7d", + "Name": "FP_1_15" + }, + "7758587e-29a1-4790-a4cf-d7e7143fec43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7758587e-29a1-4790-a4cf-d7e7143fec43", + "Name": "FG_1_15" + }, + "2fbdf74f-8352-4b2b-965a-4669860e8fd4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2fbdf74f-8352-4b2b-965a-4669860e8fd4", + "Name": "FP_1_16" + }, + "5641bb5b-054c-48d4-9251-332e4bc13ff1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5641bb5b-054c-48d4-9251-332e4bc13ff1", + "Name": "FG_1_16" + }, + "37827eb9-d3a5-42f9-9b01-6c456ceac0a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "37827eb9-d3a5-42f9-9b01-6c456ceac0a8", + "Name": "FP_1_17" + }, + "680a933d-18d7-4939-bb02-dfab07636bc6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "680a933d-18d7-4939-bb02-dfab07636bc6", + "Name": "FG_1_17" + }, + "6e90f972-a86d-485c-b633-d67cba3c902e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6e90f972-a86d-485c-b633-d67cba3c902e", + "Name": "FP_1_18" + }, + "8170b21c-9b2c-48a7-ac01-796c7a6a6a85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8170b21c-9b2c-48a7-ac01-796c7a6a6a85", + "Name": "FG_1_18" + }, + "2a8adb55-5ea5-4007-b41f-1164a7bf00ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2a8adb55-5ea5-4007-b41f-1164a7bf00ee", + "Name": "FP_1_19" + }, + "3109882c-9b5e-41a7-8efb-0d53bf4d8c55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3109882c-9b5e-41a7-8efb-0d53bf4d8c55", + "Name": "FG_1_19" + }, + "bc7e7f71-7e5c-4ce6-9f81-830c88ce1daf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "bc7e7f71-7e5c-4ce6-9f81-830c88ce1daf", + "Name": "FP_1_20" + }, + "f35b7ffc-6523-423f-8ee1-dc28157ed920": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f35b7ffc-6523-423f-8ee1-dc28157ed920", + "Name": "FG_1_20" + }, + "5034ee3f-7667-4e95-87cf-c82b0b3dcbd1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5034ee3f-7667-4e95-87cf-c82b0b3dcbd1", + "Name": "FP_1_21" + }, + "729b19e6-f632-4307-9889-0e8861ae4245": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "729b19e6-f632-4307-9889-0e8861ae4245", + "Name": "FG_1_21" + }, + "9de58134-021d-41ae-83c3-2932bd0c9c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9de58134-021d-41ae-83c3-2932bd0c9c70", + "Name": "FP_1_22" + }, + "383abfbf-5804-4747-b3c9-0b2cf607d1ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "383abfbf-5804-4747-b3c9-0b2cf607d1ab", + "Name": "FG_1_22" + }, + "214fc868-aa87-4669-886b-269c99d0e8cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "214fc868-aa87-4669-886b-269c99d0e8cc", + "Name": "FP_1_23" + }, + "d1be2a16-4365-48a3-b66f-89de07231523": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "d1be2a16-4365-48a3-b66f-89de07231523", + "Name": "FG_1_23" + }, + "4de5e4d5-5abc-496d-8aea-881d4535732d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4de5e4d5-5abc-496d-8aea-881d4535732d", + "Name": "FP_1_24" + }, + "bf8736f4-b823-4d3e-9f0d-05bc5815c6cf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "bf8736f4-b823-4d3e-9f0d-05bc5815c6cf", + "Name": "FG_1_24" + }, + "de70f610-4de2-4a6e-bc68-b00d4f0a339f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "de70f610-4de2-4a6e-bc68-b00d4f0a339f", + "Name": "FP_1_25" + }, + "5004f665-3a87-4c17-812e-b53f9b95600a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5004f665-3a87-4c17-812e-b53f9b95600a", + "Name": "FG_1_25" + }, + "49dbeddd-bfd7-4a08-96fe-a51cf14366e3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "49dbeddd-bfd7-4a08-96fe-a51cf14366e3", + "Name": "FP_1_26" + }, + "27815117-c9e2-4324-bfdb-ec0fbc01f7d2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "27815117-c9e2-4324-bfdb-ec0fbc01f7d2", + "Name": "FG_1_26" + }, + "7e776a37-50cb-4329-a3bf-2532950c6a62": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7e776a37-50cb-4329-a3bf-2532950c6a62", + "Name": "FP_1_27" + }, + "6027f344-9795-44db-b9fd-8fe31ca29e78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6027f344-9795-44db-b9fd-8fe31ca29e78", + "Name": "FG_1_27" + }, + "3717e181-d4f1-4eee-9860-3d8826c330a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3717e181-d4f1-4eee-9860-3d8826c330a1", + "Name": "FP_1_28" + }, + "8162bec4-9f61-4831-ab32-a9eb64e75c02": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8162bec4-9f61-4831-ab32-a9eb64e75c02", + "Name": "FG_1_28" + }, + "3f2276e1-4fef-4911-afcb-d62c13ab9b21": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3f2276e1-4fef-4911-afcb-d62c13ab9b21", + "Name": "FP_1_29" + }, + "b5754ed8-be3a-4d36-ba3a-b42c9790776b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b5754ed8-be3a-4d36-ba3a-b42c9790776b", + "Name": "FG_1_29" + }, + "6b28d318-cb14-4732-95db-5c19bd07d936": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6b28d318-cb14-4732-95db-5c19bd07d936", + "Name": "FP_1_30" + }, + "ff081706-e3dc-404a-8137-7a56bef8792c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ff081706-e3dc-404a-8137-7a56bef8792c", + "Name": "FG_1_30" + }, + "039b7970-dd29-43c3-aa21-eaae8590f0ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "039b7970-dd29-43c3-aa21-eaae8590f0ee", + "Name": "FP_1_31" + }, + "5950dd14-34e9-415e-8b96-79ced873e472": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5950dd14-34e9-415e-8b96-79ced873e472", + "Name": "FG_1_31" + }, + "77f1110f-d74e-4445-bb01-e96950f9f8f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "77f1110f-d74e-4445-bb01-e96950f9f8f5", + "Name": "FP_1_32" + }, + "297e1d6e-8f26-475b-82ad-fdddc041bdc3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "297e1d6e-8f26-475b-82ad-fdddc041bdc3", + "Name": "FG_1_32" + }, + "8f6db0b5-4d68-4fb8-ad13-a9e4215fe554": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8f6db0b5-4d68-4fb8-ad13-a9e4215fe554", + "Name": "FP_1_33" + }, + "9cd1297b-287a-4b45-bc79-251432ad3965": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9cd1297b-287a-4b45-bc79-251432ad3965", + "Name": "FG_1_33" + }, + "834cf25b-30a9-4376-addb-5ea2abf19f01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "834cf25b-30a9-4376-addb-5ea2abf19f01", + "Name": "FP_1_34" + }, + "5974d0d4-64bb-4337-ad1a-3f98b88ae660": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5974d0d4-64bb-4337-ad1a-3f98b88ae660", + "Name": "FG_1_34" + }, + "09c04ffc-3894-4027-af41-ed05e3e3c19e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "09c04ffc-3894-4027-af41-ed05e3e3c19e", + "Name": "FP_1_35" + }, + "38781ef3-4380-438c-a868-7fd2cda93b6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "38781ef3-4380-438c-a868-7fd2cda93b6f", + "Name": "FG_1_35" + }, + "81224588-6db2-46bd-8ba2-a323c2236198": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0006479859497433802, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.0006479859497433802, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "81224588-6db2-46bd-8ba2-a323c2236198", + "Name": null + }, + "720aa67e-992c-4d3e-8980-d21ea9ba2dba": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0613732115416497E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -59.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "81224588-6db2-46bd-8ba2-a323c2236198", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "720aa67e-992c-4d3e-8980-d21ea9ba2dba", + "Name": "FP_1_36" + }, + "984168ae-2a16-4813-aec6-d18680900f44": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "984168ae-2a16-4813-aec6-d18680900f44", + "Name": null + }, + "6c9978d1-610d-4c32-b5c0-d3934dd162e4": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + -1.0658141036401503E-14, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "984168ae-2a16-4813-aec6-d18680900f44", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6c9978d1-610d-4c32-b5c0-d3934dd162e4", + "Name": "FP_2_0" + }, + "dad3af59-05ad-4f14-8ea2-5bf09ebf5ee2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "dad3af59-05ad-4f14-8ea2-5bf09ebf5ee2", + "Name": null + }, + "2493d071-c375-4e4d-9ea8-77ad3550bbbb": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "dad3af59-05ad-4f14-8ea2-5bf09ebf5ee2", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Name": "FP_2" + }, + "b4380182-1d7c-44f4-b89d-5fd698316796": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Name": null + }, + "24d9dc86-b0ef-417a-89af-043689d334ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "24d9dc86-b0ef-417a-89af-043689d334ec", + "Name": "FP_2_1" + }, + "63ebb288-bd7d-4ad2-bd85-81d250a666c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "63ebb288-bd7d-4ad2-bd85-81d250a666c4", + "Name": "FG_2_1" + }, + "e207dd3d-5582-4304-86cf-4553b95c6aaf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e207dd3d-5582-4304-86cf-4553b95c6aaf", + "Name": "FP_2_2" + }, + "e3cfb816-3867-45d4-91ff-c9495040bcf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e3cfb816-3867-45d4-91ff-c9495040bcf8", + "Name": "FG_2_2" + }, + "a67de6fc-a798-4e39-bcc3-f3e490066be1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a67de6fc-a798-4e39-bcc3-f3e490066be1", + "Name": "FP_2_3" + }, + "71d27370-4245-4698-8d4c-b93d1e232ee8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "71d27370-4245-4698-8d4c-b93d1e232ee8", + "Name": "FG_2_3" + }, + "50636ece-1934-418d-b302-775c3ef0751b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "50636ece-1934-418d-b302-775c3ef0751b", + "Name": "FP_2_4" + }, + "1f0a637b-5537-4370-a972-501f43e75901": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1f0a637b-5537-4370-a972-501f43e75901", + "Name": "FG_2_4" + }, + "e78b02fa-56f0-4cb7-8480-04d433dfe506": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e78b02fa-56f0-4cb7-8480-04d433dfe506", + "Name": "FP_2_5" + }, + "8a2ddc78-fbe4-47a6-a5b6-db21b624a779": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8a2ddc78-fbe4-47a6-a5b6-db21b624a779", + "Name": "FG_2_5" + }, + "983e6fd0-3a82-416a-93c3-5e5695ffafe5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "983e6fd0-3a82-416a-93c3-5e5695ffafe5", + "Name": "FP_2_6" + }, + "fcd49822-892c-41d8-9b93-ccc9ca42969a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fcd49822-892c-41d8-9b93-ccc9ca42969a", + "Name": "FG_2_6" + }, + "23c9635e-4117-4924-8884-fa07e0306867": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "23c9635e-4117-4924-8884-fa07e0306867", + "Name": "FP_2_7" + }, + "aa6132e2-72ab-4446-ac5f-2109c12ac750": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "aa6132e2-72ab-4446-ac5f-2109c12ac750", + "Name": "FG_2_7" + }, + "5a4bae09-a5e0-4db4-960b-892e164bed33": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5a4bae09-a5e0-4db4-960b-892e164bed33", + "Name": "FP_2_8" + }, + "17559d8f-7d0f-4834-bbc0-08b43ea97476": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "17559d8f-7d0f-4834-bbc0-08b43ea97476", + "Name": "FG_2_8" + }, + "d6f54884-cc69-42b5-87cc-02a1a92eb04f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d6f54884-cc69-42b5-87cc-02a1a92eb04f", + "Name": "FP_2_9" + }, + "6f8be229-4d67-4115-a182-859333bf3df8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6f8be229-4d67-4115-a182-859333bf3df8", + "Name": "FG_2_9" + }, + "71647c92-e787-4f2a-a4a3-1e48f8df6421": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "71647c92-e787-4f2a-a4a3-1e48f8df6421", + "Name": "FP_2_10" + }, + "d056e80e-ef92-478a-9799-266984ffb6b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d056e80e-ef92-478a-9799-266984ffb6b8", + "Name": "FG_2_10" + }, + "8a2c8a26-1626-4201-a413-3c2f32eaa9e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8a2c8a26-1626-4201-a413-3c2f32eaa9e2", + "Name": "FP_2_11" + }, + "af5d7d80-c435-490f-8ead-b860e8ad50de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "af5d7d80-c435-490f-8ead-b860e8ad50de", + "Name": "FG_2_11" + }, + "e6558569-0d9f-4733-a633-568b9dde6557": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e6558569-0d9f-4733-a633-568b9dde6557", + "Name": "FP_2_12" + }, + "7270a52b-74f5-4e2d-ae21-8d2c2fd0c056": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7270a52b-74f5-4e2d-ae21-8d2c2fd0c056", + "Name": "FG_2_12" + }, + "696ebb3b-227b-439a-af4d-9e5b76689a69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "696ebb3b-227b-439a-af4d-9e5b76689a69", + "Name": "FP_2_13" + }, + "e1dcee5a-bcf9-442e-bfe1-a7d0fbe5654c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e1dcee5a-bcf9-442e-bfe1-a7d0fbe5654c", + "Name": "FG_2_13" + }, + "6ba65946-a17c-4ca1-a42f-bd6920636cfa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6ba65946-a17c-4ca1-a42f-bd6920636cfa", + "Name": "FP_2_14" + }, + "8f587de0-85da-43cf-a65a-d4d40dd042cf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8f587de0-85da-43cf-a65a-d4d40dd042cf", + "Name": "FG_2_14" + }, + "9768961a-6d97-4afd-b23f-578d3fb93d47": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9768961a-6d97-4afd-b23f-578d3fb93d47", + "Name": "FP_2_15" + }, + "626686be-f363-45f7-8c47-cbb6b352b108": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "626686be-f363-45f7-8c47-cbb6b352b108", + "Name": "FG_2_15" + }, + "dd3c7179-0c6b-40a5-af75-2c59999f4b4d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "dd3c7179-0c6b-40a5-af75-2c59999f4b4d", + "Name": "FP_2_16" + }, + "fc311eca-e7ed-4964-aa6e-1f7eef27552f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fc311eca-e7ed-4964-aa6e-1f7eef27552f", + "Name": "FG_2_16" + }, + "0f518d98-7c04-496a-8eaf-1de295641453": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0f518d98-7c04-496a-8eaf-1de295641453", + "Name": "FP_2_17" + }, + "424194cb-3634-44b7-bdef-6a79a45bd689": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "424194cb-3634-44b7-bdef-6a79a45bd689", + "Name": "FG_2_17" + }, + "3e1e9c47-1bea-442d-976b-32e3b6a88c96": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3e1e9c47-1bea-442d-976b-32e3b6a88c96", + "Name": null + }, + "ec67f9f7-1899-4de7-a829-56c99ee0857b": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 29.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3e1e9c47-1bea-442d-976b-32e3b6a88c96", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ec67f9f7-1899-4de7-a829-56c99ee0857b", + "Name": "FP_2_18" + }, + "8cc12d50-19b6-4fa0-af3c-0f0c77c9a608": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -59.95, + "Z": 12.2 + }, + { + "X": -1.0658141036401503E-14, + "Y": -59.95, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "8cc12d50-19b6-4fa0-af3c-0f0c77c9a608", + "Name": null + }, + "61dd814b-b856-4871-bac2-2014abd5e3b4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -59.95, + "Z": 12.2 + }, + { + "X": -1.0658141036401503E-14, + "Y": -59.95, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "61dd814b-b856-4871-bac2-2014abd5e3b4", + "Name": null + }, + "a9567ea5-6518-4346-8b7d-f9558e64d746": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 12.2 + }, + "End": { + "X": 30.0, + "Y": -60.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "61dd814b-b856-4871-bac2-2014abd5e3b4", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a9567ea5-6518-4346-8b7d-f9558e64d746", + "Name": null + }, + "f82c1060-dc9b-40ab-90fb-ab5b792b7a83": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f82c1060-dc9b-40ab-90fb-ab5b792b7a83", + "Name": null + }, + "bd78e3ac-914a-427b-adac-754dc2eddb23": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f82c1060-dc9b-40ab-90fb-ab5b792b7a83", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bd78e3ac-914a-427b-adac-754dc2eddb23", + "Name": "FP_2_0" + }, + "b9a96faf-5fe1-453f-96aa-cbb8fa7d0659": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "b9a96faf-5fe1-453f-96aa-cbb8fa7d0659", + "Name": null + }, + "ce3bcb7d-a802-47bf-8004-2bb5276f74d3": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b9a96faf-5fe1-453f-96aa-cbb8fa7d0659", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Name": "FP_2" + }, + "7c0b8a64-4eef-4fdc-be45-d88750a35552": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Name": null + }, + "08c9224c-03bf-4d53-8f98-48b717f3d0c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "08c9224c-03bf-4d53-8f98-48b717f3d0c8", + "Name": "FP_2_1" + }, + "0fc6e093-9903-4e3b-8f2e-714b2facb575": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0fc6e093-9903-4e3b-8f2e-714b2facb575", + "Name": "FG_2_1" + }, + "bacce559-1bfd-4989-91c1-1dff75bc1059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bacce559-1bfd-4989-91c1-1dff75bc1059", + "Name": "FP_2_2" + }, + "f6dca839-0326-4b10-934b-924c394a4335": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f6dca839-0326-4b10-934b-924c394a4335", + "Name": "FG_2_2" + }, + "53cb62b6-2513-434b-b32d-c241839fc198": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "53cb62b6-2513-434b-b32d-c241839fc198", + "Name": "FP_2_3" + }, + "c31c1457-b472-4a51-a968-06447fdffc3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c31c1457-b472-4a51-a968-06447fdffc3c", + "Name": "FG_2_3" + }, + "dc5087e6-3585-4471-a17c-21888d84f0c0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "dc5087e6-3585-4471-a17c-21888d84f0c0", + "Name": "FP_2_4" + }, + "cc08637e-1e2b-4615-859e-9774cd957621": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cc08637e-1e2b-4615-859e-9774cd957621", + "Name": "FG_2_4" + }, + "a4d44235-914f-4400-9cd3-563a2047e77e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a4d44235-914f-4400-9cd3-563a2047e77e", + "Name": "FP_2_5" + }, + "372fb6a3-3e67-4e16-8ee8-04267847564e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "372fb6a3-3e67-4e16-8ee8-04267847564e", + "Name": "FG_2_5" + }, + "2e11a285-40e4-4987-8bd5-a54643d6568d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2e11a285-40e4-4987-8bd5-a54643d6568d", + "Name": "FP_2_6" + }, + "74265940-6770-470c-89d5-59b4a5234baa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "74265940-6770-470c-89d5-59b4a5234baa", + "Name": "FG_2_6" + }, + "bd755f45-5d65-4183-81ef-9c4460ad1d37": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bd755f45-5d65-4183-81ef-9c4460ad1d37", + "Name": "FP_2_7" + }, + "1ae4cccd-35f5-49ab-8c71-d2ac4472edae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1ae4cccd-35f5-49ab-8c71-d2ac4472edae", + "Name": "FG_2_7" + }, + "7878710c-c70c-4923-9763-6dd0a4a8a815": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7878710c-c70c-4923-9763-6dd0a4a8a815", + "Name": "FP_2_8" + }, + "3219160c-7f8c-4705-b147-ef349380fc68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3219160c-7f8c-4705-b147-ef349380fc68", + "Name": "FG_2_8" + }, + "09d2a3b6-0615-4c26-bceb-90a90bf0f898": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "09d2a3b6-0615-4c26-bceb-90a90bf0f898", + "Name": "FP_2_9" + }, + "bd8dcd5d-6671-4484-b55c-cef354f132fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bd8dcd5d-6671-4484-b55c-cef354f132fd", + "Name": "FG_2_9" + }, + "bcc77e77-d1a8-4cf6-8d04-82566af71367": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bcc77e77-d1a8-4cf6-8d04-82566af71367", + "Name": "FP_2_10" + }, + "68a48efd-5a73-4fd0-984b-c9d725824c5f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "68a48efd-5a73-4fd0-984b-c9d725824c5f", + "Name": "FG_2_10" + }, + "85549c70-c73a-4f09-80d2-9052c94fb7cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "85549c70-c73a-4f09-80d2-9052c94fb7cb", + "Name": "FP_2_11" + }, + "6dab55d1-6144-480c-a3cd-77be5725fe2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6dab55d1-6144-480c-a3cd-77be5725fe2e", + "Name": "FG_2_11" + }, + "2ef20f2f-3b43-49cd-92f3-dbbf084ba9a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2ef20f2f-3b43-49cd-92f3-dbbf084ba9a8", + "Name": "FP_2_12" + }, + "97df1c8d-8a9c-430d-a686-bf44b770f7d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "97df1c8d-8a9c-430d-a686-bf44b770f7d6", + "Name": "FG_2_12" + }, + "b721d1d5-9d0d-4148-a7ef-f783d72748f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b721d1d5-9d0d-4148-a7ef-f783d72748f2", + "Name": "FP_2_13" + }, + "be841601-f457-4974-b567-623c67061bbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "be841601-f457-4974-b567-623c67061bbb", + "Name": "FG_2_13" + }, + "757f0655-33d6-415f-ab11-ce3fc35a1194": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "757f0655-33d6-415f-ab11-ce3fc35a1194", + "Name": "FP_2_14" + }, + "07c6a54d-350b-432e-9d3d-bc01b5c8cbd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "07c6a54d-350b-432e-9d3d-bc01b5c8cbd9", + "Name": "FG_2_14" + }, + "f7bab826-c495-4130-a607-f7722520cc3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f7bab826-c495-4130-a607-f7722520cc3b", + "Name": "FP_2_15" + }, + "3527489f-e874-4a03-8769-e5be9dc04116": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3527489f-e874-4a03-8769-e5be9dc04116", + "Name": "FG_2_15" + }, + "6441f1d9-4887-4f63-a4c6-4598acee694b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6441f1d9-4887-4f63-a4c6-4598acee694b", + "Name": "FP_2_16" + }, + "76fada82-d143-426e-ba73-21ccb4f8d576": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "76fada82-d143-426e-ba73-21ccb4f8d576", + "Name": "FG_2_16" + }, + "754c9a76-1092-43c5-82f8-932eba2e1ec0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "754c9a76-1092-43c5-82f8-932eba2e1ec0", + "Name": "FP_2_17" + }, + "d5af1663-e369-4415-9f04-958055fd61e3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d5af1663-e369-4415-9f04-958055fd61e3", + "Name": "FG_2_17" + }, + "45e2bdbd-9e73-4727-b955-2fa1931a4fc9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "45e2bdbd-9e73-4727-b955-2fa1931a4fc9", + "Name": null + }, + "829cf2e3-ba38-4586-ad86-9eb9074aa6e6": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -30.549999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "45e2bdbd-9e73-4727-b955-2fa1931a4fc9", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "829cf2e3-ba38-4586-ad86-9eb9074aa6e6", + "Name": "FP_2_18" + }, + "127ac052-562e-4426-ab9e-5355d52ac176": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.05, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 30.05, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -60.0, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "127ac052-562e-4426-ab9e-5355d52ac176", + "Name": null + }, + "dcdd633f-7026-44fb-b22a-cc91a5a669c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.05, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 30.05, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -60.0, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "dcdd633f-7026-44fb-b22a-cc91a5a669c5", + "Name": null + }, + "a30e4b38-8d72-4c90-91fd-ad7c5537c1a5": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.0, + "Y": -60.0, + "Z": 12.2 + }, + "End": { + "X": 30.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "dcdd633f-7026-44fb-b22a-cc91a5a669c5", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a30e4b38-8d72-4c90-91fd-ad7c5537c1a5", + "Name": null + }, + "2706767b-9a50-4dce-a27b-bfd6eeab47c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386746, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386746, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2706767b-9a50-4dce-a27b-bfd6eeab47c5", + "Name": null + }, + "74838041-141c-495c-9314-34087448a901": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 30.0, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -30.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2706767b-9a50-4dce-a27b-bfd6eeab47c5", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "74838041-141c-495c-9314-34087448a901", + "Name": "FP_2_0" + }, + "da2ff72e-69bb-4ab9-ae79-eaac9e9cd09b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "da2ff72e-69bb-4ab9-ae79-eaac9e9cd09b", + "Name": null + }, + "591e087f-51cd-4fd2-aed2-d98ad5cf8c76": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "da2ff72e-69bb-4ab9-ae79-eaac9e9cd09b", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Name": "FP_2" + }, + "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Name": null + }, + "f65f491c-403f-4b7e-93b2-c808f8183afa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f65f491c-403f-4b7e-93b2-c808f8183afa", + "Name": "FP_2_1" + }, + "7664b42f-fca3-462d-acb7-527acc2f3355": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7664b42f-fca3-462d-acb7-527acc2f3355", + "Name": "FG_2_1" + }, + "c86bcb8b-bfe2-4711-91e4-d154fef3048f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c86bcb8b-bfe2-4711-91e4-d154fef3048f", + "Name": "FP_2_2" + }, + "ac1a1ff4-d732-412f-ad36-90b78c1c2e84": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ac1a1ff4-d732-412f-ad36-90b78c1c2e84", + "Name": "FG_2_2" + }, + "e47d00ca-3ce1-4b3c-9967-16872d3a984a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e47d00ca-3ce1-4b3c-9967-16872d3a984a", + "Name": "FP_2_3" + }, + "483d504c-175c-450d-8ec2-7a91e72800f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "483d504c-175c-450d-8ec2-7a91e72800f1", + "Name": "FG_2_3" + }, + "6b59070c-a6d3-43a5-9e22-3efbe0755593": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6b59070c-a6d3-43a5-9e22-3efbe0755593", + "Name": "FP_2_4" + }, + "d8d165d9-bd17-4846-924f-18549835fc88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d8d165d9-bd17-4846-924f-18549835fc88", + "Name": "FG_2_4" + }, + "eee3c451-53f1-430f-a958-bbf9cd5eca8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "eee3c451-53f1-430f-a958-bbf9cd5eca8e", + "Name": "FP_2_5" + }, + "871b5c80-5ec3-409f-8ec2-c2afa0aa4c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "871b5c80-5ec3-409f-8ec2-c2afa0aa4c70", + "Name": "FG_2_5" + }, + "d06e878f-4cea-48d7-86ee-391efb375de2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d06e878f-4cea-48d7-86ee-391efb375de2", + "Name": "FP_2_6" + }, + "67982918-1f3f-40d6-bacc-fda03a441d2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "67982918-1f3f-40d6-bacc-fda03a441d2f", + "Name": "FG_2_6" + }, + "c122838d-3c79-4ce3-af56-012ce85d277f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c122838d-3c79-4ce3-af56-012ce85d277f", + "Name": "FP_2_7" + }, + "e8432b0d-2f96-41c7-8a50-3022a2ebcab6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e8432b0d-2f96-41c7-8a50-3022a2ebcab6", + "Name": "FG_2_7" + }, + "066cae10-2836-45b8-ae20-2bf6723d0d5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "066cae10-2836-45b8-ae20-2bf6723d0d5d", + "Name": "FP_2_8" + }, + "a86e7979-75dc-441a-a0ac-51bcbf9a1f2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a86e7979-75dc-441a-a0ac-51bcbf9a1f2f", + "Name": "FG_2_8" + }, + "822e3915-4227-4909-8b80-8477f50c0aaf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "822e3915-4227-4909-8b80-8477f50c0aaf", + "Name": "FP_2_9" + }, + "ec488917-56b6-4950-964b-7a366702f7be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ec488917-56b6-4950-964b-7a366702f7be", + "Name": "FG_2_9" + }, + "3c377fab-3ee1-40cb-a757-677fb1b59472": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3c377fab-3ee1-40cb-a757-677fb1b59472", + "Name": "FP_2_10" + }, + "5d47bbab-8081-43f4-a68f-940876a8dae5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5d47bbab-8081-43f4-a68f-940876a8dae5", + "Name": "FG_2_10" + }, + "696c0a48-cf9b-460a-99e2-fee0431cc0ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "696c0a48-cf9b-460a-99e2-fee0431cc0ba", + "Name": "FP_2_11" + }, + "5cb72309-281d-463d-bcd7-004ce8dfdccd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5cb72309-281d-463d-bcd7-004ce8dfdccd", + "Name": "FG_2_11" + }, + "101fdfc7-99bc-46c9-8658-f1a234eb5952": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "101fdfc7-99bc-46c9-8658-f1a234eb5952", + "Name": "FP_2_12" + }, + "e9cc85eb-dda6-4d70-bc02-7af4ec32c945": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e9cc85eb-dda6-4d70-bc02-7af4ec32c945", + "Name": "FG_2_12" + }, + "d40beb6c-c563-4b25-889d-8619416087eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d40beb6c-c563-4b25-889d-8619416087eb", + "Name": "FP_2_13" + }, + "0a182e4b-e87d-481d-92d5-a4415ec70c9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0a182e4b-e87d-481d-92d5-a4415ec70c9f", + "Name": "FG_2_13" + }, + "1b30039a-80f0-415a-8c7a-ffc39edd24cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1b30039a-80f0-415a-8c7a-ffc39edd24cd", + "Name": "FP_2_14" + }, + "fa46b300-c42b-40e9-ab57-b1728ace6b1e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fa46b300-c42b-40e9-ab57-b1728ace6b1e", + "Name": "FG_2_14" + }, + "91fed87a-7af0-43ab-a85c-cb2236fe9f6a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "91fed87a-7af0-43ab-a85c-cb2236fe9f6a", + "Name": "FP_2_15" + }, + "8808b4ad-abe9-42a3-9ad4-f11a560dd0c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8808b4ad-abe9-42a3-9ad4-f11a560dd0c7", + "Name": "FG_2_15" + }, + "9d3f234a-9cc0-4009-a216-0358fa0b6984": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9d3f234a-9cc0-4009-a216-0358fa0b6984", + "Name": "FP_2_16" + }, + "576803ee-1140-4f06-b918-ef27f5e3eb9c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "576803ee-1140-4f06-b918-ef27f5e3eb9c", + "Name": "FG_2_16" + }, + "92f13d74-2f6f-4132-ac5b-f6416b8b3192": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "92f13d74-2f6f-4132-ac5b-f6416b8b3192", + "Name": "FP_2_17" + }, + "cf937e18-444b-45a2-a2d9-d749f44dd798": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cf937e18-444b-45a2-a2d9-d749f44dd798", + "Name": "FG_2_17" + }, + "31f2e7f4-9f0b-4247-86af-7989ecf94b33": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "31f2e7f4-9f0b-4247-86af-7989ecf94b33", + "Name": "FP_2_18" + }, + "8dd7d0ac-6fc7-4600-b999-d0ca13abe64c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8dd7d0ac-6fc7-4600-b999-d0ca13abe64c", + "Name": "FG_2_18" + }, + "4903c03f-c787-495e-b077-592803604a78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "4903c03f-c787-495e-b077-592803604a78", + "Name": "FP_2_19" + }, + "50abdf88-9ff5-454b-8f1c-0b8b2c2d70fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "50abdf88-9ff5-454b-8f1c-0b8b2c2d70fc", + "Name": "FG_2_19" + }, + "968abe86-708b-487c-b07d-78b8ce52d6f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "968abe86-708b-487c-b07d-78b8ce52d6f8", + "Name": "FP_2_20" + }, + "015970e8-a22a-4db0-a72b-3538ab38b3e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "015970e8-a22a-4db0-a72b-3538ab38b3e2", + "Name": "FG_2_20" + }, + "047efc0d-2de8-41c8-ab4a-a3aad98010d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "047efc0d-2de8-41c8-ab4a-a3aad98010d6", + "Name": "FP_2_21" + }, + "77520ac6-5f67-4c0b-bf93-3a6ffbb6bbae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "77520ac6-5f67-4c0b-bf93-3a6ffbb6bbae", + "Name": "FG_2_21" + }, + "489da548-3960-4d52-aa6b-aefb71a5daee": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386497, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386497, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "489da548-3960-4d52-aa6b-aefb71a5daee", + "Name": null + }, + "f36bf8c8-3804-4478-b942-cf1fc5e8b30b": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 10.09860149737966, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -0.14790224606948854, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "489da548-3960-4d52-aa6b-aefb71a5daee", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f36bf8c8-3804-4478-b942-cf1fc5e8b30b", + "Name": "FP_2_22" + }, + "82ddbd1b-03f1-4e88-8651-8ae795b8251f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.041602514716892, + "Y": -29.972264990188737, + "Z": 12.2 + }, + { + "X": 10.041602514716892, + "Y": 0.02773500981126146, + "Z": 12.2 + }, + { + "X": 9.958397485283108, + "Y": -0.02773500981126146, + "Z": 12.2 + }, + { + "X": 29.958397485283108, + "Y": -30.027735009811263, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "82ddbd1b-03f1-4e88-8651-8ae795b8251f", + "Name": null + }, + "239576d7-74bc-4dc2-a0e1-5cca752035c1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.041602514716892, + "Y": -29.972264990188737, + "Z": 12.2 + }, + { + "X": 10.041602514716892, + "Y": 0.02773500981126146, + "Z": 12.2 + }, + { + "X": 9.958397485283108, + "Y": -0.02773500981126146, + "Z": 12.2 + }, + { + "X": 29.958397485283108, + "Y": -30.027735009811263, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "239576d7-74bc-4dc2-a0e1-5cca752035c1", + "Name": null + }, + "9f386381-7c8b-4165-b28d-6301c2ecdd9b": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 10.0, + "Y": 0.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "239576d7-74bc-4dc2-a0e1-5cca752035c1", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9f386381-7c8b-4165-b28d-6301c2ecdd9b", + "Name": null + }, + "79977681-802b-4a15-a1dc-096f980cb3cc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "79977681-802b-4a15-a1dc-096f980cb3cc", + "Name": null + }, + "8bddb413-9f4c-47c8-ac42-927f78558e7f": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 10.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "79977681-802b-4a15-a1dc-096f980cb3cc", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8bddb413-9f4c-47c8-ac42-927f78558e7f", + "Name": "FP_2_0" + }, + "0ab3322d-2c36-4aa4-9189-eb0c1d60e8b4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "0ab3322d-2c36-4aa4-9189-eb0c1d60e8b4", + "Name": null + }, + "abaaecea-32cf-428f-ab9e-a4ae53a95e0f": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0ab3322d-2c36-4aa4-9189-eb0c1d60e8b4", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Name": "FP_2" + }, + "876b69b9-b9a0-4f8c-aa07-9abf1212de8a": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Name": null + }, + "113037b7-fc1c-4d6d-a6f3-c3bb251d8b00": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "113037b7-fc1c-4d6d-a6f3-c3bb251d8b00", + "Name": "FP_2_1" + }, + "6e5d4c1a-6602-4322-96ae-9323366ac24f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6e5d4c1a-6602-4322-96ae-9323366ac24f", + "Name": "FG_2_1" + }, + "b7bb35c1-3afe-4ec3-8b53-2fd229e2bc07": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b7bb35c1-3afe-4ec3-8b53-2fd229e2bc07", + "Name": "FP_2_2" + }, + "9b46685c-8ba0-42df-912c-d9888a3f5164": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9b46685c-8ba0-42df-912c-d9888a3f5164", + "Name": "FG_2_2" + }, + "0069b164-151f-405c-b49a-8605df4d7c44": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0069b164-151f-405c-b49a-8605df4d7c44", + "Name": "FP_2_3" + }, + "6dcb8e39-0bff-434c-a5f1-79fd5931e6e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6dcb8e39-0bff-434c-a5f1-79fd5931e6e0", + "Name": "FG_2_3" + }, + "23086d3a-e9db-4db0-8bf6-17f79c87d8b6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "23086d3a-e9db-4db0-8bf6-17f79c87d8b6", + "Name": "FP_2_4" + }, + "14d6a916-b23c-48f9-b451-a96e2fb9a9d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "14d6a916-b23c-48f9-b451-a96e2fb9a9d1", + "Name": "FG_2_4" + }, + "2a5f347e-48ca-4b84-9177-66a197870afe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2a5f347e-48ca-4b84-9177-66a197870afe", + "Name": "FP_2_5" + }, + "bf011475-55d3-4d39-891a-3dde8bb91902": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bf011475-55d3-4d39-891a-3dde8bb91902", + "Name": "FG_2_5" + }, + "375bad2e-c3c5-478c-9cdc-8952250c4593": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "375bad2e-c3c5-478c-9cdc-8952250c4593", + "Name": null + }, + "b63a5a73-d436-42ff-9182-ace944459eb0": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 0.75, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "375bad2e-c3c5-478c-9cdc-8952250c4593", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b63a5a73-d436-42ff-9182-ace944459eb0", + "Name": "FP_2_6" + }, + "656564cb-14a9-455c-9135-c7adb0d1e033": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 10.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": -0.05, + "Z": 12.2 + }, + { + "X": 10.0, + "Y": -0.05, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "656564cb-14a9-455c-9135-c7adb0d1e033", + "Name": null + }, + "0e0f96c7-e925-4bf3-b9c1-d4246c3bfc68": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 10.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": -0.05, + "Z": 12.2 + }, + { + "X": 10.0, + "Y": -0.05, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "0e0f96c7-e925-4bf3-b9c1-d4246c3bfc68", + "Name": null + }, + "eea86c1a-b7ff-430e-9837-99716320fbac": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.0, + "Y": 0.0, + "Z": 12.2 + }, + "End": { + "X": 0.0, + "Y": 0.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0e0f96c7-e925-4bf3-b9c1-d4246c3bfc68", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "eea86c1a-b7ff-430e-9837-99716320fbac", + "Name": null + }, + "34f0f88d-ff79-4fd0-b3c9-e5a917df54e1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.000647985949743371, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.000647985949743371, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "34f0f88d-ff79-4fd0-b3c9-e5a917df54e1", + "Name": null + }, + "974a7c17-acab-4194-b3a4-08fdd678aee3": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + 0.0, + -1.0, + 0.0, + 1.7763568394002506E-16, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "34f0f88d-ff79-4fd0-b3c9-e5a917df54e1", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "974a7c17-acab-4194-b3a4-08fdd678aee3", + "Name": "FP_2_0" + }, + "ef243317-f2b5-46ab-bfff-c5528ca81089": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "ef243317-f2b5-46ab-bfff-c5528ca81089", + "Name": null + }, + "08536181-6c6a-4811-bd8c-26e64e079485": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ef243317-f2b5-46ab-bfff-c5528ca81089", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "08536181-6c6a-4811-bd8c-26e64e079485", + "Name": "FP_2" + }, + "b8bb89a8-c302-4c75-ab3e-a1fe29251479": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Name": null + }, + "b1d55d72-1f5b-437a-87fe-318c9cc621c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b1d55d72-1f5b-437a-87fe-318c9cc621c5", + "Name": "FP_2_1" + }, + "f2bd4c07-78c3-49ff-825d-561f16208835": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f2bd4c07-78c3-49ff-825d-561f16208835", + "Name": "FG_2_1" + }, + "e1d84665-102e-47be-a5e4-d55fa4740f85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e1d84665-102e-47be-a5e4-d55fa4740f85", + "Name": "FP_2_2" + }, + "c5054ea4-df91-4232-94dc-1f466c5391ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c5054ea4-df91-4232-94dc-1f466c5391ee", + "Name": "FG_2_2" + }, + "2c653365-7ddc-42a3-9cf5-8a11c047fb88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2c653365-7ddc-42a3-9cf5-8a11c047fb88", + "Name": "FP_2_3" + }, + "60e2ea78-784f-415f-843b-2302bd6c3d0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "60e2ea78-784f-415f-843b-2302bd6c3d0e", + "Name": "FG_2_3" + }, + "3c1c0697-4580-46a4-a0c7-66490b1f1361": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3c1c0697-4580-46a4-a0c7-66490b1f1361", + "Name": "FP_2_4" + }, + "ad4e1c3b-0420-4ccb-a562-3733aad8b4ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ad4e1c3b-0420-4ccb-a562-3733aad8b4ad", + "Name": "FG_2_4" + }, + "32a1eef2-0c7e-45bc-b691-3cba96f8d93b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "32a1eef2-0c7e-45bc-b691-3cba96f8d93b", + "Name": "FP_2_5" + }, + "32ba84d2-8c75-4f51-b5b7-a3b80a639dd8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "32ba84d2-8c75-4f51-b5b7-a3b80a639dd8", + "Name": "FG_2_5" + }, + "51fab152-d6ad-4d9d-8dc3-676938686b2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "51fab152-d6ad-4d9d-8dc3-676938686b2b", + "Name": "FP_2_6" + }, + "a8a36069-ea62-4618-9386-eab3a29da60f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a8a36069-ea62-4618-9386-eab3a29da60f", + "Name": "FG_2_6" + }, + "841e2e97-f1db-4490-a0d6-3e3f80dd0787": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "841e2e97-f1db-4490-a0d6-3e3f80dd0787", + "Name": "FP_2_7" + }, + "2178036f-f8f3-47a7-91cf-5ba253234487": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2178036f-f8f3-47a7-91cf-5ba253234487", + "Name": "FG_2_7" + }, + "6cdd08ab-f483-461a-bcec-f5fded52ed5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6cdd08ab-f483-461a-bcec-f5fded52ed5d", + "Name": "FP_2_8" + }, + "438264af-441b-4764-89de-e972d43c03b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "438264af-441b-4764-89de-e972d43c03b1", + "Name": "FG_2_8" + }, + "49a18462-c5f1-4dcb-a174-adc177f436d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "49a18462-c5f1-4dcb-a174-adc177f436d9", + "Name": "FP_2_9" + }, + "54a76ff6-d47c-4191-8826-0c42345205cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "54a76ff6-d47c-4191-8826-0c42345205cc", + "Name": "FG_2_9" + }, + "847d237b-8697-4bf8-a7b8-7554ba2654c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "847d237b-8697-4bf8-a7b8-7554ba2654c9", + "Name": "FP_2_10" + }, + "419a5e92-9fb0-444d-b8bd-e3bb50865be3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "419a5e92-9fb0-444d-b8bd-e3bb50865be3", + "Name": "FG_2_10" + }, + "beee06eb-82db-40b5-a6d1-8a5cfafbf1d4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "beee06eb-82db-40b5-a6d1-8a5cfafbf1d4", + "Name": "FP_2_11" + }, + "6c74635d-b842-4412-8c6f-27e4fc6284ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6c74635d-b842-4412-8c6f-27e4fc6284ba", + "Name": "FG_2_11" + }, + "13a9ddf9-fafd-4435-9ff1-6e3d0c608066": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "13a9ddf9-fafd-4435-9ff1-6e3d0c608066", + "Name": "FP_2_12" + }, + "30ec85e0-f27a-45ff-b6d7-ffa4fdbf157e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "30ec85e0-f27a-45ff-b6d7-ffa4fdbf157e", + "Name": "FG_2_12" + }, + "7c23bc28-f76a-4a30-958b-26c4def15b2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7c23bc28-f76a-4a30-958b-26c4def15b2e", + "Name": "FP_2_13" + }, + "9cb8a285-85ea-458e-a4a8-ebc29775b051": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9cb8a285-85ea-458e-a4a8-ebc29775b051", + "Name": "FG_2_13" + }, + "c61da45c-2978-4ebc-9c0d-da4b85920219": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c61da45c-2978-4ebc-9c0d-da4b85920219", + "Name": "FP_2_14" + }, + "bbac01b9-d629-42ba-9a26-da7f74c3d996": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bbac01b9-d629-42ba-9a26-da7f74c3d996", + "Name": "FG_2_14" + }, + "fbd61f14-2a8d-4cfa-83a5-8ea35c8ef9f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fbd61f14-2a8d-4cfa-83a5-8ea35c8ef9f2", + "Name": "FP_2_15" + }, + "c736ded5-4360-40fc-9e68-4aa728d7b5c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c736ded5-4360-40fc-9e68-4aa728d7b5c8", + "Name": "FG_2_15" + }, + "0065b147-ae3d-42d2-99db-29c451a5b7b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0065b147-ae3d-42d2-99db-29c451a5b7b4", + "Name": "FP_2_16" + }, + "96fb346c-8aae-4c0b-906b-f6f7fbbd2c09": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "96fb346c-8aae-4c0b-906b-f6f7fbbd2c09", + "Name": "FG_2_16" + }, + "bc67b73e-d55a-499b-a177-e965d700e17c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bc67b73e-d55a-499b-a177-e965d700e17c", + "Name": "FP_2_17" + }, + "665db63a-fed3-467a-83d8-1e9aa160b038": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "665db63a-fed3-467a-83d8-1e9aa160b038", + "Name": "FG_2_17" + }, + "20ccc4be-2e20-4f89-84d5-54495d70f1ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "20ccc4be-2e20-4f89-84d5-54495d70f1ce", + "Name": "FP_2_18" + }, + "950e2c86-8318-4538-aecb-beedfab1d529": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "950e2c86-8318-4538-aecb-beedfab1d529", + "Name": "FG_2_18" + }, + "912c0f6f-371d-45fc-bd4c-bfced1007114": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "912c0f6f-371d-45fc-bd4c-bfced1007114", + "Name": "FP_2_19" + }, + "db9a41a1-0f5e-47d7-9048-3699871976e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "db9a41a1-0f5e-47d7-9048-3699871976e2", + "Name": "FG_2_19" + }, + "be4d4465-9195-4d2c-b001-c6b2c9b5d0dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "be4d4465-9195-4d2c-b001-c6b2c9b5d0dc", + "Name": "FP_2_20" + }, + "95313eca-ed2c-4bb1-b4e8-d4fa7370387a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "95313eca-ed2c-4bb1-b4e8-d4fa7370387a", + "Name": "FG_2_20" + }, + "1cd13070-ec62-4884-a831-45118f2e6b0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1cd13070-ec62-4884-a831-45118f2e6b0e", + "Name": "FP_2_21" + }, + "3be39739-0b8e-40a2-aeed-993a0df93ebc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3be39739-0b8e-40a2-aeed-993a0df93ebc", + "Name": "FG_2_21" + }, + "f1cabba6-8a40-4af3-bfd9-34a6319dffd5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f1cabba6-8a40-4af3-bfd9-34a6319dffd5", + "Name": "FP_2_22" + }, + "1fd1d0ef-56dd-4326-b991-e9c1ecb0d10d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1fd1d0ef-56dd-4326-b991-e9c1ecb0d10d", + "Name": "FG_2_22" + }, + "96c714f4-a381-48f1-a59a-524ccbd54dda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "96c714f4-a381-48f1-a59a-524ccbd54dda", + "Name": "FP_2_23" + }, + "a3012d1e-f1e5-4fe8-91b4-325ee85e7eb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a3012d1e-f1e5-4fe8-91b4-325ee85e7eb7", + "Name": "FG_2_23" + }, + "cfbf602a-04eb-48e4-8e00-1552c63a7399": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cfbf602a-04eb-48e4-8e00-1552c63a7399", + "Name": "FP_2_24" + }, + "dd9ef9ff-4bcb-43ce-bb1d-90ced3ab6c91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "dd9ef9ff-4bcb-43ce-bb1d-90ced3ab6c91", + "Name": "FG_2_24" + }, + "6374bbd1-dbb3-47a4-8932-b53da0013da0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6374bbd1-dbb3-47a4-8932-b53da0013da0", + "Name": "FP_2_25" + }, + "5b64a384-1a36-44d9-8035-a3643e36889c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5b64a384-1a36-44d9-8035-a3643e36889c", + "Name": "FG_2_25" + }, + "25baac25-4efe-4981-a3c1-9c75995b2b03": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "25baac25-4efe-4981-a3c1-9c75995b2b03", + "Name": "FP_2_26" + }, + "6df497f0-e19d-4cb7-be9a-65f7de93e46f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6df497f0-e19d-4cb7-be9a-65f7de93e46f", + "Name": "FG_2_26" + }, + "c26bc564-a14b-4006-82d6-3b6f637d01af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c26bc564-a14b-4006-82d6-3b6f637d01af", + "Name": "FP_2_27" + }, + "e5ed615a-a482-425f-b06e-922bca5fd0fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e5ed615a-a482-425f-b06e-922bca5fd0fc", + "Name": "FG_2_27" + }, + "b0e745dd-bffe-4a0f-89db-209b00ddfa71": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b0e745dd-bffe-4a0f-89db-209b00ddfa71", + "Name": "FP_2_28" + }, + "4eede944-ff83-4bec-b698-6fcd9c2699b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "4eede944-ff83-4bec-b698-6fcd9c2699b1", + "Name": "FG_2_28" + }, + "74aa154b-c1fc-4e8a-9f40-9f023a93c838": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "74aa154b-c1fc-4e8a-9f40-9f023a93c838", + "Name": "FP_2_29" + }, + "cb474f73-1ffc-43e5-a34d-8161e65bbd7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cb474f73-1ffc-43e5-a34d-8161e65bbd7d", + "Name": "FG_2_29" + }, + "69df6c8d-a0f6-426d-8aed-759ee6081cab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "69df6c8d-a0f6-426d-8aed-759ee6081cab", + "Name": "FP_2_30" + }, + "52337a1d-9758-41ec-b005-7573045a3b0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "52337a1d-9758-41ec-b005-7573045a3b0a", + "Name": "FG_2_30" + }, + "6a82aceb-3658-4eaa-8ee5-accdf05bf31d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6a82aceb-3658-4eaa-8ee5-accdf05bf31d", + "Name": "FP_2_31" + }, + "aa3bb25c-1177-40a0-9851-c40dd8cba4ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "aa3bb25c-1177-40a0-9851-c40dd8cba4ec", + "Name": "FG_2_31" + }, + "3b8eda14-9fae-414c-9b03-4bc73e003d43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3b8eda14-9fae-414c-9b03-4bc73e003d43", + "Name": "FP_2_32" + }, + "4b80a2a2-869c-40c2-8a57-0e4aea554e87": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "4b80a2a2-869c-40c2-8a57-0e4aea554e87", + "Name": "FG_2_32" + }, + "73b1e826-6346-4517-a108-82595e931acb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "73b1e826-6346-4517-a108-82595e931acb", + "Name": "FP_2_33" + }, + "ca3cc3e2-35a4-4e79-a700-fb2b847397d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ca3cc3e2-35a4-4e79-a700-fb2b847397d8", + "Name": "FG_2_33" + }, + "a7d63dc3-cd5d-428d-99ad-87c26f93bfbc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a7d63dc3-cd5d-428d-99ad-87c26f93bfbc", + "Name": "FP_2_34" + }, + "c6ac0eeb-12fa-41ae-a16a-d4b7e1b97341": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c6ac0eeb-12fa-41ae-a16a-d4b7e1b97341", + "Name": "FG_2_34" + }, + "69cf00be-24d0-4be1-ab1e-5e2510fbe719": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "69cf00be-24d0-4be1-ab1e-5e2510fbe719", + "Name": "FP_2_35" + }, + "8e8171ea-8497-4df7-927d-d1d4ef11f2a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8e8171ea-8497-4df7-927d-d1d4ef11f2a9", + "Name": "FG_2_35" + }, + "28b083a7-587e-430d-b743-513cc85803bb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0006479859497433802, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.0006479859497433802, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "28b083a7-587e-430d-b743-513cc85803bb", + "Name": null + }, + "0857c85c-c68e-48f6-85aa-15339337b58b": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0613732115416497E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -59.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "28b083a7-587e-430d-b743-513cc85803bb", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0857c85c-c68e-48f6-85aa-15339337b58b", + "Name": "FP_2_36" + }, + "07d9283d-4cf3-43c2-841d-c82dc71d6760": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.05, + "Y": 8.881784197001254E-18, + "Z": 12.2 + }, + { + "X": -0.05000000000001066, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.049999999999989345, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.05, + "Y": -8.881784197001254E-18, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "07d9283d-4cf3-43c2-841d-c82dc71d6760", + "Name": null + }, + "7f810a61-7aa0-4d54-a9e3-a30c0181c9d7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.05, + "Y": 8.881784197001254E-18, + "Z": 12.2 + }, + { + "X": -0.05000000000001066, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.049999999999989345, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.05, + "Y": -8.881784197001254E-18, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "7f810a61-7aa0-4d54-a9e3-a30c0181c9d7", + "Name": null + }, + "072bccf0-7255-4bc6-9fde-abdb3fee8fbd": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 12.2 + }, + "End": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7f810a61-7aa0-4d54-a9e3-a30c0181c9d7", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "072bccf0-7255-4bc6-9fde-abdb3fee8fbd", + "Name": null + }, + "1bc34a74-5aff-4a89-967c-eaaace0b4d50": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1bc34a74-5aff-4a89-967c-eaaace0b4d50", + "Name": null + }, + "7298d643-9049-4a2b-960d-ae775b50fd80": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 0.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Name": "black" + }, + "762b6141-87f5-4a25-b644-4b1c66d8d5e5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1bc34a74-5aff-4a89-967c-eaaace0b4d50", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1bc34a74-5aff-4a89-967c-eaaace0b4d50", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "762b6141-87f5-4a25-b644-4b1c66d8d5e5", + "Name": null + }, + "d040523b-148a-41e3-8228-523e4597e8ca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d040523b-148a-41e3-8228-523e4597e8ca", + "Name": null + }, + "487b40b2-a5dc-4e3d-aeba-6c49a79e00e1": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "d040523b-148a-41e3-8228-523e4597e8ca", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "d040523b-148a-41e3-8228-523e4597e8ca", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "487b40b2-a5dc-4e3d-aeba-6c49a79e00e1", + "Name": null + }, + "da794247-52d7-4137-8f6a-2ea2b0d321b6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "da794247-52d7-4137-8f6a-2ea2b0d321b6", + "Name": null + }, + "5c0f8c0e-0318-43fe-bb17-4764d0d2cb61": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "da794247-52d7-4137-8f6a-2ea2b0d321b6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "da794247-52d7-4137-8f6a-2ea2b0d321b6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5c0f8c0e-0318-43fe-bb17-4764d0d2cb61", + "Name": null + }, + "2b1e23eb-e5f9-430d-9fa1-d4539e09c134": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2b1e23eb-e5f9-430d-9fa1-d4539e09c134", + "Name": null + }, + "c568286c-ae77-4d5b-a07e-72bcec1b5a25": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2b1e23eb-e5f9-430d-9fa1-d4539e09c134", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2b1e23eb-e5f9-430d-9fa1-d4539e09c134", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c568286c-ae77-4d5b-a07e-72bcec1b5a25", + "Name": null + }, + "4a8f40c9-33ea-499c-9ea8-348bd2b41430": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4a8f40c9-33ea-499c-9ea8-348bd2b41430", + "Name": null + }, + "1d593e24-b5ed-4a27-9a8d-d5b7c364b25a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 0.0 + }, + "End": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4a8f40c9-33ea-499c-9ea8-348bd2b41430", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4a8f40c9-33ea-499c-9ea8-348bd2b41430", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 0.0 + }, + "End": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1d593e24-b5ed-4a27-9a8d-d5b7c364b25a", + "Name": null + }, + "fdd95142-0ed3-48b4-98fe-98396287d17b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fdd95142-0ed3-48b4-98fe-98396287d17b", + "Name": null + }, + "80717812-352e-48cd-b0be-4ed3b11e16e9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 0.0 + }, + "End": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fdd95142-0ed3-48b4-98fe-98396287d17b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fdd95142-0ed3-48b4-98fe-98396287d17b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 0.0 + }, + "End": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "80717812-352e-48cd-b0be-4ed3b11e16e9", + "Name": null + }, + "3ff6d73e-4946-478e-bfde-0645ad9893b9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3ff6d73e-4946-478e-bfde-0645ad9893b9", + "Name": null + }, + "7d57375c-c364-4c05-b9c7-9d384449a3e5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 0.0 + }, + "End": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3ff6d73e-4946-478e-bfde-0645ad9893b9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3ff6d73e-4946-478e-bfde-0645ad9893b9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 0.0 + }, + "End": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7d57375c-c364-4c05-b9c7-9d384449a3e5", + "Name": null + }, + "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6", + "Name": null + }, + "1b57cf87-0e10-4adb-afb4-580f95d5b2a8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 0.0 + }, + "End": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 0.0 + }, + "End": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1b57cf87-0e10-4adb-afb4-580f95d5b2a8", + "Name": null + }, + "95242f67-a116-48c8-8471-b1f9e191d1a7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "95242f67-a116-48c8-8471-b1f9e191d1a7", + "Name": null + }, + "30c921b3-278d-43b5-bc6e-25b63df5181d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 0.0 + }, + "End": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "95242f67-a116-48c8-8471-b1f9e191d1a7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "95242f67-a116-48c8-8471-b1f9e191d1a7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 0.0 + }, + "End": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "30c921b3-278d-43b5-bc6e-25b63df5181d", + "Name": null + }, + "9459bd17-3c8e-46e9-8895-7bfc3adbea34": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "9459bd17-3c8e-46e9-8895-7bfc3adbea34", + "Name": null + }, + "74e505aa-c39e-4a87-a5d0-cee2c496ed6c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 0.0 + }, + "End": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "9459bd17-3c8e-46e9-8895-7bfc3adbea34", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "9459bd17-3c8e-46e9-8895-7bfc3adbea34", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 0.0 + }, + "End": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "74e505aa-c39e-4a87-a5d0-cee2c496ed6c", + "Name": null + }, + "f2203fd5-75e1-4284-abb2-638463500c12": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f2203fd5-75e1-4284-abb2-638463500c12", + "Name": null + }, + "197adfd3-8e92-46d9-a7b6-4ce045875a1f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 0.0 + }, + "End": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f2203fd5-75e1-4284-abb2-638463500c12", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f2203fd5-75e1-4284-abb2-638463500c12", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 0.0 + }, + "End": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "197adfd3-8e92-46d9-a7b6-4ce045875a1f", + "Name": null + }, + "c6deb3be-8d83-4ddc-a246-38b190d088f9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c6deb3be-8d83-4ddc-a246-38b190d088f9", + "Name": null + }, + "2f01d0c4-9958-475e-98d9-24976578050e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 0.0 + }, + "End": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c6deb3be-8d83-4ddc-a246-38b190d088f9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c6deb3be-8d83-4ddc-a246-38b190d088f9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 0.0 + }, + "End": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2f01d0c4-9958-475e-98d9-24976578050e", + "Name": null + }, + "20cc3180-ef20-4ff7-82c0-ec2be19092c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "20cc3180-ef20-4ff7-82c0-ec2be19092c6", + "Name": null + }, + "db2fe5a6-e358-4f1b-aac2-b37a8fab6887": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 0.0 + }, + "End": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "20cc3180-ef20-4ff7-82c0-ec2be19092c6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "20cc3180-ef20-4ff7-82c0-ec2be19092c6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 0.0 + }, + "End": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "db2fe5a6-e358-4f1b-aac2-b37a8fab6887", + "Name": null + }, + "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d", + "Name": null + }, + "d77ce8e5-6af1-4f19-9be2-42cf74458942": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 0.0 + }, + "End": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 0.0 + }, + "End": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d77ce8e5-6af1-4f19-9be2-42cf74458942", + "Name": null + }, + "df06b204-3e10-489e-9104-0cb77222d57d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "df06b204-3e10-489e-9104-0cb77222d57d", + "Name": null + }, + "ff9c620c-b1d3-4494-ad63-dd6371db654d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 0.0 + }, + "End": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "df06b204-3e10-489e-9104-0cb77222d57d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "df06b204-3e10-489e-9104-0cb77222d57d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 0.0 + }, + "End": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ff9c620c-b1d3-4494-ad63-dd6371db654d", + "Name": null + }, + "8d99beec-8b2d-4f51-b5e0-e3426509070d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8d99beec-8b2d-4f51-b5e0-e3426509070d", + "Name": null + }, + "c6dbf26e-d595-4cbd-b80e-4b7a81847fd1": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 0.0 + }, + "End": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8d99beec-8b2d-4f51-b5e0-e3426509070d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8d99beec-8b2d-4f51-b5e0-e3426509070d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 0.0 + }, + "End": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c6dbf26e-d595-4cbd-b80e-4b7a81847fd1", + "Name": null + }, + "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2", + "Name": null + }, + "f553c06a-c1b4-4344-b34f-3ad6f5f45c2a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 0.0 + }, + "End": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 0.0 + }, + "End": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f553c06a-c1b4-4344-b34f-3ad6f5f45c2a", + "Name": null + }, + "40f030e9-02af-45f9-8772-0354f6e83f08": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "40f030e9-02af-45f9-8772-0354f6e83f08", + "Name": null + }, + "4c074df2-03b5-4381-822a-5380fdfb5394": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 0.0 + }, + "End": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "40f030e9-02af-45f9-8772-0354f6e83f08", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "40f030e9-02af-45f9-8772-0354f6e83f08", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 0.0 + }, + "End": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4c074df2-03b5-4381-822a-5380fdfb5394", + "Name": null + }, + "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b", + "Name": null + }, + "b0cd255e-db88-4188-bba8-36aacb8bf1ea": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 0.0 + }, + "End": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 0.0 + }, + "End": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b0cd255e-db88-4188-bba8-36aacb8bf1ea", + "Name": null + }, + "e9d848e3-448d-4aae-b730-7b2432e02b37": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e9d848e3-448d-4aae-b730-7b2432e02b37", + "Name": null + }, + "6bcd6fac-6c82-42a7-bf67-733575b82465": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 0.0 + }, + "End": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "e9d848e3-448d-4aae-b730-7b2432e02b37", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "e9d848e3-448d-4aae-b730-7b2432e02b37", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 0.0 + }, + "End": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6bcd6fac-6c82-42a7-bf67-733575b82465", + "Name": null + }, + "dd083ba7-259b-47a7-8cc8-6f7e86ff1053": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "dd083ba7-259b-47a7-8cc8-6f7e86ff1053", + "Name": null + }, + "8524b05a-6662-4ab2-b3a9-975275ca55fd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 0.0 + }, + "End": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "dd083ba7-259b-47a7-8cc8-6f7e86ff1053", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "dd083ba7-259b-47a7-8cc8-6f7e86ff1053", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 0.0 + }, + "End": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8524b05a-6662-4ab2-b3a9-975275ca55fd", + "Name": null + }, + "36f75b30-c3e4-42e7-ab8b-7847588a7b86": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "36f75b30-c3e4-42e7-ab8b-7847588a7b86", + "Name": null + }, + "652c18fd-4626-4acf-ab4a-8e2b2193be04": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 0.0 + }, + "End": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "36f75b30-c3e4-42e7-ab8b-7847588a7b86", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "36f75b30-c3e4-42e7-ab8b-7847588a7b86", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 0.0 + }, + "End": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "652c18fd-4626-4acf-ab4a-8e2b2193be04", + "Name": null + }, + "7ba7bc46-63a5-4d3f-a90a-708a99118dca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7ba7bc46-63a5-4d3f-a90a-708a99118dca", + "Name": null + }, + "f31c9cbe-39c6-4407-a110-872841a8b6e3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 0.0 + }, + "End": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7ba7bc46-63a5-4d3f-a90a-708a99118dca", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7ba7bc46-63a5-4d3f-a90a-708a99118dca", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 0.0 + }, + "End": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f31c9cbe-39c6-4407-a110-872841a8b6e3", + "Name": null + }, + "7867cf66-2d50-4cfe-b219-b56314314a2c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7867cf66-2d50-4cfe-b219-b56314314a2c", + "Name": null + }, + "f7ec8249-114b-47d6-a1c0-bb61382fe1f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 0.0 + }, + "End": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7867cf66-2d50-4cfe-b219-b56314314a2c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7867cf66-2d50-4cfe-b219-b56314314a2c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 0.0 + }, + "End": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f7ec8249-114b-47d6-a1c0-bb61382fe1f0", + "Name": null + }, + "6964f996-efc6-4016-9711-b2b90f055904": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6964f996-efc6-4016-9711-b2b90f055904", + "Name": null + }, + "fcac37e6-333c-4e32-9911-c54f1a7ba929": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 0.0 + }, + "End": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "6964f996-efc6-4016-9711-b2b90f055904", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "6964f996-efc6-4016-9711-b2b90f055904", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 0.0 + }, + "End": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fcac37e6-333c-4e32-9911-c54f1a7ba929", + "Name": null + }, + "fda32561-7d07-475a-8956-957c0f46b55a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fda32561-7d07-475a-8956-957c0f46b55a", + "Name": null + }, + "5e2ad3eb-4222-462d-9208-d08151fd2fc0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 0.0 + }, + "End": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fda32561-7d07-475a-8956-957c0f46b55a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fda32561-7d07-475a-8956-957c0f46b55a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 0.0 + }, + "End": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5e2ad3eb-4222-462d-9208-d08151fd2fc0", + "Name": null + }, + "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f", + "Name": null + }, + "c8b66a3d-1440-40e5-9fd4-489ecfc58a18": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 0.0 + }, + "End": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 0.0 + }, + "End": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c8b66a3d-1440-40e5-9fd4-489ecfc58a18", + "Name": null + }, + "7a2ec1bf-c88c-4878-a9b1-542019901232": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7a2ec1bf-c88c-4878-a9b1-542019901232", + "Name": null + }, + "231c9fa6-72ae-4f42-b532-4d567a38d164": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7a2ec1bf-c88c-4878-a9b1-542019901232", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7a2ec1bf-c88c-4878-a9b1-542019901232", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "231c9fa6-72ae-4f42-b532-4d567a38d164", + "Name": null + }, + "28c5c2b1-d65c-4c46-8689-d651f50f07e7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.20000000298023224 + }, + "SpecularFactor": 1.0, + "GlossinessFactor": 1.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Name": "glass" + }, + "e32262e9-1265-434b-a7e4-b92de71603f7": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e32262e9-1265-434b-a7e4-b92de71603f7", + "Name": null + }, + "873755b5-bd57-4001-bdba-4f3d00e2c138": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "873755b5-bd57-4001-bdba-4f3d00e2c138", + "Name": null + }, + "a086b5a3-8ec5-4c43-9b34-53e9cefec988": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "873755b5-bd57-4001-bdba-4f3d00e2c138", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "873755b5-bd57-4001-bdba-4f3d00e2c138", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a086b5a3-8ec5-4c43-9b34-53e9cefec988", + "Name": null + }, + "8b17641e-148a-4f78-95bb-de6b23673222": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8b17641e-148a-4f78-95bb-de6b23673222", + "Name": null + }, + "0299a21c-b0a7-4499-810b-658db2bfd743": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8b17641e-148a-4f78-95bb-de6b23673222", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8b17641e-148a-4f78-95bb-de6b23673222", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0299a21c-b0a7-4499-810b-658db2bfd743", + "Name": null + }, + "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e", + "Name": null + }, + "d3288cc4-721c-4165-8a82-4327f627e3f6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d3288cc4-721c-4165-8a82-4327f627e3f6", + "Name": null + }, + "6d7b3f8e-7b13-4c90-91b4-3532190b49aa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6d7b3f8e-7b13-4c90-91b4-3532190b49aa", + "Name": null + }, + "cc2d3346-1524-4db3-bb09-4f9f1d32c768": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "6d7b3f8e-7b13-4c90-91b4-3532190b49aa", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "6d7b3f8e-7b13-4c90-91b4-3532190b49aa", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cc2d3346-1524-4db3-bb09-4f9f1d32c768", + "Name": null + }, + "ab566acf-c5e2-49e6-b670-3a4d11e17f12": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ab566acf-c5e2-49e6-b670-3a4d11e17f12", + "Name": null + }, + "8aa1bd9a-d791-4671-92de-3c71eb32c622": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 7.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ab566acf-c5e2-49e6-b670-3a4d11e17f12", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ab566acf-c5e2-49e6-b670-3a4d11e17f12", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 7.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8aa1bd9a-d791-4671-92de-3c71eb32c622", + "Name": null + }, + "ae067c09-4fca-435a-9023-4456f08a1648": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ae067c09-4fca-435a-9023-4456f08a1648", + "Name": null + }, + "146818c8-2a71-43b8-a8db-475aad247b99": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 6.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ae067c09-4fca-435a-9023-4456f08a1648", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ae067c09-4fca-435a-9023-4456f08a1648", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 6.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "146818c8-2a71-43b8-a8db-475aad247b99", + "Name": null + }, + "b32842b1-91c5-4efc-9d26-1b18a373e299": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b32842b1-91c5-4efc-9d26-1b18a373e299", + "Name": null + }, + "42a579f6-0b75-4fe4-a06c-fea894313b8d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 4.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b32842b1-91c5-4efc-9d26-1b18a373e299", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b32842b1-91c5-4efc-9d26-1b18a373e299", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 4.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42a579f6-0b75-4fe4-a06c-fea894313b8d", + "Name": null + }, + "79154e69-95bd-402f-88a6-1f747d936165": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "79154e69-95bd-402f-88a6-1f747d936165", + "Name": null + }, + "a0f9b4b6-ad00-4463-bfb3-74bb1f34590a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "79154e69-95bd-402f-88a6-1f747d936165", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "79154e69-95bd-402f-88a6-1f747d936165", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a0f9b4b6-ad00-4463-bfb3-74bb1f34590a", + "Name": null + }, + "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7", + "Name": null + }, + "2cce7278-649a-4ac8-b264-7aa81abe28bb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2cce7278-649a-4ac8-b264-7aa81abe28bb", + "Name": null + }, + "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f", + "Name": null + }, + "79aef24c-6a5b-4385-b897-d8ddbb90806c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "79aef24c-6a5b-4385-b897-d8ddbb90806c", + "Name": null + }, + "52cc745e-786a-463f-bf6b-36dd6e53601b": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "52cc745e-786a-463f-bf6b-36dd6e53601b", + "Name": null + }, + "4f58b206-79a4-4b92-a5a2-1fd92033d21c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4f58b206-79a4-4b92-a5a2-1fd92033d21c", + "Name": null + }, + "98ca7935-db5a-4eb4-948f-2b9f11a75218": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4f58b206-79a4-4b92-a5a2-1fd92033d21c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4f58b206-79a4-4b92-a5a2-1fd92033d21c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "98ca7935-db5a-4eb4-948f-2b9f11a75218", + "Name": null + }, + "09099962-1835-4692-984a-eb010bce4d0d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "09099962-1835-4692-984a-eb010bce4d0d", + "Name": null + }, + "13d71bcf-21cf-4323-be9a-b1b70033f0a9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "09099962-1835-4692-984a-eb010bce4d0d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "09099962-1835-4692-984a-eb010bce4d0d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "13d71bcf-21cf-4323-be9a-b1b70033f0a9", + "Name": null + }, + "48da2373-6a89-4352-bfef-bdda79713af5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "48da2373-6a89-4352-bfef-bdda79713af5", + "Name": null + }, + "79efe3aa-b0d0-4c89-9026-9be1fe70dfeb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "48da2373-6a89-4352-bfef-bdda79713af5", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "48da2373-6a89-4352-bfef-bdda79713af5", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "79efe3aa-b0d0-4c89-9026-9be1fe70dfeb", + "Name": null + }, + "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1", + "Name": null + }, + "dbda0112-78e2-4cac-8ed2-f9e28cdc1757": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dbda0112-78e2-4cac-8ed2-f9e28cdc1757", + "Name": null + }, + "a75ca899-2fa7-4f14-864b-1915867d735e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a75ca899-2fa7-4f14-864b-1915867d735e", + "Name": null + }, + "73ec5b23-bf5e-43ce-b76d-cd8d5658a060": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -2.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -2.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a75ca899-2fa7-4f14-864b-1915867d735e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a75ca899-2fa7-4f14-864b-1915867d735e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -2.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -2.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "73ec5b23-bf5e-43ce-b76d-cd8d5658a060", + "Name": null + }, + "0b0f7379-c1ba-4635-8c10-8225dced407e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0b0f7379-c1ba-4635-8c10-8225dced407e", + "Name": null + }, + "caa25bb6-ed6f-4dba-9556-4f7bd40f1dcc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -4.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0b0f7379-c1ba-4635-8c10-8225dced407e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0b0f7379-c1ba-4635-8c10-8225dced407e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -4.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "caa25bb6-ed6f-4dba-9556-4f7bd40f1dcc", + "Name": null + }, + "3c27c5d5-0ca1-4813-9060-37b1c58e122e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3c27c5d5-0ca1-4813-9060-37b1c58e122e", + "Name": null + }, + "765ccb09-72df-4e60-a46d-1b9a649f1622": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -5.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -5.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3c27c5d5-0ca1-4813-9060-37b1c58e122e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3c27c5d5-0ca1-4813-9060-37b1c58e122e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -5.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -5.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "765ccb09-72df-4e60-a46d-1b9a649f1622", + "Name": null + }, + "064cf28a-febc-43b7-98f9-d361d0fee195": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "064cf28a-febc-43b7-98f9-d361d0fee195", + "Name": null + }, + "a94b553a-e0eb-47f6-afec-9ce0129f8f13": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -7.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "064cf28a-febc-43b7-98f9-d361d0fee195", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "064cf28a-febc-43b7-98f9-d361d0fee195", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -7.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a94b553a-e0eb-47f6-afec-9ce0129f8f13", + "Name": null + }, + "98f28be1-9e15-4c12-9dbb-a1b0e56e0415": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "98f28be1-9e15-4c12-9dbb-a1b0e56e0415", + "Name": null + }, + "b9e3bec8-324b-44c9-a9f3-3328035087b5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -8.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -8.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "98f28be1-9e15-4c12-9dbb-a1b0e56e0415", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "98f28be1-9e15-4c12-9dbb-a1b0e56e0415", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -8.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -8.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b9e3bec8-324b-44c9-a9f3-3328035087b5", + "Name": null + }, + "f262da15-7db4-4941-a974-b0c9b85b3eb8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f262da15-7db4-4941-a974-b0c9b85b3eb8", + "Name": null + }, + "c8e926c1-3d4e-4a6a-ad0d-4c21adc67e31": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f262da15-7db4-4941-a974-b0c9b85b3eb8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f262da15-7db4-4941-a974-b0c9b85b3eb8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c8e926c1-3d4e-4a6a-ad0d-4c21adc67e31", + "Name": null + }, + "8287585e-5af4-471b-a102-26e73c4467ae": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8287585e-5af4-471b-a102-26e73c4467ae", + "Name": null + }, + "977ee5dc-03c3-48a3-aea0-8ca7f889af5d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -11.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -11.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8287585e-5af4-471b-a102-26e73c4467ae", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8287585e-5af4-471b-a102-26e73c4467ae", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -11.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -11.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "977ee5dc-03c3-48a3-aea0-8ca7f889af5d", + "Name": null + }, + "ddf3c61c-7bc9-4536-bf74-d53d04c555d2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ddf3c61c-7bc9-4536-bf74-d53d04c555d2", + "Name": null + }, + "8ba4ab78-b7f3-4d12-8a17-3d4c68aef25f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -13.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ddf3c61c-7bc9-4536-bf74-d53d04c555d2", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ddf3c61c-7bc9-4536-bf74-d53d04c555d2", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -13.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8ba4ab78-b7f3-4d12-8a17-3d4c68aef25f", + "Name": null + }, + "af184823-d760-40d7-845d-50634fb99d7f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "af184823-d760-40d7-845d-50634fb99d7f", + "Name": null + }, + "e0d4171c-0d1f-4f5c-9056-9b5a13eaabfe": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -14.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -14.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "af184823-d760-40d7-845d-50634fb99d7f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "af184823-d760-40d7-845d-50634fb99d7f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -14.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -14.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e0d4171c-0d1f-4f5c-9056-9b5a13eaabfe", + "Name": null + }, + "3be64d1d-bbdc-4433-87da-a0e7eab0a67a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3be64d1d-bbdc-4433-87da-a0e7eab0a67a", + "Name": null + }, + "b43df5db-07eb-47ab-b91c-4b381504646a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -16.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3be64d1d-bbdc-4433-87da-a0e7eab0a67a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3be64d1d-bbdc-4433-87da-a0e7eab0a67a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -16.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b43df5db-07eb-47ab-b91c-4b381504646a", + "Name": null + }, + "14353ee1-8757-465f-a67e-998291a57331": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "14353ee1-8757-465f-a67e-998291a57331", + "Name": null + }, + "914e9d64-9da6-4ca4-92b6-3086885216e1": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -17.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -17.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "14353ee1-8757-465f-a67e-998291a57331", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "14353ee1-8757-465f-a67e-998291a57331", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -17.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -17.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "914e9d64-9da6-4ca4-92b6-3086885216e1", + "Name": null + }, + "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398", + "Name": null + }, + "55e33382-ad47-421d-847d-dde998c7863f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -19.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -19.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "55e33382-ad47-421d-847d-dde998c7863f", + "Name": null + }, + "b6f25239-474d-4c71-a8cf-771187031726": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b6f25239-474d-4c71-a8cf-771187031726", + "Name": null + }, + "d06dacf8-9884-4549-bf4a-0fc09e5a08e9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -20.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -20.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b6f25239-474d-4c71-a8cf-771187031726", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b6f25239-474d-4c71-a8cf-771187031726", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -20.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -20.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d06dacf8-9884-4549-bf4a-0fc09e5a08e9", + "Name": null + }, + "2fde2d11-e127-4dff-86f0-b7ae7115b33a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2fde2d11-e127-4dff-86f0-b7ae7115b33a", + "Name": null + }, + "d078a800-f45e-43d9-b5f8-3dae8cbd9e5a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -22.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2fde2d11-e127-4dff-86f0-b7ae7115b33a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2fde2d11-e127-4dff-86f0-b7ae7115b33a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -22.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d078a800-f45e-43d9-b5f8-3dae8cbd9e5a", + "Name": null + }, + "19b633f6-f1e1-4342-8b52-b75fff2f6963": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "19b633f6-f1e1-4342-8b52-b75fff2f6963", + "Name": null + }, + "b48c1065-144e-4a58-abd7-60b912ddb9e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -23.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -23.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "19b633f6-f1e1-4342-8b52-b75fff2f6963", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "19b633f6-f1e1-4342-8b52-b75fff2f6963", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -23.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -23.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b48c1065-144e-4a58-abd7-60b912ddb9e8", + "Name": null + }, + "efe1be9b-b00f-4cc6-83f4-1caa2805cc04": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "efe1be9b-b00f-4cc6-83f4-1caa2805cc04", + "Name": null + }, + "8e4cb6d0-e364-48a1-9202-005a41f82e48": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "efe1be9b-b00f-4cc6-83f4-1caa2805cc04", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "efe1be9b-b00f-4cc6-83f4-1caa2805cc04", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8e4cb6d0-e364-48a1-9202-005a41f82e48", + "Name": null + }, + "ec372921-a192-4e32-b211-f0f459e4e5f5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ec372921-a192-4e32-b211-f0f459e4e5f5", + "Name": null + }, + "2002906c-4bf2-4fd8-98b1-b09c316ae6b2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -26.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -26.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ec372921-a192-4e32-b211-f0f459e4e5f5", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ec372921-a192-4e32-b211-f0f459e4e5f5", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -26.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -26.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2002906c-4bf2-4fd8-98b1-b09c316ae6b2", + "Name": null + }, + "89c787b9-1de8-4ac2-9149-574b59b5fc2d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "89c787b9-1de8-4ac2-9149-574b59b5fc2d", + "Name": null + }, + "3faef0e0-1bdb-4723-9112-14e9ce104a05": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -28.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "89c787b9-1de8-4ac2-9149-574b59b5fc2d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "89c787b9-1de8-4ac2-9149-574b59b5fc2d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -28.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3faef0e0-1bdb-4723-9112-14e9ce104a05", + "Name": null + }, + "a7e1efb1-5718-45da-85e4-bff82356b5e0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a7e1efb1-5718-45da-85e4-bff82356b5e0", + "Name": null + }, + "adee005d-903e-4ea2-8cd7-a9de5e975fed": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -29.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -29.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a7e1efb1-5718-45da-85e4-bff82356b5e0", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a7e1efb1-5718-45da-85e4-bff82356b5e0", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -29.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -29.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "adee005d-903e-4ea2-8cd7-a9de5e975fed", + "Name": null + }, + "764bf663-d0cb-41f0-94bc-0e639c6578fb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "764bf663-d0cb-41f0-94bc-0e639c6578fb", + "Name": null + }, + "81f1b370-c69c-4907-a2a4-384f549d9af2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "764bf663-d0cb-41f0-94bc-0e639c6578fb", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "764bf663-d0cb-41f0-94bc-0e639c6578fb", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "81f1b370-c69c-4907-a2a4-384f549d9af2", + "Name": null + }, + "dba3d51b-420b-4642-8fa5-e74a196aa430": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "dba3d51b-420b-4642-8fa5-e74a196aa430", + "Name": null + }, + "48d1db71-a215-4e19-adb2-8602f72dea04": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -32.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -32.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "dba3d51b-420b-4642-8fa5-e74a196aa430", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "dba3d51b-420b-4642-8fa5-e74a196aa430", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -32.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -32.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "48d1db71-a215-4e19-adb2-8602f72dea04", + "Name": null + }, + "1ceca958-0e42-4df7-b02f-aec37623a5aa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1ceca958-0e42-4df7-b02f-aec37623a5aa", + "Name": null + }, + "a6226dce-2682-4a53-b0ff-f990cb45f84d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -34.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1ceca958-0e42-4df7-b02f-aec37623a5aa", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1ceca958-0e42-4df7-b02f-aec37623a5aa", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -34.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a6226dce-2682-4a53-b0ff-f990cb45f84d", + "Name": null + }, + "0b09e749-de6e-4507-8d50-ca4729d7ea9c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0b09e749-de6e-4507-8d50-ca4729d7ea9c", + "Name": null + }, + "2528955e-325a-47e6-8e2f-586a7126954e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -35.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -35.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0b09e749-de6e-4507-8d50-ca4729d7ea9c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0b09e749-de6e-4507-8d50-ca4729d7ea9c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -35.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -35.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2528955e-325a-47e6-8e2f-586a7126954e", + "Name": null + }, + "b91b9895-4f96-4ab3-8532-103d7cc5ba18": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b91b9895-4f96-4ab3-8532-103d7cc5ba18", + "Name": null + }, + "efad256b-b9e4-4559-b8ff-84894d218e57": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -37.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b91b9895-4f96-4ab3-8532-103d7cc5ba18", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b91b9895-4f96-4ab3-8532-103d7cc5ba18", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -37.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "efad256b-b9e4-4559-b8ff-84894d218e57", + "Name": null + }, + "4e2f26be-b780-4f22-9b92-df89a6185f73": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4e2f26be-b780-4f22-9b92-df89a6185f73", + "Name": null + }, + "8370a8c3-1184-4b10-bd36-0c09d45f6183": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -38.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -38.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4e2f26be-b780-4f22-9b92-df89a6185f73", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4e2f26be-b780-4f22-9b92-df89a6185f73", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -38.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -38.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8370a8c3-1184-4b10-bd36-0c09d45f6183", + "Name": null + }, + "53eccb2b-726a-40aa-a121-66dd0ddfe02f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "53eccb2b-726a-40aa-a121-66dd0ddfe02f", + "Name": null + }, + "10a46ea4-e9e8-41ee-91dc-4b4a3964e067": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "53eccb2b-726a-40aa-a121-66dd0ddfe02f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "53eccb2b-726a-40aa-a121-66dd0ddfe02f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "10a46ea4-e9e8-41ee-91dc-4b4a3964e067", + "Name": null + }, + "5f2c2039-1468-4194-88e0-8948d0c8620b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5f2c2039-1468-4194-88e0-8948d0c8620b", + "Name": null + }, + "44707400-314f-4bd4-a8d2-3296885c519b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -41.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -41.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5f2c2039-1468-4194-88e0-8948d0c8620b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5f2c2039-1468-4194-88e0-8948d0c8620b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -41.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -41.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "44707400-314f-4bd4-a8d2-3296885c519b", + "Name": null + }, + "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21", + "Name": null + }, + "45c6fe6d-2b6e-4af5-9d23-726528cc6aba": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -43.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -43.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "45c6fe6d-2b6e-4af5-9d23-726528cc6aba", + "Name": null + }, + "fd72396f-adb0-4f63-a87f-85272e174594": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fd72396f-adb0-4f63-a87f-85272e174594", + "Name": null + }, + "0a841f20-52f8-41cc-85fe-05c73503dff2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -44.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -44.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fd72396f-adb0-4f63-a87f-85272e174594", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fd72396f-adb0-4f63-a87f-85272e174594", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -44.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -44.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0a841f20-52f8-41cc-85fe-05c73503dff2", + "Name": null + }, + "cf0c046d-c4e3-414c-9be9-48eb84844feb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "cf0c046d-c4e3-414c-9be9-48eb84844feb", + "Name": null + }, + "3bd0f885-8663-4fdd-b2cf-0b9bafc361e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -46.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "cf0c046d-c4e3-414c-9be9-48eb84844feb", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "cf0c046d-c4e3-414c-9be9-48eb84844feb", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -46.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3bd0f885-8663-4fdd-b2cf-0b9bafc361e8", + "Name": null + }, + "97500fd2-d2c0-427a-8e12-3e20cb77b3f9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "97500fd2-d2c0-427a-8e12-3e20cb77b3f9", + "Name": null + }, + "9383a6fd-80a5-48ce-bd40-0afcc9c1528f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -47.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -47.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "97500fd2-d2c0-427a-8e12-3e20cb77b3f9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "97500fd2-d2c0-427a-8e12-3e20cb77b3f9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -47.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -47.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9383a6fd-80a5-48ce-bd40-0afcc9c1528f", + "Name": null + }, + "3be1abee-2ccb-4d66-ad8b-eccad3311f0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3be1abee-2ccb-4d66-ad8b-eccad3311f0b", + "Name": null + }, + "a26296ed-6ec2-4208-8c0b-a38f444041ce": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -49.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3be1abee-2ccb-4d66-ad8b-eccad3311f0b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3be1abee-2ccb-4d66-ad8b-eccad3311f0b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -49.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a26296ed-6ec2-4208-8c0b-a38f444041ce", + "Name": null + }, + "98d4a0fe-e1a3-4386-9a81-0da7cc69259d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "98d4a0fe-e1a3-4386-9a81-0da7cc69259d", + "Name": null + }, + "33d2a68e-e960-4c83-82a9-1c164fc8325a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -50.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -50.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "98d4a0fe-e1a3-4386-9a81-0da7cc69259d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "98d4a0fe-e1a3-4386-9a81-0da7cc69259d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -50.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -50.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "33d2a68e-e960-4c83-82a9-1c164fc8325a", + "Name": null + }, + "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e", + "Name": null + }, + "6b48e3ac-6c89-4b03-8ae7-9b8c8d54eb7b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -52.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -52.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6b48e3ac-6c89-4b03-8ae7-9b8c8d54eb7b", + "Name": null + }, + "0169fef7-7760-45d9-b1c4-cb8016f3359e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0169fef7-7760-45d9-b1c4-cb8016f3359e", + "Name": null + }, + "88b74a38-c861-47b8-b9bb-e6746cdac64e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -53.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -53.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0169fef7-7760-45d9-b1c4-cb8016f3359e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0169fef7-7760-45d9-b1c4-cb8016f3359e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -53.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -53.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "88b74a38-c861-47b8-b9bb-e6746cdac64e", + "Name": null + }, + "08e99676-4ddc-45ef-94ec-8df764af493e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "08e99676-4ddc-45ef-94ec-8df764af493e", + "Name": null + }, + "9d9d83d1-ed06-4c56-a60e-d1457b4679de": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "08e99676-4ddc-45ef-94ec-8df764af493e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "08e99676-4ddc-45ef-94ec-8df764af493e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9d9d83d1-ed06-4c56-a60e-d1457b4679de", + "Name": null + }, + "cd470729-64f3-4b5c-9644-5f86ff6dcfab": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "cd470729-64f3-4b5c-9644-5f86ff6dcfab", + "Name": null + }, + "d1062adc-0b26-434f-865e-d55fb3791f6d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -56.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -56.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "cd470729-64f3-4b5c-9644-5f86ff6dcfab", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "cd470729-64f3-4b5c-9644-5f86ff6dcfab", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -56.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -56.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d1062adc-0b26-434f-865e-d55fb3791f6d", + "Name": null + }, + "89d8fb5f-ad50-46c3-ac19-286178f292a9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "89d8fb5f-ad50-46c3-ac19-286178f292a9", + "Name": null + }, + "f940ce60-af81-401e-b333-593aa7875a1d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -58.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "89d8fb5f-ad50-46c3-ac19-286178f292a9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "89d8fb5f-ad50-46c3-ac19-286178f292a9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -58.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f940ce60-af81-401e-b333-593aa7875a1d", + "Name": null + }, + "235e1733-465c-4664-9fe4-ac20397c6e75": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "235e1733-465c-4664-9fe4-ac20397c6e75", + "Name": null + }, + "e5309f74-a3ad-4f20-ab9a-8463d3e81298": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "235e1733-465c-4664-9fe4-ac20397c6e75", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "235e1733-465c-4664-9fe4-ac20397c6e75", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e5309f74-a3ad-4f20-ab9a-8463d3e81298", + "Name": null + }, + "f7e5dfec-3daf-47c7-ae9e-5655d7873dfd": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f7e5dfec-3daf-47c7-ae9e-5655d7873dfd", + "Name": null + }, + "99b93bca-f665-4b73-9232-f7629bc8903c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "99b93bca-f665-4b73-9232-f7629bc8903c", + "Name": null + }, + "debc3ff3-499f-4a0a-ab2b-7e41f6c8a127": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "99b93bca-f665-4b73-9232-f7629bc8903c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "99b93bca-f665-4b73-9232-f7629bc8903c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "debc3ff3-499f-4a0a-ab2b-7e41f6c8a127", + "Name": null + }, + "a0aa1b33-82f6-4edf-834f-79f3dbb94d93": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a0aa1b33-82f6-4edf-834f-79f3dbb94d93", + "Name": null + }, + "e1a5504c-8f26-4964-9ac3-0620d3c21890": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a0aa1b33-82f6-4edf-834f-79f3dbb94d93", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a0aa1b33-82f6-4edf-834f-79f3dbb94d93", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e1a5504c-8f26-4964-9ac3-0620d3c21890", + "Name": null + }, + "5328ebb2-dca0-491a-9687-d7bb12142603": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5328ebb2-dca0-491a-9687-d7bb12142603", + "Name": null + }, + "38430b0c-a9fb-4d6c-b813-1ad286874e20": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5328ebb2-dca0-491a-9687-d7bb12142603", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5328ebb2-dca0-491a-9687-d7bb12142603", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "38430b0c-a9fb-4d6c-b813-1ad286874e20", + "Name": null + }, + "f9bcd9be-8496-49d5-a6ed-f463b3b32851": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f9bcd9be-8496-49d5-a6ed-f463b3b32851", + "Name": null + }, + "db2a7ee2-30e1-4872-990d-b8eade1e400f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f9bcd9be-8496-49d5-a6ed-f463b3b32851", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f9bcd9be-8496-49d5-a6ed-f463b3b32851", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "db2a7ee2-30e1-4872-990d-b8eade1e400f", + "Name": null + }, + "b7ab6c92-74fc-493b-afb6-f003bcad7e0d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b7ab6c92-74fc-493b-afb6-f003bcad7e0d", + "Name": null + }, + "1eee6876-975a-4858-9e8f-b26a979bfdcd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 2.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b7ab6c92-74fc-493b-afb6-f003bcad7e0d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b7ab6c92-74fc-493b-afb6-f003bcad7e0d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 2.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1eee6876-975a-4858-9e8f-b26a979bfdcd", + "Name": null + }, + "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07", + "Name": null + }, + "b37a14cc-a004-4efd-a369-33308aac95ea": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 4.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 4.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b37a14cc-a004-4efd-a369-33308aac95ea", + "Name": null + }, + "264c70f2-92d2-4ced-9418-d3f3e0d00869": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "264c70f2-92d2-4ced-9418-d3f3e0d00869", + "Name": null + }, + "1e45ba9e-f242-4a00-94c7-b9e9733bdd45": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "264c70f2-92d2-4ced-9418-d3f3e0d00869", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "264c70f2-92d2-4ced-9418-d3f3e0d00869", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1e45ba9e-f242-4a00-94c7-b9e9733bdd45", + "Name": null + }, + "661c04a6-72e2-49f8-83fe-8ca6b2deafd4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "661c04a6-72e2-49f8-83fe-8ca6b2deafd4", + "Name": null + }, + "2fc57063-e4ed-4d29-974a-a1ad7d996651": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "661c04a6-72e2-49f8-83fe-8ca6b2deafd4", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "661c04a6-72e2-49f8-83fe-8ca6b2deafd4", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2fc57063-e4ed-4d29-974a-a1ad7d996651", + "Name": null + }, + "ea92d924-3bc7-4237-828c-65d1ba9ee6ae": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ea92d924-3bc7-4237-828c-65d1ba9ee6ae", + "Name": null + }, + "24e6a070-25d6-4095-9e76-866864281b3a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 8.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ea92d924-3bc7-4237-828c-65d1ba9ee6ae", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ea92d924-3bc7-4237-828c-65d1ba9ee6ae", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 8.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "24e6a070-25d6-4095-9e76-866864281b3a", + "Name": null + }, + "163532af-a140-4c8f-8b39-e0764a55593d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "163532af-a140-4c8f-8b39-e0764a55593d", + "Name": null + }, + "d85eeb32-02a1-4ca9-991b-61f76fd1f36a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 10.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "163532af-a140-4c8f-8b39-e0764a55593d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "163532af-a140-4c8f-8b39-e0764a55593d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 10.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d85eeb32-02a1-4ca9-991b-61f76fd1f36a", + "Name": null + }, + "d3f661d6-cd69-4711-9538-a6ae9d198625": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d3f661d6-cd69-4711-9538-a6ae9d198625", + "Name": null + }, + "11497673-a045-4ef2-8189-5c76ed57b80f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 11.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "d3f661d6-cd69-4711-9538-a6ae9d198625", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "d3f661d6-cd69-4711-9538-a6ae9d198625", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 11.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "11497673-a045-4ef2-8189-5c76ed57b80f", + "Name": null + }, + "5368af83-25ec-4fe8-90a6-4a59feee1dca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5368af83-25ec-4fe8-90a6-4a59feee1dca", + "Name": null + }, + "7c177cfe-558c-471e-89d3-48640dd3c040": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 13.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5368af83-25ec-4fe8-90a6-4a59feee1dca", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5368af83-25ec-4fe8-90a6-4a59feee1dca", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 13.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7c177cfe-558c-471e-89d3-48640dd3c040", + "Name": null + }, + "c53979b0-1e96-4392-bd17-c3fb700c5139": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c53979b0-1e96-4392-bd17-c3fb700c5139", + "Name": null + }, + "4b105f2a-fbea-4bda-a46c-732db0abf35b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 14.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c53979b0-1e96-4392-bd17-c3fb700c5139", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c53979b0-1e96-4392-bd17-c3fb700c5139", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 14.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4b105f2a-fbea-4bda-a46c-732db0abf35b", + "Name": null + }, + "95850dd9-34fc-452e-a377-ffffa110e6aa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "95850dd9-34fc-452e-a377-ffffa110e6aa", + "Name": null + }, + "117e1e0a-81ab-43d6-ba70-5c1841bbf3d5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "95850dd9-34fc-452e-a377-ffffa110e6aa", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "95850dd9-34fc-452e-a377-ffffa110e6aa", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "117e1e0a-81ab-43d6-ba70-5c1841bbf3d5", + "Name": null + }, + "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7", + "Name": null + }, + "2cf5618f-3db7-46e0-bb4e-f66f6a4456f7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 17.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 17.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2cf5618f-3db7-46e0-bb4e-f66f6a4456f7", + "Name": null + }, + "82241029-8458-4e39-ae2a-ea929600d34b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "82241029-8458-4e39-ae2a-ea929600d34b", + "Name": null + }, + "6b41dbbb-b702-4dbe-8a58-a90bbfe946d4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 19.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "82241029-8458-4e39-ae2a-ea929600d34b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "82241029-8458-4e39-ae2a-ea929600d34b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 19.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6b41dbbb-b702-4dbe-8a58-a90bbfe946d4", + "Name": null + }, + "e27c94ef-98eb-4164-824b-fd425dd621e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e27c94ef-98eb-4164-824b-fd425dd621e7", + "Name": null + }, + "73ce5d53-22ed-4e8e-aa8c-af8f40697e4f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 20.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "e27c94ef-98eb-4164-824b-fd425dd621e7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "e27c94ef-98eb-4164-824b-fd425dd621e7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 20.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "73ce5d53-22ed-4e8e-aa8c-af8f40697e4f", + "Name": null + }, + "53715e85-82b0-4eeb-8630-6df8ab63ce63": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "53715e85-82b0-4eeb-8630-6df8ab63ce63", + "Name": null + }, + "4359b28c-320f-492e-acf7-7715ffae6c1e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 22.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "53715e85-82b0-4eeb-8630-6df8ab63ce63", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "53715e85-82b0-4eeb-8630-6df8ab63ce63", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 22.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4359b28c-320f-492e-acf7-7715ffae6c1e", + "Name": null + }, + "10a2ff40-5964-49ee-8467-2d7009918d19": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "10a2ff40-5964-49ee-8467-2d7009918d19", + "Name": null + }, + "9990420b-c525-4a06-b764-2871a76cf02f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 23.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "10a2ff40-5964-49ee-8467-2d7009918d19", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "10a2ff40-5964-49ee-8467-2d7009918d19", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 23.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9990420b-c525-4a06-b764-2871a76cf02f", + "Name": null + }, + "c7a838fc-0027-4b73-b7f2-9c871af30c88": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c7a838fc-0027-4b73-b7f2-9c871af30c88", + "Name": null + }, + "c43d2cc3-0831-463b-89c7-18cf855287f5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 25.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c7a838fc-0027-4b73-b7f2-9c871af30c88", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c7a838fc-0027-4b73-b7f2-9c871af30c88", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 25.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c43d2cc3-0831-463b-89c7-18cf855287f5", + "Name": null + }, + "7160f15b-b545-4f63-8eed-92e1084d6790": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7160f15b-b545-4f63-8eed-92e1084d6790", + "Name": null + }, + "49605b00-caed-41dd-9307-d41da97301d6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 26.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7160f15b-b545-4f63-8eed-92e1084d6790", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7160f15b-b545-4f63-8eed-92e1084d6790", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 26.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "49605b00-caed-41dd-9307-d41da97301d6", + "Name": null + }, + "df9196e3-81d7-4493-aea4-c9aadb27a367": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "df9196e3-81d7-4493-aea4-c9aadb27a367", + "Name": null + }, + "c0e83a06-514e-4977-baaa-6826bc32176b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 28.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "df9196e3-81d7-4493-aea4-c9aadb27a367", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "df9196e3-81d7-4493-aea4-c9aadb27a367", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 28.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c0e83a06-514e-4977-baaa-6826bc32176b", + "Name": null + }, + "ed90c76d-3289-43d9-a5a4-4108fb2bf580": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ed90c76d-3289-43d9-a5a4-4108fb2bf580", + "Name": null + }, + "a35bad36-7158-4d40-9889-3c0bc35865c2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed90c76d-3289-43d9-a5a4-4108fb2bf580", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed90c76d-3289-43d9-a5a4-4108fb2bf580", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a35bad36-7158-4d40-9889-3c0bc35865c2", + "Name": null + }, + "93730af0-e5c6-472f-aba2-f85e640f75f9": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "93730af0-e5c6-472f-aba2-f85e640f75f9", + "Name": null + }, + "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e", + "Name": null + }, + "a8dd846a-2bf4-460b-91da-6c901e025b1f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a8dd846a-2bf4-460b-91da-6c901e025b1f", + "Name": null + }, + "8df87452-9217-4b1e-9e14-bfad1cb07683": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8df87452-9217-4b1e-9e14-bfad1cb07683", + "Name": null + }, + "f4d47d59-5d40-4305-af36-4cd9ff7d3287": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8df87452-9217-4b1e-9e14-bfad1cb07683", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8df87452-9217-4b1e-9e14-bfad1cb07683", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f4d47d59-5d40-4305-af36-4cd9ff7d3287", + "Name": null + }, + "58048ca5-5a02-4229-80a1-dedba924f62e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "58048ca5-5a02-4229-80a1-dedba924f62e", + "Name": null + }, + "8cf556ee-e388-494b-8255-fb30af6248d3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "58048ca5-5a02-4229-80a1-dedba924f62e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "58048ca5-5a02-4229-80a1-dedba924f62e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8cf556ee-e388-494b-8255-fb30af6248d3", + "Name": null + }, + "c577c06a-14cb-445d-a7ec-b7373a056ba7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c577c06a-14cb-445d-a7ec-b7373a056ba7", + "Name": null + }, + "3873f57c-5d72-4809-9b1e-6ffe00535479": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c577c06a-14cb-445d-a7ec-b7373a056ba7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c577c06a-14cb-445d-a7ec-b7373a056ba7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3873f57c-5d72-4809-9b1e-6ffe00535479", + "Name": null + }, + "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a", + "Name": null + }, + "7c73ab0b-ee3d-420c-9abf-16482b99c6f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -57.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -57.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -57.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -57.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7c73ab0b-ee3d-420c-9abf-16482b99c6f0", + "Name": null + }, + "6489090a-fca7-4814-a3b4-c1a1d1aa3a14": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6489090a-fca7-4814-a3b4-c1a1d1aa3a14", + "Name": null + }, + "d390dfb3-ec3f-4a1b-83ce-005d79a56ee2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -56.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "6489090a-fca7-4814-a3b4-c1a1d1aa3a14", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "6489090a-fca7-4814-a3b4-c1a1d1aa3a14", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -56.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d390dfb3-ec3f-4a1b-83ce-005d79a56ee2", + "Name": null + }, + "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509", + "Name": null + }, + "3113083a-ec22-4cdb-813c-46ba0ddee0f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -54.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -54.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -54.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -54.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3113083a-ec22-4cdb-813c-46ba0ddee0f0", + "Name": null + }, + "ab1c0293-4c44-485a-af60-18c6de3b3c93": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ab1c0293-4c44-485a-af60-18c6de3b3c93", + "Name": null + }, + "cbc806c9-3cf8-476e-88c2-663a81447292": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -53.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ab1c0293-4c44-485a-af60-18c6de3b3c93", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ab1c0293-4c44-485a-af60-18c6de3b3c93", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -53.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cbc806c9-3cf8-476e-88c2-663a81447292", + "Name": null + }, + "f2336244-8645-4d29-a733-27c3b432340b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f2336244-8645-4d29-a733-27c3b432340b", + "Name": null + }, + "f74c61e1-593d-41a9-b902-2eefaf5043d5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -51.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -51.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f2336244-8645-4d29-a733-27c3b432340b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f2336244-8645-4d29-a733-27c3b432340b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -51.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -51.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f74c61e1-593d-41a9-b902-2eefaf5043d5", + "Name": null + }, + "ecc9f632-802e-4d91-9e93-f73497c2536f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ecc9f632-802e-4d91-9e93-f73497c2536f", + "Name": null + }, + "dae1804b-4e2a-4701-beb7-e01855726650": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ecc9f632-802e-4d91-9e93-f73497c2536f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ecc9f632-802e-4d91-9e93-f73497c2536f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dae1804b-4e2a-4701-beb7-e01855726650", + "Name": null + }, + "ab3fa574-e372-42a5-8a21-8cc938daae0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ab3fa574-e372-42a5-8a21-8cc938daae0b", + "Name": null + }, + "0327459b-b744-423a-9136-b7a7d7ae23c3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -48.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -48.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ab3fa574-e372-42a5-8a21-8cc938daae0b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ab3fa574-e372-42a5-8a21-8cc938daae0b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -48.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -48.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0327459b-b744-423a-9136-b7a7d7ae23c3", + "Name": null + }, + "8c3388cc-12ba-4439-b477-fab180860567": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8c3388cc-12ba-4439-b477-fab180860567", + "Name": null + }, + "7d557a36-d258-4bf3-b094-dee285d7f867": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -47.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8c3388cc-12ba-4439-b477-fab180860567", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8c3388cc-12ba-4439-b477-fab180860567", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -47.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7d557a36-d258-4bf3-b094-dee285d7f867", + "Name": null + }, + "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415", + "Name": null + }, + "5e56674b-3a97-4966-8ef7-814eab3c02d0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -45.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -45.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -45.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -45.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5e56674b-3a97-4966-8ef7-814eab3c02d0", + "Name": null + }, + "8eacceda-08e7-419d-92cd-955ee2e32547": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8eacceda-08e7-419d-92cd-955ee2e32547", + "Name": null + }, + "b2db9cfe-92a4-406e-a664-0647f8ccca30": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -44.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8eacceda-08e7-419d-92cd-955ee2e32547", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8eacceda-08e7-419d-92cd-955ee2e32547", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -44.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b2db9cfe-92a4-406e-a664-0647f8ccca30", + "Name": null + }, + "844c36b4-cedf-4e94-88a6-df931c6f52d0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "844c36b4-cedf-4e94-88a6-df931c6f52d0", + "Name": null + }, + "4fe8e40e-860a-45c7-9bb6-4f6eef8287f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -42.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -42.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "844c36b4-cedf-4e94-88a6-df931c6f52d0", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "844c36b4-cedf-4e94-88a6-df931c6f52d0", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -42.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -42.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4fe8e40e-860a-45c7-9bb6-4f6eef8287f0", + "Name": null + }, + "0ae51050-f7e4-4fa5-8a45-3c28df241143": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0ae51050-f7e4-4fa5-8a45-3c28df241143", + "Name": null + }, + "febf34e0-2342-4073-a959-da6ecc62c484": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -41.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0ae51050-f7e4-4fa5-8a45-3c28df241143", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0ae51050-f7e4-4fa5-8a45-3c28df241143", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -41.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "febf34e0-2342-4073-a959-da6ecc62c484", + "Name": null + }, + "c1b3f3c9-0e76-496a-8d4a-61f76f40a747": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c1b3f3c9-0e76-496a-8d4a-61f76f40a747", + "Name": null + }, + "2a9e554b-ab84-4ef4-8c9b-6aff65b02193": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -39.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -39.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c1b3f3c9-0e76-496a-8d4a-61f76f40a747", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c1b3f3c9-0e76-496a-8d4a-61f76f40a747", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -39.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -39.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2a9e554b-ab84-4ef4-8c9b-6aff65b02193", + "Name": null + }, + "a988a85c-758b-4860-9b98-fdcc7aeec592": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a988a85c-758b-4860-9b98-fdcc7aeec592", + "Name": null + }, + "2e64a3bf-3234-490b-8ed2-d22862ba33c3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -38.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a988a85c-758b-4860-9b98-fdcc7aeec592", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a988a85c-758b-4860-9b98-fdcc7aeec592", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -38.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2e64a3bf-3234-490b-8ed2-d22862ba33c3", + "Name": null + }, + "fec977a4-d81f-4e13-8f0d-4992a97aaec2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fec977a4-d81f-4e13-8f0d-4992a97aaec2", + "Name": null + }, + "6b194a90-ac4c-4f89-81f2-7eec26a259d9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -36.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -36.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fec977a4-d81f-4e13-8f0d-4992a97aaec2", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fec977a4-d81f-4e13-8f0d-4992a97aaec2", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -36.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -36.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6b194a90-ac4c-4f89-81f2-7eec26a259d9", + "Name": null + }, + "7e68f498-5590-41cc-839a-3b76b826d59f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7e68f498-5590-41cc-839a-3b76b826d59f", + "Name": null + }, + "9cf64079-cdef-40c9-9e1d-71001ecef6ba": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7e68f498-5590-41cc-839a-3b76b826d59f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7e68f498-5590-41cc-839a-3b76b826d59f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9cf64079-cdef-40c9-9e1d-71001ecef6ba", + "Name": null + }, + "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f", + "Name": null + }, + "53125eae-8b92-47f2-b888-db1a08d26614": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -33.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -33.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -33.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -33.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "53125eae-8b92-47f2-b888-db1a08d26614", + "Name": null + }, + "2e220695-f858-451a-996c-88813b2e4d4c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2e220695-f858-451a-996c-88813b2e4d4c", + "Name": null + }, + "19eed878-5722-45e9-968f-bdc5ef1705b7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -32.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2e220695-f858-451a-996c-88813b2e4d4c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2e220695-f858-451a-996c-88813b2e4d4c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -32.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "19eed878-5722-45e9-968f-bdc5ef1705b7", + "Name": null + }, + "67949bc5-fc6c-4e03-b48e-750d673b3b45": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "67949bc5-fc6c-4e03-b48e-750d673b3b45", + "Name": null + }, + "b04741a8-8d75-4a20-9a02-713c7c9d5961": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "67949bc5-fc6c-4e03-b48e-750d673b3b45", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "67949bc5-fc6c-4e03-b48e-750d673b3b45", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b04741a8-8d75-4a20-9a02-713c7c9d5961", + "Name": null + }, + "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6", + "Name": null + }, + "71f9813c-15b2-4996-b966-d66fa6c5e1d7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "71f9813c-15b2-4996-b966-d66fa6c5e1d7", + "Name": null + }, + "30479846-1e9d-4b13-98d0-ebc246e3e47d": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "30479846-1e9d-4b13-98d0-ebc246e3e47d", + "Name": null + }, + "d0679ff9-51db-44d0-9743-3ae8c814face": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5, + "Green": 0.5, + "Blue": 0.5, + "Alpha": 1.0 + }, + "SpecularFactor": 0.5, + "GlossinessFactor": 0.3, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Name": "Steel" + }, + "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 1.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.10000000149011612, + "GlossinessFactor": 0.10000000149011612, + "Unlit": true, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Name": "Z" + }, + "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151": { + "discriminator": "Elements.Geometry.Profiles.WideFlangeProfile", + "d": 0.45465999999999995, + "tw": 0.008001, + "bf": 0.152908, + "tf": 0.013335, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.076454, + "Y": -0.1254, + "Z": 0.0 + }, + { + "X": -0.076454, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": -0.0040005, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": -0.0040005, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": -0.076454, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": -0.076454, + "Y": -0.58006, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.58006, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": 0.0040005, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": 0.0040005, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.1254, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Name": "W18x40" + }, + "1f248147-be87-4d6a-922b-e7bf05d5f27e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Name": "W18x40" + }, + "e3cd3000-5e61-43c0-a010-a6757408d2ac": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Name": "W18x40" + }, + "c9699dd2-d040-4a2c-ad98-36443b0d037a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Name": "W18x40" + }, + "442ea777-71e8-42e2-a88c-d741cce24ce5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.408326913195984, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.408326913195984, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Name": "W18x40" + }, + "edad7470-dae0-4697-a2aa-8adc95f4440a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Name": "W18x40" + }, + "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Name": "W18x40" + }, + "e5972626-f896-4b80-b62f-fa93a8846507": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.09859999999999935, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.09859999999999935, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e5972626-f896-4b80-b62f-fa93a8846507", + "Name": "W18x40" + }, + "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.06574000000000169, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.06574000000000169, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Name": "W18x40" + }, + "4dc79d1f-76cc-4eac-ba1d-90c0929442e9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.11850615005137959, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.11850615005137959, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Name": "W18x40" + }, + "39b28bf6-91db-4c72-b448-44bed8dc6bc0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.890749673853066, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.890749673853066, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Name": "W18x40" + }, + "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Name": "W18x40" + }, + "0b85760d-9483-48e4-99ef-f0158063192f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.3990599999999986, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.3990599999999986, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0b85760d-9483-48e4-99ef-f0158063192f", + "Name": "W18x40" + }, + "2d8372e3-18d6-43f5-b8a6-ca8af44199e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009244729780939, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009244729780939, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Name": "W18x40" + }, + "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.732399999999998, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.732399999999998, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Name": "W18x40" + }, + "f1f4efee-0d74-4a09-8341-e6127bd83748": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009255823777184, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009255823777184, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Name": "W18x40" + }, + "d4da724b-0d2f-4bd3-acf2-5d3697adf278": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.598600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.598600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Name": "W18x40" + }, + "b110d957-b9da-4137-9c21-3ec50b79b33e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.0657400000000017, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.0657400000000017, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Name": "W18x40" + }, + "e0c50391-a50c-417e-a648-1d8139e40aa4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.5268330631203275, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.5268330631203275, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Name": "W18x40" + }, + "3bf2c337-826f-4c12-b4d9-a345602f7c71": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.48242276065708173, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.48242276065708173, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Name": "W18x40" + }, + "9b7bdf59-55a7-4daf-9c50-86da88398d8a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.399059999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.399059999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Name": "W18x40" + }, + "34bbf385-46d3-47bf-83a0-3a400bd05173": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.18196385245427163, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.18196385245427163, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Name": "W18x40" + }, + "bbfc5b0f-cc29-4045-91bf-821e7813de86": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Name": "W18x40" + }, + "2984e71a-f669-4201-8e3b-e26ab9529910": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.848600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.848600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Name": "W18x40" + }, + "ae17b256-3a91-41c9-b812-a732b948db41": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ae17b256-3a91-41c9-b812-a732b948db41", + "Name": "W18x40", + "EdgeId": 5, + "ExternalEdgeId": 5 + }, + "82cbeaef-d3df-4277-80d6-2690654b1c05": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "82cbeaef-d3df-4277-80d6-2690654b1c05", + "Name": null + }, + "b1f59156-7366-4c12-9ed9-6fe976dba558": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b1f59156-7366-4c12-9ed9-6fe976dba558", + "Name": "W18x40", + "EdgeId": 6 + }, + "cfbd5350-0d10-43ce-b63c-9d9c38caa4dc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfbd5350-0d10-43ce-b63c-9d9c38caa4dc", + "Name": null + }, + "c561276f-cf9b-481a-81ad-93acecd17b23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c561276f-cf9b-481a-81ad-93acecd17b23", + "Name": "W18x40", + "EdgeId": 7 + }, + "753f627d-b9d1-4c55-b3cb-6ee8584fc1c4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "753f627d-b9d1-4c55-b3cb-6ee8584fc1c4", + "Name": null + }, + "31e4920c-a82d-4dc1-a3ab-5adb5ba9ff3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "31e4920c-a82d-4dc1-a3ab-5adb5ba9ff3b", + "Name": "W18x40", + "EdgeId": 8, + "ExternalEdgeId": 8 + }, + "877ba8f8-2136-413e-9809-ff6187e71bfe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "877ba8f8-2136-413e-9809-ff6187e71bfe", + "Name": null + }, + "b3833bc9-d208-41dc-b000-609e389a8291": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b3833bc9-d208-41dc-b000-609e389a8291", + "Name": "W18x40", + "EdgeId": 16, + "ExternalEdgeId": 16 + }, + "d255fd5c-04f5-4027-976a-141e72bba131": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d255fd5c-04f5-4027-976a-141e72bba131", + "Name": null + }, + "c8aececb-18c8-4823-ba46-4b0d519535de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c8aececb-18c8-4823-ba46-4b0d519535de", + "Name": "W18x40", + "EdgeId": 17 + }, + "41256acb-0d1b-4b7c-9cc3-fa2611f2adde": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41256acb-0d1b-4b7c-9cc3-fa2611f2adde", + "Name": null + }, + "466ad02b-076d-487c-af32-38e1f683bce2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "466ad02b-076d-487c-af32-38e1f683bce2", + "Name": "W18x40", + "EdgeId": 18 + }, + "10595b28-3506-44e5-9c50-30c36abfffea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10595b28-3506-44e5-9c50-30c36abfffea", + "Name": null + }, + "a6070242-e5ee-4d3f-961c-5efee9e4d87a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a6070242-e5ee-4d3f-961c-5efee9e4d87a", + "Name": "W18x40", + "EdgeId": 24, + "ExternalEdgeId": 24 + }, + "6e332766-3823-49ef-9e09-023624f445f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e332766-3823-49ef-9e09-023624f445f5", + "Name": null + }, + "97132164-947a-4bf8-bd7b-d1ad761938ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "97132164-947a-4bf8-bd7b-d1ad761938ef", + "Name": "W18x40", + "EdgeId": 25, + "ExternalEdgeId": 25 + }, + "ff688718-5b9e-4473-b14b-87a77ef9fa7b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ff688718-5b9e-4473-b14b-87a77ef9fa7b", + "Name": null + }, + "b7cca279-36ad-44b6-9905-051a28e63e69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b7cca279-36ad-44b6-9905-051a28e63e69", + "Name": "W18x40", + "EdgeId": 26 + }, + "37a98013-68f7-4a72-8ed9-ee922b09017b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "37a98013-68f7-4a72-8ed9-ee922b09017b", + "Name": null + }, + "e3d693f8-6171-497c-8038-f4d0035f1e4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e3d693f8-6171-497c-8038-f4d0035f1e4e", + "Name": "W18x40", + "EdgeId": 32 + }, + "c73c0800-487b-4a98-8fb1-92c3e1e615ee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c73c0800-487b-4a98-8fb1-92c3e1e615ee", + "Name": null + }, + "92b851c6-b096-406d-821f-799e727c0cc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "92b851c6-b096-406d-821f-799e727c0cc0", + "Name": "W18x40", + "EdgeId": 33 + }, + "a9f3cc05-0956-4d74-b2ae-ab855a40614c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a9f3cc05-0956-4d74-b2ae-ab855a40614c", + "Name": null + }, + "39e05e73-5819-4487-ab9d-7f65bc2eec6e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "39e05e73-5819-4487-ab9d-7f65bc2eec6e", + "Name": "W18x40", + "EdgeId": 34, + "ExternalEdgeId": 34 + }, + "2eb33d03-229f-44d6-b651-3e115a3895cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 0.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2eb33d03-229f-44d6-b651-3e115a3895cd", + "Name": null + }, + "1e006143-11ee-4e87-b178-d979565d0b3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1e006143-11ee-4e87-b178-d979565d0b3a", + "Name": "W18x40", + "EdgeId": 41, + "ExternalEdgeId": 41 + }, + "9acdad82-edfc-428f-ac09-ea6d3bc22518": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9acdad82-edfc-428f-ac09-ea6d3bc22518", + "Name": null + }, + "e4468727-72c6-4e95-9340-2ea4f16092da": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e4468727-72c6-4e95-9340-2ea4f16092da", + "Name": "W18x40", + "EdgeId": 42 + }, + "f3baf7cb-f24d-4cb8-be12-9bc0901ee832": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f3baf7cb-f24d-4cb8-be12-9bc0901ee832", + "Name": null + }, + "8a02c5bb-287e-4cc6-a8a9-65b4ea10b2ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8a02c5bb-287e-4cc6-a8a9-65b4ea10b2ef", + "Name": "W18x40", + "EdgeId": 43 + }, + "2b5a6655-46b7-471a-b200-3b5212821674": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b5a6655-46b7-471a-b200-3b5212821674", + "Name": null + }, + "ec5e2769-91a2-4c5d-9c51-ca1965c7bd16": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec5e2769-91a2-4c5d-9c51-ca1965c7bd16", + "Name": "W18x40", + "EdgeId": 47 + }, + "cc444e69-3fef-4829-b15f-d96481d23430": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc444e69-3fef-4829-b15f-d96481d23430", + "Name": null + }, + "a9475a27-ff48-4320-87a5-a4356568df4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a9475a27-ff48-4320-87a5-a4356568df4b", + "Name": "W18x40", + "EdgeId": 48 + }, + "ebd81fb1-ec36-4d7f-a2e3-bad8555dfc97": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ebd81fb1-ec36-4d7f-a2e3-bad8555dfc97", + "Name": null + }, + "b49b476f-0728-4dfb-bf8c-3b801f66251a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b49b476f-0728-4dfb-bf8c-3b801f66251a", + "Name": "W18x40", + "EdgeId": 52, + "ExternalEdgeId": 52 + }, + "168c09dc-e2ba-47a4-b7b5-cb3e8dd542b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "168c09dc-e2ba-47a4-b7b5-cb3e8dd542b3", + "Name": null + }, + "1cfb46f7-63b4-43b0-b104-79dfaabc963b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1cfb46f7-63b4-43b0-b104-79dfaabc963b", + "Name": "W18x40", + "EdgeId": 53 + }, + "5608a27d-0f01-4c80-b161-c54662595932": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5608a27d-0f01-4c80-b161-c54662595932", + "Name": null + }, + "29c93ade-ace5-4fbe-88fa-d3a6061c388b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "29c93ade-ace5-4fbe-88fa-d3a6061c388b", + "Name": "W18x40", + "EdgeId": 58 + }, + "e4b51bce-581a-4b7b-a35e-e943b7c2144d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4b51bce-581a-4b7b-a35e-e943b7c2144d", + "Name": null + }, + "4625c2ce-39df-4173-ae2d-b393e079f119": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4625c2ce-39df-4173-ae2d-b393e079f119", + "Name": "W18x40", + "EdgeId": 59 + }, + "4e1b3209-6273-44d5-8900-75a71724d698": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e1b3209-6273-44d5-8900-75a71724d698", + "Name": null + }, + "f9cffb1b-0da5-481c-b77e-849634352a77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f9cffb1b-0da5-481c-b77e-849634352a77", + "Name": "W18x40", + "EdgeId": 60, + "ExternalEdgeId": 60 + }, + "621ecd7d-9d31-428e-b432-24b910e8fc53": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "621ecd7d-9d31-428e-b432-24b910e8fc53", + "Name": null + }, + "226e428e-5844-4099-934c-c761c5029249": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "226e428e-5844-4099-934c-c761c5029249", + "Name": "W18x40", + "EdgeId": 65 + }, + "4e2d3230-d888-4514-824a-3b4523c18f13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e2d3230-d888-4514-824a-3b4523c18f13", + "Name": null + }, + "2daa57de-4f29-493b-8ecc-1a57c56e3ba1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2daa57de-4f29-493b-8ecc-1a57c56e3ba1", + "Name": "W18x40", + "EdgeId": 66 + }, + "0daa255c-a59c-456b-9134-01df740622b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0daa255c-a59c-456b-9134-01df740622b6", + "Name": null + }, + "340a59ac-f7c0-4f16-afe9-316a6c9c39b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "340a59ac-f7c0-4f16-afe9-316a6c9c39b7", + "Name": "W18x40", + "EdgeId": 70 + }, + "5b664155-fdb4-49cb-a10d-125580438eee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b664155-fdb4-49cb-a10d-125580438eee", + "Name": null + }, + "d7891b32-e863-43d0-a5ff-bfe2e8385839": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d7891b32-e863-43d0-a5ff-bfe2e8385839", + "Name": "W18x40", + "EdgeId": 71 + }, + "8dd0de28-dd71-412e-a94a-2e3ad8c91a48": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8dd0de28-dd71-412e-a94a-2e3ad8c91a48", + "Name": null + }, + "f9e1b96a-32d7-4f7d-9e2d-3ff0de635348": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f9e1b96a-32d7-4f7d-9e2d-3ff0de635348", + "Name": "W18x40", + "EdgeId": 75, + "ExternalEdgeId": 75 + }, + "14634e11-1ae6-4b2b-91db-4443ea657d96": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14634e11-1ae6-4b2b-91db-4443ea657d96", + "Name": null + }, + "d78784a4-d29d-4724-ad9e-f0d0c4356c4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d78784a4-d29d-4724-ad9e-f0d0c4356c4c", + "Name": "W18x40", + "EdgeId": 76 + }, + "29d9b80a-b9ae-49fd-917e-12a075ccc9e1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "29d9b80a-b9ae-49fd-917e-12a075ccc9e1", + "Name": null + }, + "f23036c8-9449-4e50-83e0-e776ea5edd62": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f23036c8-9449-4e50-83e0-e776ea5edd62", + "Name": "W18x40", + "EdgeId": 81 + }, + "60eb3957-3a8b-458e-b99e-6c50df3c41a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "60eb3957-3a8b-458e-b99e-6c50df3c41a6", + "Name": null + }, + "cec114d5-e4d6-454f-9b34-a57d4a79e47e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cec114d5-e4d6-454f-9b34-a57d4a79e47e", + "Name": "W18x40", + "EdgeId": 82 + }, + "d9578b9b-c652-4266-a0fd-eb07654736b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9578b9b-c652-4266-a0fd-eb07654736b6", + "Name": null + }, + "f59dbd27-9bde-4cfe-8761-09f55dc5ac0d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f59dbd27-9bde-4cfe-8761-09f55dc5ac0d", + "Name": "W18x40", + "EdgeId": 83, + "ExternalEdgeId": 83 + }, + "ae45d0c8-1906-4c70-bb93-c32d9466ddc4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae45d0c8-1906-4c70-bb93-c32d9466ddc4", + "Name": null + }, + "a9dc5e6a-97c9-4c44-a00a-f92205bfcadd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a9dc5e6a-97c9-4c44-a00a-f92205bfcadd", + "Name": "W18x40", + "EdgeId": 88 + }, + "8e7912fe-7b3a-471f-ab34-64bf9ec274e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8e7912fe-7b3a-471f-ab34-64bf9ec274e6", + "Name": null + }, + "6013df4e-bede-4a41-ad39-05a61f6c79ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6013df4e-bede-4a41-ad39-05a61f6c79ff", + "Name": "W18x40", + "EdgeId": 89 + }, + "4f6a8b84-6e6e-4670-bf2d-d6c05ff49b19": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f6a8b84-6e6e-4670-bf2d-d6c05ff49b19", + "Name": null + }, + "699e7aa7-8ac3-4131-93f8-238c84378764": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "699e7aa7-8ac3-4131-93f8-238c84378764", + "Name": "W18x40", + "EdgeId": 93 + }, + "bc811a61-40c9-45f7-a21e-06f541b95670": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bc811a61-40c9-45f7-a21e-06f541b95670", + "Name": null + }, + "51d36270-886e-4f9d-859f-d82e4b5dee53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "51d36270-886e-4f9d-859f-d82e4b5dee53", + "Name": "W18x40", + "EdgeId": 94 + }, + "f49c573e-fc3d-488f-8d50-8ebd1aee2074": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f49c573e-fc3d-488f-8d50-8ebd1aee2074", + "Name": null + }, + "9a1c5df6-ac81-4698-9004-3efe13e37b47": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9a1c5df6-ac81-4698-9004-3efe13e37b47", + "Name": "W18x40", + "EdgeId": 98, + "ExternalEdgeId": 98 + }, + "c0c93675-73aa-4281-a31e-6e0da3bcafa1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0c93675-73aa-4281-a31e-6e0da3bcafa1", + "Name": null + }, + "d997ae53-2842-436a-8686-49634a26f17e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d997ae53-2842-436a-8686-49634a26f17e", + "Name": "W18x40", + "EdgeId": 99 + }, + "228df31a-7ece-46e0-ae50-8eb9c1b21c51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "228df31a-7ece-46e0-ae50-8eb9c1b21c51", + "Name": null + }, + "20e54c91-a655-4be8-9671-4d5462e74320": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "20e54c91-a655-4be8-9671-4d5462e74320", + "Name": "W18x40", + "EdgeId": 104 + }, + "86529516-d2f5-4df4-8d6b-d51c8b940ed8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "86529516-d2f5-4df4-8d6b-d51c8b940ed8", + "Name": null + }, + "547eaa00-10da-4755-8fa0-48d58e01685f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "547eaa00-10da-4755-8fa0-48d58e01685f", + "Name": "W18x40", + "EdgeId": 105 + }, + "96a2943d-8b62-40de-9217-89c0c36ea25a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "96a2943d-8b62-40de-9217-89c0c36ea25a", + "Name": null + }, + "e02ec524-729b-4f92-b280-72484287779c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e02ec524-729b-4f92-b280-72484287779c", + "Name": "W18x40", + "EdgeId": 106, + "ExternalEdgeId": 106 + }, + "c2d1b78f-54f3-41f4-a9a3-40db314d57af": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 0.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c2d1b78f-54f3-41f4-a9a3-40db314d57af", + "Name": null + }, + "0ea3c452-bb63-4e86-9d01-d649e69bc608": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0ea3c452-bb63-4e86-9d01-d649e69bc608", + "Name": "W18x40", + "EdgeId": 113, + "ExternalEdgeId": 113 + }, + "5766748d-7453-43d3-b6af-05d0badf27a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5766748d-7453-43d3-b6af-05d0badf27a9", + "Name": null + }, + "7a705425-2382-4657-9852-4c3d323af2a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7a705425-2382-4657-9852-4c3d323af2a5", + "Name": "W18x40", + "EdgeId": 114 + }, + "20b42428-92dd-4175-be10-b972fc1a36ec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20b42428-92dd-4175-be10-b972fc1a36ec", + "Name": null + }, + "eb853b1e-b0ad-4842-a019-5a86ecba0abb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb853b1e-b0ad-4842-a019-5a86ecba0abb", + "Name": "W18x40", + "EdgeId": 115 + }, + "13cc1eea-637f-4be4-8bbf-4cc0a9ff8b8e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "13cc1eea-637f-4be4-8bbf-4cc0a9ff8b8e", + "Name": null + }, + "352550ee-0419-4677-93da-e17b83e458f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "352550ee-0419-4677-93da-e17b83e458f5", + "Name": "W18x40", + "EdgeId": 119 + }, + "172658a4-8e3d-41ca-bcd0-8502d4a69581": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "172658a4-8e3d-41ca-bcd0-8502d4a69581", + "Name": null + }, + "0cf4265c-2002-492d-8150-79472ec80f7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0cf4265c-2002-492d-8150-79472ec80f7c", + "Name": "W18x40", + "EdgeId": 120 + }, + "12353ffe-2c8b-4194-8079-d99389388383": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12353ffe-2c8b-4194-8079-d99389388383", + "Name": null + }, + "0207f7ff-a77e-41b8-93a2-adcd79f75719": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0207f7ff-a77e-41b8-93a2-adcd79f75719", + "Name": "W18x40", + "EdgeId": 124 + }, + "55ba5899-ce79-4ef3-8d8c-13795c0eb896": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55ba5899-ce79-4ef3-8d8c-13795c0eb896", + "Name": null + }, + "dd68a031-f7b3-4a22-8442-1f2af9f15842": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dd68a031-f7b3-4a22-8442-1f2af9f15842", + "Name": "W18x40", + "EdgeId": 125 + }, + "3e83e411-07fd-40d4-93a4-0b3391c11758": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3e83e411-07fd-40d4-93a4-0b3391c11758", + "Name": null + }, + "00f83664-313a-45ac-856c-45f7582a0779": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "00f83664-313a-45ac-856c-45f7582a0779", + "Name": "W18x40", + "EdgeId": 129, + "ExternalEdgeId": 129 + }, + "27ab68b9-2150-436b-afff-908c6cdad629": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "27ab68b9-2150-436b-afff-908c6cdad629", + "Name": null + }, + "9bb72b77-ce9a-4ad6-a3e4-453ace4dddcf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9bb72b77-ce9a-4ad6-a3e4-453ace4dddcf", + "Name": "W18x40", + "EdgeId": 130 + }, + "eb6394b6-c2b0-46f3-8a92-7a0161b83654": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eb6394b6-c2b0-46f3-8a92-7a0161b83654", + "Name": null + }, + "80db92c8-c919-475b-9184-d25b4a000538": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80db92c8-c919-475b-9184-d25b4a000538", + "Name": "W18x40", + "EdgeId": 135 + }, + "0b6aaf8b-c7e3-47b5-a816-569c02f1bc79": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b6aaf8b-c7e3-47b5-a816-569c02f1bc79", + "Name": null + }, + "6f0191a8-0e95-49e0-9e33-061a64129074": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6f0191a8-0e95-49e0-9e33-061a64129074", + "Name": "W18x40", + "EdgeId": 136 + }, + "25cd25be-43f9-4bb0-9cce-c9efbe8488c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25cd25be-43f9-4bb0-9cce-c9efbe8488c1", + "Name": null + }, + "b63d7598-f2d9-47d1-a81c-2398e9dde8c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b63d7598-f2d9-47d1-a81c-2398e9dde8c8", + "Name": "W18x40", + "EdgeId": 137, + "ExternalEdgeId": 137 + }, + "bb46dee5-c65d-4abf-a6fa-cfffb40bb545": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bb46dee5-c65d-4abf-a6fa-cfffb40bb545", + "Name": null + }, + "14bcaa75-d02b-413b-90bb-10e70c336f4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "14bcaa75-d02b-413b-90bb-10e70c336f4c", + "Name": "W18x40", + "EdgeId": 142 + }, + "5afd924d-be55-4993-b38c-6c59a9cbe103": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5afd924d-be55-4993-b38c-6c59a9cbe103", + "Name": null + }, + "21ec8bb1-aa2d-4937-b29a-058dce56cfb6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "21ec8bb1-aa2d-4937-b29a-058dce56cfb6", + "Name": "W18x40", + "EdgeId": 143 + }, + "e3de19ac-0e78-4532-890e-79da208e913d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3de19ac-0e78-4532-890e-79da208e913d", + "Name": null + }, + "80e1290c-92e5-48fb-8e47-edbeee3b16de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80e1290c-92e5-48fb-8e47-edbeee3b16de", + "Name": "W18x40", + "EdgeId": 147 + }, + "803463fe-3412-4f16-85fd-ceb2b0221053": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "803463fe-3412-4f16-85fd-ceb2b0221053", + "Name": null + }, + "814eb173-0496-447e-81bb-53c70cc1aa50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "814eb173-0496-447e-81bb-53c70cc1aa50", + "Name": "W18x40", + "EdgeId": 148 + }, + "f789e063-60e9-4a44-9a96-855fe3cdbddc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f789e063-60e9-4a44-9a96-855fe3cdbddc", + "Name": null + }, + "153d24c2-0859-4b89-9558-d7ce786cbdf7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "153d24c2-0859-4b89-9558-d7ce786cbdf7", + "Name": "W18x40", + "EdgeId": 152 + }, + "834b6b1a-8de9-4150-9960-f92ab9f2fa0d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "834b6b1a-8de9-4150-9960-f92ab9f2fa0d", + "Name": null + }, + "7f634a6d-baf6-4dc6-9e1e-503a40faf078": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7f634a6d-baf6-4dc6-9e1e-503a40faf078", + "Name": "W18x40", + "EdgeId": 153 + }, + "b0b69429-0368-4cf4-856b-b83b9cbbddf1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0b69429-0368-4cf4-856b-b83b9cbbddf1", + "Name": null + }, + "cc9761fa-4a8f-4e87-9ae4-3b48443ead31": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cc9761fa-4a8f-4e87-9ae4-3b48443ead31", + "Name": "W18x40", + "EdgeId": 157, + "ExternalEdgeId": 157 + }, + "d238319f-e6d4-470b-9ade-342276086489": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d238319f-e6d4-470b-9ade-342276086489", + "Name": null + }, + "28a300c9-e8a8-454e-8463-ed2fb1223134": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28a300c9-e8a8-454e-8463-ed2fb1223134", + "Name": "W18x40", + "EdgeId": 158 + }, + "178f4487-4e72-4188-8a0b-374a55919070": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "178f4487-4e72-4188-8a0b-374a55919070", + "Name": null + }, + "c254d40c-2e91-4648-a29b-042a9c9fb997": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c254d40c-2e91-4648-a29b-042a9c9fb997", + "Name": "W18x40", + "EdgeId": 164, + "ExternalEdgeId": 164 + }, + "b1c8b4a4-46b5-4575-93c4-0c9e1a040d60": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1c8b4a4-46b5-4575-93c4-0c9e1a040d60", + "Name": null + }, + "3b109814-03b3-451d-b7c4-099f5fe75d2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3b109814-03b3-451d-b7c4-099f5fe75d2e", + "Name": "W18x40", + "EdgeId": 165 + }, + "2fa0f4d4-df43-4d21-bba6-cfa9b009546c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2fa0f4d4-df43-4d21-bba6-cfa9b009546c", + "Name": null + }, + "f27f1de6-931f-4841-b988-ef70321cd9e6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f27f1de6-931f-4841-b988-ef70321cd9e6", + "Name": "W18x40", + "EdgeId": 166 + }, + "cc2d6fa3-1261-4daf-aee8-6058ca30519b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc2d6fa3-1261-4daf-aee8-6058ca30519b", + "Name": null + }, + "1b5e2158-e374-41f0-9643-cd6884186c74": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1b5e2158-e374-41f0-9643-cd6884186c74", + "Name": "W18x40", + "EdgeId": 167, + "ExternalEdgeId": 167 + }, + "dd1c836e-0c4c-43d8-af7e-294c0c4b0aa5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd1c836e-0c4c-43d8-af7e-294c0c4b0aa5", + "Name": null + }, + "0267933d-f93c-4a68-834a-82f3b75a087f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0267933d-f93c-4a68-834a-82f3b75a087f", + "Name": "W18x40", + "EdgeId": 173 + }, + "fe8fc3d9-9375-427a-b41e-f51bc1c7c621": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe8fc3d9-9375-427a-b41e-f51bc1c7c621", + "Name": null + }, + "0312ecbf-c857-4483-9371-79c74eee2b68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0312ecbf-c857-4483-9371-79c74eee2b68", + "Name": "W18x40", + "EdgeId": 174 + }, + "0b0d4c85-34ab-43f5-acc1-fdd5f5caba30": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b0d4c85-34ab-43f5-acc1-fdd5f5caba30", + "Name": null + }, + "42a61dc5-4ab6-4f71-9a76-51c5401cb920": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "42a61dc5-4ab6-4f71-9a76-51c5401cb920", + "Name": "W18x40", + "EdgeId": 178 + }, + "a4ff9b4a-2b07-44b4-9164-2365e10d455b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a4ff9b4a-2b07-44b4-9164-2365e10d455b", + "Name": null + }, + "ec21251a-bea5-487e-b1b3-68bbc46b72ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec21251a-bea5-487e-b1b3-68bbc46b72ef", + "Name": "W18x40", + "EdgeId": 179 + }, + "28ef286a-a38d-4af2-833a-0b589ea4919f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "28ef286a-a38d-4af2-833a-0b589ea4919f", + "Name": null + }, + "942f1fd1-4e02-410c-af7b-b50c1b651e34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "942f1fd1-4e02-410c-af7b-b50c1b651e34", + "Name": "W18x40", + "EdgeId": 183 + }, + "e35903a6-272e-49b5-b435-b06debdc5d45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e35903a6-272e-49b5-b435-b06debdc5d45", + "Name": null + }, + "8d9096ae-1c98-4c6a-acc4-c45b5ee912fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8d9096ae-1c98-4c6a-acc4-c45b5ee912fe", + "Name": "W18x40", + "EdgeId": 184 + }, + "212b18a1-d70b-4c38-a7e2-23280b28e092": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "212b18a1-d70b-4c38-a7e2-23280b28e092", + "Name": null + }, + "71ca6208-6333-470c-843c-9d19f925f5f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "71ca6208-6333-470c-843c-9d19f925f5f2", + "Name": "W18x40", + "EdgeId": 188, + "ExternalEdgeId": 188 + }, + "580c3b82-8c7f-4ecb-9211-4251e5e518ad": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "580c3b82-8c7f-4ecb-9211-4251e5e518ad", + "Name": null + }, + "27d03f63-12be-4317-b4d7-5959cd9167a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "27d03f63-12be-4317-b4d7-5959cd9167a8", + "Name": "W18x40", + "EdgeId": 189 + }, + "92ed1097-fbd6-4e08-b27b-f948674dcedd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "92ed1097-fbd6-4e08-b27b-f948674dcedd", + "Name": null + }, + "b5a2f412-ae2a-4599-937e-8db5c5e49059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b5a2f412-ae2a-4599-937e-8db5c5e49059", + "Name": "W18x40", + "EdgeId": 194 + }, + "2d2c997d-4597-404d-8ede-5ac742c52316": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d2c997d-4597-404d-8ede-5ac742c52316", + "Name": null + }, + "e42b18a8-d809-4ae5-a6ac-f6e960dbfa6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e42b18a8-d809-4ae5-a6ac-f6e960dbfa6f", + "Name": "W18x40", + "EdgeId": 195 + }, + "b5059e89-9afa-44e0-a2e0-60195ecd7759": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5059e89-9afa-44e0-a2e0-60195ecd7759", + "Name": null + }, + "28d5c4f5-4a70-4e61-bd27-ebd97a51a13e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28d5c4f5-4a70-4e61-bd27-ebd97a51a13e", + "Name": "W18x40", + "EdgeId": 196, + "ExternalEdgeId": 196 + }, + "3917c1f5-d035-4528-afb3-56b819596670": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3917c1f5-d035-4528-afb3-56b819596670", + "Name": null + }, + "c24e318a-1dd3-4029-8a0d-0bed4ad16a20": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c24e318a-1dd3-4029-8a0d-0bed4ad16a20", + "Name": "W18x40", + "EdgeId": 201 + }, + "305c2f31-a475-43e0-b8e8-f28fdc64c91a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "305c2f31-a475-43e0-b8e8-f28fdc64c91a", + "Name": null + }, + "a91f6a1c-c6bf-498f-87c7-824b80dd1029": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a91f6a1c-c6bf-498f-87c7-824b80dd1029", + "Name": "W18x40", + "EdgeId": 202 + }, + "9603393a-2a16-4fd0-8cee-458f2ff36694": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9603393a-2a16-4fd0-8cee-458f2ff36694", + "Name": null + }, + "938f81aa-f830-4892-9e3c-43fad84b3956": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "938f81aa-f830-4892-9e3c-43fad84b3956", + "Name": "W18x40", + "EdgeId": 206 + }, + "30edeeb3-df3d-438e-befd-4d154d7bb541": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30edeeb3-df3d-438e-befd-4d154d7bb541", + "Name": null + }, + "66263f74-855a-4d72-bc60-e40c1c303b75": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "66263f74-855a-4d72-bc60-e40c1c303b75", + "Name": "W18x40", + "EdgeId": 207 + }, + "0a085250-7e36-470a-9d9b-04b517d9dbaa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a085250-7e36-470a-9d9b-04b517d9dbaa", + "Name": null + }, + "78d96028-2809-4763-82c9-1b976ee4409c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "78d96028-2809-4763-82c9-1b976ee4409c", + "Name": "W18x40", + "EdgeId": 211 + }, + "64ce661d-3df1-485c-90ab-f633f935ff10": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64ce661d-3df1-485c-90ab-f633f935ff10", + "Name": null + }, + "46b02b69-c852-4a72-9ade-e334f2fd6bfb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "46b02b69-c852-4a72-9ade-e334f2fd6bfb", + "Name": "W18x40", + "EdgeId": 212 + }, + "e06995d7-3011-4b07-a0f0-9442f71d14f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e06995d7-3011-4b07-a0f0-9442f71d14f4", + "Name": null + }, + "0c9f542f-a91c-43a9-8c3e-9345bb876efa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0c9f542f-a91c-43a9-8c3e-9345bb876efa", + "Name": "W18x40", + "EdgeId": 216, + "ExternalEdgeId": 216 + }, + "b87e37b1-5692-4791-b43d-9337ed140548": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b87e37b1-5692-4791-b43d-9337ed140548", + "Name": null + }, + "7e8b900d-27bc-408a-81ae-53438247f059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e8b900d-27bc-408a-81ae-53438247f059", + "Name": "W18x40", + "EdgeId": 217 + }, + "52ec10a4-b2ab-4860-8c61-45c2c3352c4b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52ec10a4-b2ab-4860-8c61-45c2c3352c4b", + "Name": null + }, + "a997202a-5a3e-4e46-a8b9-03ba84857820": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a997202a-5a3e-4e46-a8b9-03ba84857820", + "Name": "W18x40", + "EdgeId": 222 + }, + "a1e3e2fa-a755-46d7-8da7-2b149275bdec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a1e3e2fa-a755-46d7-8da7-2b149275bdec", + "Name": null + }, + "172cf631-3712-4317-a993-91ba09e11d12": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "172cf631-3712-4317-a993-91ba09e11d12", + "Name": "W18x40", + "EdgeId": 223 + }, + "ad7da4a3-fa7e-49d2-8a31-25370b79a641": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ad7da4a3-fa7e-49d2-8a31-25370b79a641", + "Name": null + }, + "eb795953-2568-465f-9b74-f1078a8e68e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb795953-2568-465f-9b74-f1078a8e68e7", + "Name": "W18x40", + "EdgeId": 224, + "ExternalEdgeId": 224 + }, + "83c2a9b0-4ff9-44c8-9387-a1b53bd19876": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83c2a9b0-4ff9-44c8-9387-a1b53bd19876", + "Name": null + }, + "e89c308d-769d-49fe-9cb3-4e71364adf86": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e89c308d-769d-49fe-9cb3-4e71364adf86", + "Name": "W18x40", + "EdgeId": 229 + }, + "38923d51-2d66-429c-8df6-c17dcf977aec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38923d51-2d66-429c-8df6-c17dcf977aec", + "Name": null + }, + "a6ef0dfa-7138-4619-92dc-f7216e254d21": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a6ef0dfa-7138-4619-92dc-f7216e254d21", + "Name": "W18x40", + "EdgeId": 230 + }, + "3981bba0-275d-409b-be8a-21b147c63b24": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3981bba0-275d-409b-be8a-21b147c63b24", + "Name": null + }, + "c4c352fe-29ce-4226-b0ff-87fe9181f7a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c4c352fe-29ce-4226-b0ff-87fe9181f7a8", + "Name": "W18x40", + "EdgeId": 234 + }, + "792d35ba-505b-4717-ae30-0574541c8eee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "792d35ba-505b-4717-ae30-0574541c8eee", + "Name": null + }, + "54ea5cfa-826d-4678-966a-9a49a295c13f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "54ea5cfa-826d-4678-966a-9a49a295c13f", + "Name": "W18x40", + "EdgeId": 235 + }, + "10a378f9-7aec-40eb-87e5-011b689abdb5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10a378f9-7aec-40eb-87e5-011b689abdb5", + "Name": null + }, + "fd86a24e-118a-47df-9b62-6b8cc5319f4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fd86a24e-118a-47df-9b62-6b8cc5319f4a", + "Name": "W18x40", + "EdgeId": 239 + }, + "fc90d40e-84e6-4702-a2a8-c755dd966525": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc90d40e-84e6-4702-a2a8-c755dd966525", + "Name": null + }, + "1ca61af4-3939-4a30-8225-dcea7b7de391": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1ca61af4-3939-4a30-8225-dcea7b7de391", + "Name": "W18x40", + "EdgeId": 240 + }, + "acc0b12a-4dac-4bae-bffd-24899bbcee12": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "acc0b12a-4dac-4bae-bffd-24899bbcee12", + "Name": null + }, + "8dace4b8-440b-48db-9aae-37eb8d311e2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8dace4b8-440b-48db-9aae-37eb8d311e2e", + "Name": "W18x40", + "EdgeId": 244, + "ExternalEdgeId": 244 + }, + "cb9ae6b6-1e46-4736-ae26-768d4c7ec0be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cb9ae6b6-1e46-4736-ae26-768d4c7ec0be", + "Name": null + }, + "ef986c15-2ac9-46fa-a63f-84e8897dae3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ef986c15-2ac9-46fa-a63f-84e8897dae3b", + "Name": "W18x40", + "EdgeId": 245 + }, + "72477917-2055-44a6-9eaf-ff2c6fc52f17": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72477917-2055-44a6-9eaf-ff2c6fc52f17", + "Name": null + }, + "e056abb1-ed90-4b92-8fea-04471d0dad59": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e056abb1-ed90-4b92-8fea-04471d0dad59", + "Name": "W18x40", + "EdgeId": 250 + }, + "5c2a64a9-de66-4b9b-b9ca-205fa60436c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c2a64a9-de66-4b9b-b9ca-205fa60436c5", + "Name": null + }, + "41323531-d1a4-4aed-9c52-4f4b59259096": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "41323531-d1a4-4aed-9c52-4f4b59259096", + "Name": "W18x40", + "EdgeId": 251 + }, + "21304e88-f0df-43e1-99c1-6909c611ac69": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21304e88-f0df-43e1-99c1-6909c611ac69", + "Name": null + }, + "cbdc7041-d7bf-429d-a991-529ebd23ceb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cbdc7041-d7bf-429d-a991-529ebd23ceb7", + "Name": "W18x40", + "EdgeId": 252, + "ExternalEdgeId": 252 + }, + "4c8b2de0-0200-44a0-944e-dbb34527d3bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4c8b2de0-0200-44a0-944e-dbb34527d3bf", + "Name": null + }, + "4ceaa300-8022-4e39-a0bb-f5cefa889087": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4ceaa300-8022-4e39-a0bb-f5cefa889087", + "Name": "W18x40", + "EdgeId": 257 + }, + "ee66ca6c-6d45-491e-9df6-69b88afae611": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee66ca6c-6d45-491e-9df6-69b88afae611", + "Name": null + }, + "aebf6dbe-40f4-41f6-8f7b-41321d57115c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "aebf6dbe-40f4-41f6-8f7b-41321d57115c", + "Name": "W18x40", + "EdgeId": 258 + }, + "083b5588-5e6b-4f02-aa82-6cff6f88b1e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "083b5588-5e6b-4f02-aa82-6cff6f88b1e9", + "Name": null + }, + "31e5df48-79ef-42ce-a9e4-8d957267c117": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "31e5df48-79ef-42ce-a9e4-8d957267c117", + "Name": "W18x40", + "EdgeId": 262 + }, + "219ed329-0bc5-4c99-862b-f2de6df0322c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "219ed329-0bc5-4c99-862b-f2de6df0322c", + "Name": null + }, + "da1239f7-b819-4ab1-a324-af5463852f4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "da1239f7-b819-4ab1-a324-af5463852f4e", + "Name": "W18x40", + "EdgeId": 263 + }, + "ef757a8f-64a3-42ee-852d-bf403aa6a580": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef757a8f-64a3-42ee-852d-bf403aa6a580", + "Name": null + }, + "ccc3f409-ead5-4f79-8dbc-a02d8516b5ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ccc3f409-ead5-4f79-8dbc-a02d8516b5ff", + "Name": "W18x40", + "EdgeId": 267 + }, + "4ce11a50-452e-48b1-b02d-a9f5d1dc4da3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ce11a50-452e-48b1-b02d-a9f5d1dc4da3", + "Name": null + }, + "8572b7ba-86a0-4ee8-92d4-0f62896efd4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8572b7ba-86a0-4ee8-92d4-0f62896efd4a", + "Name": "W18x40", + "EdgeId": 268 + }, + "8f9fb229-5944-4913-bac2-297075383a87": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8f9fb229-5944-4913-bac2-297075383a87", + "Name": null + }, + "4fd42bbe-5a7d-4e8e-abf4-ee176c2088bd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4fd42bbe-5a7d-4e8e-abf4-ee176c2088bd", + "Name": "W18x40", + "EdgeId": 272, + "ExternalEdgeId": 272 + }, + "da0cd287-2462-42fe-93ca-db4662722c92": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da0cd287-2462-42fe-93ca-db4662722c92", + "Name": null + }, + "bccdd461-d584-4927-8b16-e92e6a8b2430": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bccdd461-d584-4927-8b16-e92e6a8b2430", + "Name": "W18x40", + "EdgeId": 273 + }, + "0cc56e04-7f6a-416e-8df6-2805b839072f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0cc56e04-7f6a-416e-8df6-2805b839072f", + "Name": null + }, + "9bf42062-7eb8-4246-858d-7f96ba9dd798": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9bf42062-7eb8-4246-858d-7f96ba9dd798", + "Name": "W18x40", + "EdgeId": 278 + }, + "58a4a2d1-a820-41d0-a640-3bf442ca65d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "58a4a2d1-a820-41d0-a640-3bf442ca65d3", + "Name": null + }, + "cce71879-c29e-499b-bbe3-3345e901b7c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cce71879-c29e-499b-bbe3-3345e901b7c9", + "Name": "W18x40", + "EdgeId": 279 + }, + "f4ac9691-fe5b-45bf-be64-9c4b7682136e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f4ac9691-fe5b-45bf-be64-9c4b7682136e", + "Name": null + }, + "509bdce4-fd50-43f5-ae44-981200acfbf1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "509bdce4-fd50-43f5-ae44-981200acfbf1", + "Name": "W18x40", + "EdgeId": 280, + "ExternalEdgeId": 280 + }, + "06e8e416-c7c7-4383-bda7-5dfde39a7a4b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "06e8e416-c7c7-4383-bda7-5dfde39a7a4b", + "Name": null + }, + "af4de305-e791-4466-b972-ea5a4f91c3bd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "af4de305-e791-4466-b972-ea5a4f91c3bd", + "Name": "W18x40", + "EdgeId": 285 + }, + "34075005-73c4-4e09-bebb-3288e90c2077": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "34075005-73c4-4e09-bebb-3288e90c2077", + "Name": null + }, + "7b9bf020-4f02-4de5-a71e-115d274ca524": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7b9bf020-4f02-4de5-a71e-115d274ca524", + "Name": "W18x40", + "EdgeId": 286 + }, + "95578b76-df01-422f-aaaf-0294be5e4ff6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95578b76-df01-422f-aaaf-0294be5e4ff6", + "Name": null + }, + "b1f7bd78-ff3e-44ea-a40a-163ff4b56750": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b1f7bd78-ff3e-44ea-a40a-163ff4b56750", + "Name": "W18x40", + "EdgeId": 290 + }, + "cf712197-8635-46d9-a053-67892cf1a895": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf712197-8635-46d9-a053-67892cf1a895", + "Name": null + }, + "40241f81-75fa-475c-b862-c0585825657e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "40241f81-75fa-475c-b862-c0585825657e", + "Name": "W18x40", + "EdgeId": 291 + }, + "cad36578-ac43-44e6-a79d-f39dda06c8ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cad36578-ac43-44e6-a79d-f39dda06c8ed", + "Name": null + }, + "dc296252-72e6-4f46-b78a-24e132cd9e15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dc296252-72e6-4f46-b78a-24e132cd9e15", + "Name": "W18x40", + "EdgeId": 295 + }, + "6325c132-549d-455f-915f-46ed65eab9b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6325c132-549d-455f-915f-46ed65eab9b4", + "Name": null + }, + "d8a1a5b1-5cde-4f8a-ac7d-1c243e95dcce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d8a1a5b1-5cde-4f8a-ac7d-1c243e95dcce", + "Name": "W18x40", + "EdgeId": 296 + }, + "e3b51de8-ade1-4f4e-b571-9c6ff749da4e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3b51de8-ade1-4f4e-b571-9c6ff749da4e", + "Name": null + }, + "9ab58337-1dcd-4ff7-817b-401ed68a61ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9ab58337-1dcd-4ff7-817b-401ed68a61ef", + "Name": "W18x40", + "EdgeId": 300, + "ExternalEdgeId": 300 + }, + "af38a673-6719-4914-91a6-1fff4f946153": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "af38a673-6719-4914-91a6-1fff4f946153", + "Name": null + }, + "baa14628-227b-4931-8af4-81dffebd47f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "baa14628-227b-4931-8af4-81dffebd47f7", + "Name": "W18x40", + "EdgeId": 301 + }, + "970364de-abf3-436e-898f-c45e74433d64": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "970364de-abf3-436e-898f-c45e74433d64", + "Name": null + }, + "4f5b621b-7f1b-4ea3-b29a-2ad73e0160fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4f5b621b-7f1b-4ea3-b29a-2ad73e0160fd", + "Name": "W18x40", + "EdgeId": 306 + }, + "4a1c8a62-ea42-414e-940f-5bf779aff334": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a1c8a62-ea42-414e-940f-5bf779aff334", + "Name": null + }, + "dae33c7d-cfe7-4acb-a455-c3f1451d1378": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dae33c7d-cfe7-4acb-a455-c3f1451d1378", + "Name": "W18x40", + "EdgeId": 307, + "ExternalEdgeId": 307 + }, + "005b342f-75ba-441c-b00f-dc8f11db1b3b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "005b342f-75ba-441c-b00f-dc8f11db1b3b", + "Name": null + }, + "d7ac1548-7650-472a-8741-bad52be9afd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d7ac1548-7650-472a-8741-bad52be9afd9", + "Name": "W18x40", + "EdgeId": 308, + "ExternalEdgeId": 308 + }, + "950de28f-aff7-44ed-b2b9-7e7668f518d8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "950de28f-aff7-44ed-b2b9-7e7668f518d8", + "Name": null + }, + "d72e0bf9-4229-438e-9047-1d816f068c4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d72e0bf9-4229-438e-9047-1d816f068c4e", + "Name": "W18x40", + "EdgeId": 313 + }, + "8a1d8841-6ea7-4d6f-a42f-bea0473987aa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8a1d8841-6ea7-4d6f-a42f-bea0473987aa", + "Name": null + }, + "eeb9e196-db05-4d71-84b0-bcebf07b6063": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eeb9e196-db05-4d71-84b0-bcebf07b6063", + "Name": "W18x40", + "EdgeId": 314, + "ExternalEdgeId": 314 + }, + "e8134d32-05b1-42ab-8599-a6ef0f201ee8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8134d32-05b1-42ab-8599-a6ef0f201ee8", + "Name": null + }, + "f4486d31-63dd-4d86-bf93-21122cd0fd7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f4486d31-63dd-4d86-bf93-21122cd0fd7d", + "Name": "W18x40", + "EdgeId": 318 + }, + "6b1e787c-a045-410d-8d10-2aea8ffb8f81": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6b1e787c-a045-410d-8d10-2aea8ffb8f81", + "Name": null + }, + "b105cc2e-6e0a-43bb-b37c-62d76c1f707a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b105cc2e-6e0a-43bb-b37c-62d76c1f707a", + "Name": "W18x40", + "EdgeId": 319, + "ExternalEdgeId": 319 + }, + "005413af-e9d7-4fdc-b916-ac01234b64d5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "005413af-e9d7-4fdc-b916-ac01234b64d5", + "Name": null + }, + "ff827db3-a27a-432f-af3d-3d3479b8d84d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ff827db3-a27a-432f-af3d-3d3479b8d84d", + "Name": "W18x40", + "EdgeId": 323 + }, + "a425b9c2-21ad-4e34-9d73-4edbbea686fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a425b9c2-21ad-4e34-9d73-4edbbea686fc", + "Name": null + }, + "f72b2c92-63be-4d8a-b1aa-7dd8569b7445": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f72b2c92-63be-4d8a-b1aa-7dd8569b7445", + "Name": "W18x40", + "EdgeId": 324, + "ExternalEdgeId": 324 + }, + "dc8b16a4-6045-42ad-9046-29b7f7211e92": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc8b16a4-6045-42ad-9046-29b7f7211e92", + "Name": null + }, + "a592d121-7ed6-4df3-b357-3b3952cebe69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a592d121-7ed6-4df3-b357-3b3952cebe69", + "Name": "W18x40", + "EdgeId": 328, + "ExternalEdgeId": 328 + }, + "ad8cc820-fddc-4b23-a9a6-1c6eb18b0413": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ad8cc820-fddc-4b23-a9a6-1c6eb18b0413", + "Name": null + }, + "ae3b6a32-2682-4dce-a010-edf6c92760ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ae3b6a32-2682-4dce-a010-edf6c92760ee", + "Name": "W18x40", + "EdgeId": 329, + "ExternalEdgeId": 329 + }, + "53da9573-c7ba-42e4-a746-5c36dfa5bbe5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53da9573-c7ba-42e4-a746-5c36dfa5bbe5", + "Name": null + }, + "0e54563f-2fc4-4d9d-9369-32f6c2ea0b49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0e54563f-2fc4-4d9d-9369-32f6c2ea0b49", + "Name": "W18x40", + "EdgeId": 331, + "ExternalEdgeId": 331 + }, + "382530bd-989e-4f59-a332-a6c78c466768": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "382530bd-989e-4f59-a332-a6c78c466768", + "Name": null + }, + "195a46b1-7b5f-4d19-9527-c1f581a96fab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "195a46b1-7b5f-4d19-9527-c1f581a96fab", + "Name": "W18x40", + "EdgeId": 332 + }, + "02a57abe-d470-4d9f-aeeb-faa2c9c3bcf4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02a57abe-d470-4d9f-aeeb-faa2c9c3bcf4", + "Name": null + }, + "673f2af9-52df-4335-9457-1b8ecf1aa4a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "673f2af9-52df-4335-9457-1b8ecf1aa4a0", + "Name": "W18x40", + "EdgeId": 333 + }, + "42b6e906-313d-4eb8-b831-ac9753a803cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "42b6e906-313d-4eb8-b831-ac9753a803cf", + "Name": null + }, + "76e6154e-9902-42e5-bd4e-d4a909f8aa79": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "76e6154e-9902-42e5-bd4e-d4a909f8aa79", + "Name": "W18x40", + "EdgeId": 334, + "ExternalEdgeId": 334 + }, + "7d9660d4-43b2-482e-82b4-292d8e2d001c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d9660d4-43b2-482e-82b4-292d8e2d001c", + "Name": null + }, + "292e1a1d-9b9b-4921-b15a-dfac213efee1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "292e1a1d-9b9b-4921-b15a-dfac213efee1", + "Name": "W18x40", + "EdgeId": 339, + "ExternalEdgeId": 339 + }, + "db1e7492-dd35-4398-8549-1c5bf5d84797": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "db1e7492-dd35-4398-8549-1c5bf5d84797", + "Name": null + }, + "bb07065a-6c3d-4545-90fa-b3c8cb1989ca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "bb07065a-6c3d-4545-90fa-b3c8cb1989ca", + "Name": "W18x40", + "EdgeId": 340 + }, + "0b731827-dafb-4223-bac7-9f0a03eaaf64": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b731827-dafb-4223-bac7-9f0a03eaaf64", + "Name": null + }, + "f24f08a3-0b9d-4cc7-8b93-0ea27a62253a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f24f08a3-0b9d-4cc7-8b93-0ea27a62253a", + "Name": "W18x40", + "EdgeId": 341 + }, + "b4f95fe4-098d-4fb0-908c-ebef6344d3cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4f95fe4-098d-4fb0-908c-ebef6344d3cd", + "Name": null + }, + "141c3c4a-94b1-4152-9ca8-7b82030d1fdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "141c3c4a-94b1-4152-9ca8-7b82030d1fdf", + "Name": "W18x40", + "EdgeId": 344, + "ExternalEdgeId": 344 + }, + "91a3462d-81f0-4d87-b12a-e9f41614b325": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91a3462d-81f0-4d87-b12a-e9f41614b325", + "Name": null + }, + "3edeb499-9df5-4571-871d-5fc61baca0bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3edeb499-9df5-4571-871d-5fc61baca0bb", + "Name": "W18x40", + "EdgeId": 345, + "ExternalEdgeId": 345 + }, + "7645f093-55c5-49bb-a377-3a26c95241c3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7645f093-55c5-49bb-a377-3a26c95241c3", + "Name": null + }, + "3de06577-6368-4655-93fb-7a6b9d6c25dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3de06577-6368-4655-93fb-7a6b9d6c25dc", + "Name": "W18x40", + "EdgeId": 346 + }, + "3519218e-ac4c-4ff6-90b6-460873da9d10": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3519218e-ac4c-4ff6-90b6-460873da9d10", + "Name": null + }, + "718acb3a-bda7-40c4-89ca-367e62ad9e52": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "718acb3a-bda7-40c4-89ca-367e62ad9e52", + "Name": "W18x40", + "EdgeId": 349 + }, + "0f07889b-470d-4e67-b431-395d9daa9eb8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0f07889b-470d-4e67-b431-395d9daa9eb8", + "Name": null + }, + "b3568703-34ff-4a0a-ab20-178ad643a787": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b3568703-34ff-4a0a-ab20-178ad643a787", + "Name": "W18x40", + "EdgeId": 350 + }, + "1965e954-cdc4-4710-8fc6-5eb5759dd77d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1965e954-cdc4-4710-8fc6-5eb5759dd77d", + "Name": null + }, + "5c0751c6-7dd3-494b-aae2-9f6c6934c3fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5c0751c6-7dd3-494b-aae2-9f6c6934c3fe", + "Name": "W18x40", + "EdgeId": 351, + "ExternalEdgeId": 351 + }, + "740529b9-4663-427e-b1fa-eff316b90ff7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 4.5 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "740529b9-4663-427e-b1fa-eff316b90ff7", + "Name": null + }, + "749fabbe-482f-4e31-a4b3-7f2f85f9c37b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "749fabbe-482f-4e31-a4b3-7f2f85f9c37b", + "Name": "W18x40", + "EdgeId": 355, + "ExternalEdgeId": 355 + }, + "da7e086b-2aa4-4474-8de1-d8bde6afbc51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da7e086b-2aa4-4474-8de1-d8bde6afbc51", + "Name": null + }, + "ac2a1b89-4369-4e52-87d0-741afb304b76": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ac2a1b89-4369-4e52-87d0-741afb304b76", + "Name": "W18x40", + "EdgeId": 356 + }, + "248fc446-6a8c-4ec4-883c-c15ab42c7f7d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "248fc446-6a8c-4ec4-883c-c15ab42c7f7d", + "Name": null + }, + "17420ccd-0b5c-4f6f-b6d0-8fdeab1bcbbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "17420ccd-0b5c-4f6f-b6d0-8fdeab1bcbbf", + "Name": "W18x40", + "EdgeId": 357 + }, + "b60594d5-586c-4f05-bdd6-91860777b981": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b60594d5-586c-4f05-bdd6-91860777b981", + "Name": null + }, + "c2af512a-b65d-401a-b950-f1e57e453322": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2af512a-b65d-401a-b950-f1e57e453322", + "Name": "W18x40", + "EdgeId": 359 + }, + "95bf01d5-a35a-497b-aff4-c1c95111424f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95bf01d5-a35a-497b-aff4-c1c95111424f", + "Name": null + }, + "51d23319-3e28-4f76-aa8a-493a172e7f14": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "51d23319-3e28-4f76-aa8a-493a172e7f14", + "Name": "W18x40", + "EdgeId": 360 + }, + "ee0f0a9a-4aa2-4eb8-93e5-52adbad8c5fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee0f0a9a-4aa2-4eb8-93e5-52adbad8c5fa", + "Name": null + }, + "acc61123-96b8-425b-8592-58d53bc446c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "acc61123-96b8-425b-8592-58d53bc446c1", + "Name": "W18x40", + "EdgeId": 362, + "ExternalEdgeId": 362 + }, + "436d63dd-5762-4a4f-afe2-d0bd34ec818b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "436d63dd-5762-4a4f-afe2-d0bd34ec818b", + "Name": null + }, + "c2359198-8052-48f7-9379-fd30309e7840": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2359198-8052-48f7-9379-fd30309e7840", + "Name": "W18x40", + "EdgeId": 363 + }, + "7cbf1076-18af-442a-aa94-658b30e1a17a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7cbf1076-18af-442a-aa94-658b30e1a17a", + "Name": null + }, + "32fa9586-f0b8-46c9-b7e1-fdf07c33742b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "32fa9586-f0b8-46c9-b7e1-fdf07c33742b", + "Name": "W18x40", + "EdgeId": 365 + }, + "00bf53c7-2df6-4343-b648-4497d55e6c46": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "00bf53c7-2df6-4343-b648-4497d55e6c46", + "Name": null + }, + "40757812-7faf-4b05-acd8-c6d9bb4ea8f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "40757812-7faf-4b05-acd8-c6d9bb4ea8f9", + "Name": "W18x40", + "EdgeId": 366 + }, + "b187c97c-12f6-4cbc-8258-9077a872f047": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b187c97c-12f6-4cbc-8258-9077a872f047", + "Name": null + }, + "a61b2830-3e47-47c4-bd3c-8c042ddf65ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a61b2830-3e47-47c4-bd3c-8c042ddf65ef", + "Name": "W18x40", + "EdgeId": 367, + "ExternalEdgeId": 367 + }, + "72221334-cbd7-49fd-95dc-eeb96145c890": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72221334-cbd7-49fd-95dc-eeb96145c890", + "Name": null + }, + "c800dae5-a69b-4eb6-93e9-770e672f7eb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c800dae5-a69b-4eb6-93e9-770e672f7eb8", + "Name": "W18x40", + "EdgeId": 370 + }, + "159daeac-5141-4ab4-bc8d-e7d365f9ec83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "159daeac-5141-4ab4-bc8d-e7d365f9ec83", + "Name": null + }, + "b4014d37-f1a2-49c1-ada7-8c0f030d5830": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b4014d37-f1a2-49c1-ada7-8c0f030d5830", + "Name": "W18x40", + "EdgeId": 371 + }, + "8738f1fc-f06c-4c19-8d9c-dedf0d07f4e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8738f1fc-f06c-4c19-8d9c-dedf0d07f4e4", + "Name": null + }, + "656ed2a6-9138-4e30-853a-3c6c40eafa99": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "656ed2a6-9138-4e30-853a-3c6c40eafa99", + "Name": "W18x40", + "EdgeId": 373 + }, + "1b65f783-6996-4655-ad9d-e1e48a1d6867": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b65f783-6996-4655-ad9d-e1e48a1d6867", + "Name": null + }, + "dab2bc72-f1a0-4400-964c-6b23013d5bf2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dab2bc72-f1a0-4400-964c-6b23013d5bf2", + "Name": "W18x40", + "EdgeId": 374 + }, + "75af2fca-942c-4e6b-be8f-6c31e1e4e474": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "75af2fca-942c-4e6b-be8f-6c31e1e4e474", + "Name": null + }, + "d2abbea9-a0d8-4786-a45b-462010cf62a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d2abbea9-a0d8-4786-a45b-462010cf62a2", + "Name": "W18x40", + "EdgeId": 376, + "ExternalEdgeId": 376 + }, + "402ad856-dc8d-4bff-88bd-ca1f8e452dd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "402ad856-dc8d-4bff-88bd-ca1f8e452dd3", + "Name": null + }, + "40bcc871-c45b-4ae9-b403-fa0dcf71781e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "40bcc871-c45b-4ae9-b403-fa0dcf71781e", + "Name": "W18x40", + "EdgeId": 377 + }, + "dfd51255-c9e9-45c0-b842-2efd6c54d75b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dfd51255-c9e9-45c0-b842-2efd6c54d75b", + "Name": null + }, + "7b25fcba-3cdf-404e-b2c7-52adb2f843f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7b25fcba-3cdf-404e-b2c7-52adb2f843f2", + "Name": "W18x40", + "EdgeId": 379 + }, + "c5eb6f00-5098-43ee-ba90-76fb7c1530e8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5eb6f00-5098-43ee-ba90-76fb7c1530e8", + "Name": null + }, + "e0d46986-35b9-4396-a0ff-d69e5b378932": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e0d46986-35b9-4396-a0ff-d69e5b378932", + "Name": "W18x40", + "EdgeId": 380 + }, + "1c32c468-a24a-466b-9003-b64055e11f3c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c32c468-a24a-466b-9003-b64055e11f3c", + "Name": null + }, + "fa7471a7-7703-4446-ad4f-37431975557f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa7471a7-7703-4446-ad4f-37431975557f", + "Name": "W18x40", + "EdgeId": 381, + "ExternalEdgeId": 381 + }, + "c5747bbb-afce-4c64-bca1-821500537422": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5747bbb-afce-4c64-bca1-821500537422", + "Name": null + }, + "451d339c-1696-4e1b-8be7-7cfc352a3ba5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "451d339c-1696-4e1b-8be7-7cfc352a3ba5", + "Name": "W18x40", + "EdgeId": 384 + }, + "f8fb7ada-b5bb-4658-9b54-e4fe304c6652": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8fb7ada-b5bb-4658-9b54-e4fe304c6652", + "Name": null + }, + "33715d15-e80c-463d-8b31-fbedafa243fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "33715d15-e80c-463d-8b31-fbedafa243fd", + "Name": "W18x40", + "EdgeId": 385 + }, + "0814bde4-623d-404f-992e-26bab4883fa4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0814bde4-623d-404f-992e-26bab4883fa4", + "Name": null + }, + "ae178a39-4f27-45b7-8829-cdc742bdf6f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ae178a39-4f27-45b7-8829-cdc742bdf6f5", + "Name": "W18x40", + "EdgeId": 387 + }, + "5c32ba28-a744-48ee-af46-8a3287d3f45c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c32ba28-a744-48ee-af46-8a3287d3f45c", + "Name": null + }, + "9e7d58e0-2394-4a53-a737-139875c5dc7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9e7d58e0-2394-4a53-a737-139875c5dc7f", + "Name": "W18x40", + "EdgeId": 388 + }, + "64442de3-4d5f-4cad-8e05-33e5d1784cb3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64442de3-4d5f-4cad-8e05-33e5d1784cb3", + "Name": null + }, + "8df09f90-c4fc-4c2e-bddc-d4531599deae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8df09f90-c4fc-4c2e-bddc-d4531599deae", + "Name": "W18x40", + "EdgeId": 390, + "ExternalEdgeId": 390 + }, + "9e0d4b17-495b-41ac-8787-b65e05887465": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9e0d4b17-495b-41ac-8787-b65e05887465", + "Name": null + }, + "104c49c5-4a16-4492-a389-993e86a706c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "104c49c5-4a16-4492-a389-993e86a706c2", + "Name": "W18x40", + "EdgeId": 391 + }, + "f4dc01cd-0805-41bc-9fbd-aa675966eb16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f4dc01cd-0805-41bc-9fbd-aa675966eb16", + "Name": null + }, + "45819a07-0377-4f96-b35c-ebfb8b10dfb5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "45819a07-0377-4f96-b35c-ebfb8b10dfb5", + "Name": "W18x40", + "EdgeId": 393 + }, + "2eff71a1-49f2-4d4e-8f58-165535c16473": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2eff71a1-49f2-4d4e-8f58-165535c16473", + "Name": null + }, + "3b6ed46a-d0f6-4f32-9a08-f7f047aaa3f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3b6ed46a-d0f6-4f32-9a08-f7f047aaa3f2", + "Name": "W18x40", + "EdgeId": 394 + }, + "416847c1-4fcd-4931-94fd-55f44df7586c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "416847c1-4fcd-4931-94fd-55f44df7586c", + "Name": null + }, + "12a373e4-f160-464e-a0ef-18bb895f4635": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "12a373e4-f160-464e-a0ef-18bb895f4635", + "Name": "W18x40", + "EdgeId": 395, + "ExternalEdgeId": 395 + }, + "312c9e72-ecf9-47f5-aa9f-e7b35c198b36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 4.5 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "312c9e72-ecf9-47f5-aa9f-e7b35c198b36", + "Name": null + }, + "847c76f8-f248-408e-b962-a7e61eb8fd2d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "847c76f8-f248-408e-b962-a7e61eb8fd2d", + "Name": "W18x40", + "EdgeId": 399, + "ExternalEdgeId": 399 + }, + "8dafe523-5d01-45ef-b715-26bb1a00f4df": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8dafe523-5d01-45ef-b715-26bb1a00f4df", + "Name": null + }, + "a160a36b-01b6-4f2f-a3ec-165f2c05aa13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a160a36b-01b6-4f2f-a3ec-165f2c05aa13", + "Name": "W18x40", + "EdgeId": 400 + }, + "0577e476-df51-4fad-a3e5-ff33e6ec5588": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0577e476-df51-4fad-a3e5-ff33e6ec5588", + "Name": null + }, + "a8a8f2c0-0e1e-4627-b27a-8f8307805127": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a8a8f2c0-0e1e-4627-b27a-8f8307805127", + "Name": "W18x40", + "EdgeId": 401 + }, + "25ac06b9-8ef6-4732-8cd1-00d1b4a4fffa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25ac06b9-8ef6-4732-8cd1-00d1b4a4fffa", + "Name": null + }, + "9267a1a4-0447-45e1-aff0-20846e3d839b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9267a1a4-0447-45e1-aff0-20846e3d839b", + "Name": "W18x40", + "EdgeId": 403 + }, + "253f18ab-d786-49ef-9f5c-8598933a4ec7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "253f18ab-d786-49ef-9f5c-8598933a4ec7", + "Name": null + }, + "1cbc815e-0d8f-475f-ae7d-1e8a6d511faa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1cbc815e-0d8f-475f-ae7d-1e8a6d511faa", + "Name": "W18x40", + "EdgeId": 404 + }, + "ddf4b673-90a1-4013-b3bf-c3b1a0e2409b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ddf4b673-90a1-4013-b3bf-c3b1a0e2409b", + "Name": null + }, + "649a01ad-d0b4-4d53-9b99-632517b2172a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "649a01ad-d0b4-4d53-9b99-632517b2172a", + "Name": "W18x40", + "EdgeId": 406 + }, + "6d543297-c151-45b1-b188-6cd797ee2285": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d543297-c151-45b1-b188-6cd797ee2285", + "Name": null + }, + "713c9309-23f4-4527-90a8-5167233eba5c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "713c9309-23f4-4527-90a8-5167233eba5c", + "Name": "W18x40", + "EdgeId": 407 + }, + "9357660f-8eec-4acb-bd9d-be170e7658ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9357660f-8eec-4acb-bd9d-be170e7658ce", + "Name": null + }, + "2bb3c432-7ec0-4aad-957f-994c26cb24b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2bb3c432-7ec0-4aad-957f-994c26cb24b3", + "Name": "W18x40", + "EdgeId": 409, + "ExternalEdgeId": 409 + }, + "8ca2205f-8655-4456-9d57-c6146c5ed35a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8ca2205f-8655-4456-9d57-c6146c5ed35a", + "Name": null + }, + "3f056e54-a892-4e0b-b4b0-347b1765c30a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3f056e54-a892-4e0b-b4b0-347b1765c30a", + "Name": "W18x40", + "EdgeId": 410 + }, + "2c3e8f2f-95c7-465e-a1fc-8f6195d6a35f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2c3e8f2f-95c7-465e-a1fc-8f6195d6a35f", + "Name": null + }, + "8a459e9f-44b8-4307-b4c8-3ec45376516b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8a459e9f-44b8-4307-b4c8-3ec45376516b", + "Name": "W18x40", + "EdgeId": 412 + }, + "49929cc0-4add-46a7-8fac-9610355983c8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49929cc0-4add-46a7-8fac-9610355983c8", + "Name": null + }, + "7b18568a-91ad-4146-8471-65965440b805": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7b18568a-91ad-4146-8471-65965440b805", + "Name": "W18x40", + "EdgeId": 413 + }, + "008ef7fa-65f7-490e-a5a7-a2a4d111ab47": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "008ef7fa-65f7-490e-a5a7-a2a4d111ab47", + "Name": null + }, + "f7f33c38-10b7-406e-89de-63d6c5522a81": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f7f33c38-10b7-406e-89de-63d6c5522a81", + "Name": "W18x40", + "EdgeId": 414, + "ExternalEdgeId": 414 + }, + "30c29c96-54d1-416a-9b97-198c4c923db0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30c29c96-54d1-416a-9b97-198c4c923db0", + "Name": null + }, + "9fbc8044-2452-4ddd-b104-7b561f8bdf19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9fbc8044-2452-4ddd-b104-7b561f8bdf19", + "Name": "W18x40", + "EdgeId": 417 + }, + "d1b10d77-49c8-4642-a634-3bc4e02cde9b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1b10d77-49c8-4642-a634-3bc4e02cde9b", + "Name": null + }, + "7f61102a-dfe9-4113-82ec-f374eeeb3f90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7f61102a-dfe9-4113-82ec-f374eeeb3f90", + "Name": "W18x40", + "EdgeId": 418 + }, + "1084d9b9-dc29-4953-8a00-e4fc03b42647": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1084d9b9-dc29-4953-8a00-e4fc03b42647", + "Name": null + }, + "27d1ffe8-96c8-4c81-be51-e376ec06d25f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "27d1ffe8-96c8-4c81-be51-e376ec06d25f", + "Name": "W18x40", + "EdgeId": 420 + }, + "18b34de6-b22b-4897-9d96-15c4d1991d3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "18b34de6-b22b-4897-9d96-15c4d1991d3f", + "Name": null + }, + "6d18d66d-7a36-436c-b2cf-00cc993788db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6d18d66d-7a36-436c-b2cf-00cc993788db", + "Name": "W18x40", + "EdgeId": 421 + }, + "578f57d7-1433-46c5-814b-78ae38400cb2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "578f57d7-1433-46c5-814b-78ae38400cb2", + "Name": null + }, + "3b423e1c-a877-4221-a221-8c4dfbd0e187": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3b423e1c-a877-4221-a221-8c4dfbd0e187", + "Name": "W18x40", + "EdgeId": 423 + }, + "7ea52dc9-565a-4ff8-8963-d66911ec7f5e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ea52dc9-565a-4ff8-8963-d66911ec7f5e", + "Name": null + }, + "e6ea7cf7-8c0a-45f7-8b14-f2979589894b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e6ea7cf7-8c0a-45f7-8b14-f2979589894b", + "Name": "W18x40", + "EdgeId": 424 + }, + "4d41e8b9-b2a4-4796-8b22-96c260fef66d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d41e8b9-b2a4-4796-8b22-96c260fef66d", + "Name": null + }, + "e7831153-d604-4c44-a914-0b6918dc68af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e7831153-d604-4c44-a914-0b6918dc68af", + "Name": "W18x40", + "EdgeId": 426, + "ExternalEdgeId": 426 + }, + "7235648b-0f6f-4231-9e5d-7f9de2c81780": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7235648b-0f6f-4231-9e5d-7f9de2c81780", + "Name": null + }, + "5f714000-5e54-458d-bbe7-ffca726908a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5f714000-5e54-458d-bbe7-ffca726908a9", + "Name": "W18x40", + "EdgeId": 427 + }, + "56101f9b-8867-42fd-9816-526ae55b646a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "56101f9b-8867-42fd-9816-526ae55b646a", + "Name": null + }, + "73d82ef5-a6b2-46b2-a132-cc7dd324259a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "73d82ef5-a6b2-46b2-a132-cc7dd324259a", + "Name": "W18x40", + "EdgeId": 429, + "ExternalEdgeId": 429 + }, + "5dedbb9e-79d9-48f1-b723-a36aeac940d8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5dedbb9e-79d9-48f1-b723-a36aeac940d8", + "Name": null + }, + "e8004738-0626-4beb-8c08-00db5d95a624": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e8004738-0626-4beb-8c08-00db5d95a624", + "Name": "W18x40", + "EdgeId": 430 + }, + "e4323265-26da-4946-b144-f9eddee07379": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4323265-26da-4946-b144-f9eddee07379", + "Name": null + }, + "32408f50-cc83-4827-b93b-648ebad40097": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "32408f50-cc83-4827-b93b-648ebad40097", + "Name": "W18x40", + "EdgeId": 431 + }, + "a8284ffb-52e5-4a8f-8bd6-7973fb1e8588": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a8284ffb-52e5-4a8f-8bd6-7973fb1e8588", + "Name": null + }, + "f5ab5f57-1803-42d5-ab6d-e6ee86f62cbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f5ab5f57-1803-42d5-ab6d-e6ee86f62cbf", + "Name": "W18x40", + "EdgeId": 432, + "ExternalEdgeId": 432 + }, + "4007b698-78dc-4890-bebf-5692fdbbd43b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4007b698-78dc-4890-bebf-5692fdbbd43b", + "Name": null + }, + "a74c3554-0a61-4b0b-9120-993989ab26a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a74c3554-0a61-4b0b-9120-993989ab26a4", + "Name": "W18x40", + "EdgeId": 436 + }, + "73ba442c-a45a-439c-8dc8-5a0b2f4606d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73ba442c-a45a-439c-8dc8-5a0b2f4606d3", + "Name": null + }, + "2110c24d-f114-4bf8-b4dc-63d22bcfda09": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2110c24d-f114-4bf8-b4dc-63d22bcfda09", + "Name": "W18x40", + "EdgeId": 437 + }, + "195d04a7-372b-42bd-9725-ae7e8ccce118": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "195d04a7-372b-42bd-9725-ae7e8ccce118", + "Name": null + }, + "66b14883-7a7a-438f-8717-fd0904df8d27": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "66b14883-7a7a-438f-8717-fd0904df8d27", + "Name": "W18x40", + "EdgeId": 439 + }, + "29a5217f-850a-4143-97de-af8ec842764d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "29a5217f-850a-4143-97de-af8ec842764d", + "Name": null + }, + "2ea79f52-0eb6-4e89-9a95-7bd922a0e78e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2ea79f52-0eb6-4e89-9a95-7bd922a0e78e", + "Name": "W18x40", + "EdgeId": 440 + }, + "1824fdfa-4793-4e1b-8613-fcbc78c14c51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1824fdfa-4793-4e1b-8613-fcbc78c14c51", + "Name": null + }, + "ed751285-34d5-414a-85dd-58bdf461faf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ed751285-34d5-414a-85dd-58bdf461faf8", + "Name": "W18x40", + "EdgeId": 442 + }, + "8fcc4ba8-5084-469f-8415-db61f7a0c1b2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8fcc4ba8-5084-469f-8415-db61f7a0c1b2", + "Name": null + }, + "4083fd59-fa75-424a-bcf4-84af740ad572": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4083fd59-fa75-424a-bcf4-84af740ad572", + "Name": "W18x40", + "EdgeId": 443 + }, + "e51fd538-194e-4abb-b1f1-884bd6471568": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e51fd538-194e-4abb-b1f1-884bd6471568", + "Name": null + }, + "f0c83f7b-a5c3-473f-940a-c0ebd646916e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f0c83f7b-a5c3-473f-940a-c0ebd646916e", + "Name": "W18x40", + "EdgeId": 445, + "ExternalEdgeId": 445 + }, + "2cf14a56-d854-4c73-af24-f33793017b0c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2cf14a56-d854-4c73-af24-f33793017b0c", + "Name": null + }, + "46ed86de-64bb-4902-b188-98db4ee2e175": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "46ed86de-64bb-4902-b188-98db4ee2e175", + "Name": "W18x40", + "EdgeId": 446 + }, + "eadf1133-5eca-45d7-9c55-ec26a1018752": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eadf1133-5eca-45d7-9c55-ec26a1018752", + "Name": null + }, + "e1c5627c-fc71-4ef1-8d6f-6b4e573d0993": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e1c5627c-fc71-4ef1-8d6f-6b4e573d0993", + "Name": "W18x40", + "EdgeId": 448 + }, + "0d401603-857a-4692-8813-8a3b73af5578": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0d401603-857a-4692-8813-8a3b73af5578", + "Name": null + }, + "b79410e0-c167-41e1-8726-65dba97a33b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b79410e0-c167-41e1-8726-65dba97a33b3", + "Name": "W18x40", + "EdgeId": 449 + }, + "c9bc4f63-ee39-4ded-919e-2d44b9237177": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c9bc4f63-ee39-4ded-919e-2d44b9237177", + "Name": null + }, + "aa1588e4-2804-4100-a062-d5127b4dc8f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "aa1588e4-2804-4100-a062-d5127b4dc8f1", + "Name": "W18x40", + "EdgeId": 450, + "ExternalEdgeId": 450 + }, + "cd81d1f2-ecc9-4565-8c54-adb26184d4ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cd81d1f2-ecc9-4565-8c54-adb26184d4ff", + "Name": null + }, + "fff28568-1fe8-401e-9968-258e175b2e69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fff28568-1fe8-401e-9968-258e175b2e69", + "Name": "W18x40", + "EdgeId": 453 + }, + "9978c910-dd89-4f77-b64d-23df3a81825b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9978c910-dd89-4f77-b64d-23df3a81825b", + "Name": null + }, + "ee17cc36-e38b-49f1-a74b-85754d3eaa4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ee17cc36-e38b-49f1-a74b-85754d3eaa4a", + "Name": "W18x40", + "EdgeId": 454 + }, + "06ca1c3f-92b1-4a5b-bc4f-9c9f027f757b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "06ca1c3f-92b1-4a5b-bc4f-9c9f027f757b", + "Name": null + }, + "c98792b3-04a5-49f4-9915-2c94212b7fe7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c98792b3-04a5-49f4-9915-2c94212b7fe7", + "Name": "W18x40", + "EdgeId": 456 + }, + "5dd74521-1769-4163-9424-d980103ddbb0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5dd74521-1769-4163-9424-d980103ddbb0", + "Name": null + }, + "072f4e73-3da9-486f-90bc-0329df07512a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "072f4e73-3da9-486f-90bc-0329df07512a", + "Name": "W18x40", + "EdgeId": 457 + }, + "cfbc82bf-57b1-4d90-84fa-5e13b704a778": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfbc82bf-57b1-4d90-84fa-5e13b704a778", + "Name": null + }, + "a8003fbf-556a-4bb9-bdd9-63b0212fe18d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a8003fbf-556a-4bb9-bdd9-63b0212fe18d", + "Name": "W18x40", + "EdgeId": 459 + }, + "ef153aba-9d58-47bb-a1a4-2911b17de41f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef153aba-9d58-47bb-a1a4-2911b17de41f", + "Name": null + }, + "408ced1f-be08-4106-887a-62e256471875": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "408ced1f-be08-4106-887a-62e256471875", + "Name": "W18x40", + "EdgeId": 460 + }, + "edeef0c9-53c1-40e5-a952-f959d87ad14c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "edeef0c9-53c1-40e5-a952-f959d87ad14c", + "Name": null + }, + "202f4b4c-a6ce-4a09-abfd-4173f238376b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "202f4b4c-a6ce-4a09-abfd-4173f238376b", + "Name": "W18x40", + "EdgeId": 462, + "ExternalEdgeId": 462 + }, + "bddc1693-3599-46ae-8fac-3ec141bb8769": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bddc1693-3599-46ae-8fac-3ec141bb8769", + "Name": null + }, + "38322f4a-9058-46aa-a786-28846e770b10": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "38322f4a-9058-46aa-a786-28846e770b10", + "Name": "W18x40", + "EdgeId": 463 + }, + "e3e92db6-a2e5-406e-8c22-9bb781763552": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3e92db6-a2e5-406e-8c22-9bb781763552", + "Name": null + }, + "e19c675b-1e8b-4762-948d-31e27a5ce963": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e19c675b-1e8b-4762-948d-31e27a5ce963", + "Name": "W18x40", + "EdgeId": 465 + }, + "d07b6671-6ba0-488b-87d3-adbe1c0a7484": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d07b6671-6ba0-488b-87d3-adbe1c0a7484", + "Name": null + }, + "35333aed-6c8a-4b8a-b6d8-a8273f32dcb3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "35333aed-6c8a-4b8a-b6d8-a8273f32dcb3", + "Name": "W18x40", + "EdgeId": 466 + }, + "2d6c93c9-9d15-47f0-9f31-7845171aa504": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d6c93c9-9d15-47f0-9f31-7845171aa504", + "Name": null + }, + "2580066f-8237-4d91-937f-2372c6d7abe9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2580066f-8237-4d91-937f-2372c6d7abe9", + "Name": "W18x40", + "EdgeId": 467, + "ExternalEdgeId": 467 + }, + "94b0cf9d-a4d6-46ab-8f03-22871c3d919d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "94b0cf9d-a4d6-46ab-8f03-22871c3d919d", + "Name": null + }, + "5bd49134-a8e6-4cf7-aafa-769be27b6e8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5bd49134-a8e6-4cf7-aafa-769be27b6e8d", + "Name": "W18x40", + "EdgeId": 470 + }, + "9673e9b7-47c4-4fe7-9858-70aa7c7fcb21": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9673e9b7-47c4-4fe7-9858-70aa7c7fcb21", + "Name": null + }, + "f3da95cd-fd36-4904-ac2a-e22d74980eed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f3da95cd-fd36-4904-ac2a-e22d74980eed", + "Name": "W18x40", + "EdgeId": 471 + }, + "d7a6c2c8-e952-4723-9da2-f3a700a7352c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d7a6c2c8-e952-4723-9da2-f3a700a7352c", + "Name": null + }, + "781f9978-5ed2-487d-849e-e13f09067163": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "781f9978-5ed2-487d-849e-e13f09067163", + "Name": "W18x40", + "EdgeId": 473 + }, + "06b06cdd-6655-4f1b-b950-d62b64cdc5c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "06b06cdd-6655-4f1b-b950-d62b64cdc5c1", + "Name": null + }, + "c6dbc864-7a61-44c7-9d78-1540a133cbb9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c6dbc864-7a61-44c7-9d78-1540a133cbb9", + "Name": "W18x40", + "EdgeId": 474 + }, + "21ad6249-617e-4ab0-9ebb-e8046d05fd5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21ad6249-617e-4ab0-9ebb-e8046d05fd5a", + "Name": null + }, + "898c5207-cd7b-4b78-8662-4fcabf1b860b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "898c5207-cd7b-4b78-8662-4fcabf1b860b", + "Name": "W18x40", + "EdgeId": 476 + }, + "4e226bf1-de18-4c4c-bcfe-04c032592a0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e226bf1-de18-4c4c-bcfe-04c032592a0a", + "Name": null + }, + "c028ef97-ecfa-4670-8b41-80f0d0a92318": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c028ef97-ecfa-4670-8b41-80f0d0a92318", + "Name": "W18x40", + "EdgeId": 477 + }, + "344aaf41-0de7-43b2-9220-48b619e7e23e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "344aaf41-0de7-43b2-9220-48b619e7e23e", + "Name": null + }, + "ec832f5f-50c4-440e-9bfb-9d9b9738fa02": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ec832f5f-50c4-440e-9bfb-9d9b9738fa02", + "Name": "W18x40", + "EdgeId": 479, + "ExternalEdgeId": 479 + }, + "3e915036-6d9b-4e7a-b9f6-b64a8581a075": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3e915036-6d9b-4e7a-b9f6-b64a8581a075", + "Name": null + }, + "b5888ddd-b9ef-4e23-9534-565cafcb157d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b5888ddd-b9ef-4e23-9534-565cafcb157d", + "Name": "W18x40", + "EdgeId": 480 + }, + "83b916ff-734b-4d7b-9f6f-9606284c4189": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83b916ff-734b-4d7b-9f6f-9606284c4189", + "Name": null + }, + "51c40da0-79ed-4900-a96f-cf620f4870ac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "51c40da0-79ed-4900-a96f-cf620f4870ac", + "Name": "W18x40", + "EdgeId": 482 + }, + "88d5337b-e54c-477f-884e-8101e3cae098": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "88d5337b-e54c-477f-884e-8101e3cae098", + "Name": null + }, + "4213249f-7d5b-4f8c-ae84-9f5ad218a3b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4213249f-7d5b-4f8c-ae84-9f5ad218a3b1", + "Name": "W18x40", + "EdgeId": 483 + }, + "54c567fc-0b1a-46e4-a803-88d69edc6489": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "54c567fc-0b1a-46e4-a803-88d69edc6489", + "Name": null + }, + "12ad9ce2-4321-4264-a566-07768ba4e2c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "12ad9ce2-4321-4264-a566-07768ba4e2c1", + "Name": "W18x40", + "EdgeId": 484, + "ExternalEdgeId": 484 + }, + "cd019d14-61a4-45d4-9620-465183fae753": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cd019d14-61a4-45d4-9620-465183fae753", + "Name": null + }, + "c8dde09f-beea-4648-8823-300f7bbaa4eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c8dde09f-beea-4648-8823-300f7bbaa4eb", + "Name": "W18x40", + "EdgeId": 487 + }, + "091509da-b7d5-4719-8777-ac41c1b4ae6f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "091509da-b7d5-4719-8777-ac41c1b4ae6f", + "Name": null + }, + "cb1771b1-8be6-4ae0-9ca9-641f72c0ec21": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cb1771b1-8be6-4ae0-9ca9-641f72c0ec21", + "Name": "W18x40", + "EdgeId": 488 + }, + "6bad82ac-248a-41f4-8c14-b4d8593d498a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6bad82ac-248a-41f4-8c14-b4d8593d498a", + "Name": null + }, + "3cd2302f-863f-4789-b78c-864c4504c151": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3cd2302f-863f-4789-b78c-864c4504c151", + "Name": "W18x40", + "EdgeId": 490 + }, + "407c9a72-8c14-4915-97ba-f5043fd4b307": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "407c9a72-8c14-4915-97ba-f5043fd4b307", + "Name": null + }, + "d49e6c12-100f-4f98-a8d3-0f869b94934e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d49e6c12-100f-4f98-a8d3-0f869b94934e", + "Name": "W18x40", + "EdgeId": 491 + }, + "dc3c545d-c603-4230-98f3-e632009d19cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc3c545d-c603-4230-98f3-e632009d19cd", + "Name": null + }, + "63ae07e2-98ce-4baa-a154-63fca89ad3f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "63ae07e2-98ce-4baa-a154-63fca89ad3f8", + "Name": "W18x40", + "EdgeId": 493 + }, + "f871cfc6-b8a0-49f6-8e69-a7d8a9d8f3cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f871cfc6-b8a0-49f6-8e69-a7d8a9d8f3cf", + "Name": null + }, + "e18772cd-c699-41f3-8af6-efbab1c35001": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e18772cd-c699-41f3-8af6-efbab1c35001", + "Name": "W18x40", + "EdgeId": 494 + }, + "134a0fe3-d9ed-4fcb-b0b9-45c1d32f1ca4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "134a0fe3-d9ed-4fcb-b0b9-45c1d32f1ca4", + "Name": null + }, + "8ff37956-7786-4ce0-96b8-8c6570207400": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8ff37956-7786-4ce0-96b8-8c6570207400", + "Name": "W18x40", + "EdgeId": 496, + "ExternalEdgeId": 496 + }, + "7fec4a62-3fcb-49c6-9213-83efaeb037a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7fec4a62-3fcb-49c6-9213-83efaeb037a3", + "Name": null + }, + "0864ec9b-91aa-4b7f-8815-45325fc29f2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0864ec9b-91aa-4b7f-8815-45325fc29f2a", + "Name": "W18x40", + "EdgeId": 497 + }, + "f4593ac0-13c3-4977-b06f-935f4954cfb8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f4593ac0-13c3-4977-b06f-935f4954cfb8", + "Name": null + }, + "24133a3b-98ad-4df5-a8b1-b2ba54cfec4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "24133a3b-98ad-4df5-a8b1-b2ba54cfec4e", + "Name": "W18x40", + "EdgeId": 499 + }, + "b5a5e7a6-294c-4f53-9acf-6625b08d6c16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5a5e7a6-294c-4f53-9acf-6625b08d6c16", + "Name": null + }, + "e48a76ca-de62-4c0a-9eb3-3a3171c525f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e48a76ca-de62-4c0a-9eb3-3a3171c525f7", + "Name": "W18x40", + "EdgeId": 500 + }, + "042604eb-4a63-4775-9b3e-c972f2826472": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "042604eb-4a63-4775-9b3e-c972f2826472", + "Name": null + }, + "ea16284c-c2b8-4010-9cf2-72c882acc2f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ea16284c-c2b8-4010-9cf2-72c882acc2f3", + "Name": "W18x40", + "EdgeId": 501, + "ExternalEdgeId": 501 + }, + "2b77f4af-f61a-4d56-84b6-26f42bc05c36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b77f4af-f61a-4d56-84b6-26f42bc05c36", + "Name": null + }, + "35539d96-d549-4c0c-a473-254181c0f522": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "35539d96-d549-4c0c-a473-254181c0f522", + "Name": "W18x40", + "EdgeId": 504 + }, + "21357ccc-2127-4f97-908f-4f3192d3dc53": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21357ccc-2127-4f97-908f-4f3192d3dc53", + "Name": null + }, + "5b9182eb-9dd8-4f91-99f0-84a49cdbde12": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5b9182eb-9dd8-4f91-99f0-84a49cdbde12", + "Name": "W18x40", + "EdgeId": 505 + }, + "9f9aed96-f99d-4ab6-9084-57d8f9056ecb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f9aed96-f99d-4ab6-9084-57d8f9056ecb", + "Name": null + }, + "0cfb36e1-67cc-47b3-97c0-f43c1cfb38a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0cfb36e1-67cc-47b3-97c0-f43c1cfb38a0", + "Name": "W18x40", + "EdgeId": 507 + }, + "ce81b307-6508-4089-9325-9c1258910861": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ce81b307-6508-4089-9325-9c1258910861", + "Name": null + }, + "fa15ba16-d9d4-4e0c-b6c0-a15393bbf965": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa15ba16-d9d4-4e0c-b6c0-a15393bbf965", + "Name": "W18x40", + "EdgeId": 508 + }, + "3916623a-8af1-47b3-94fd-6cf921adb0d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3916623a-8af1-47b3-94fd-6cf921adb0d0", + "Name": null + }, + "1c7fff3d-db80-4626-bf22-e3490fa22e5e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1c7fff3d-db80-4626-bf22-e3490fa22e5e", + "Name": "W18x40", + "EdgeId": 510 + }, + "30efc5a2-57d2-47e5-bb15-956d56f7d0f8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30efc5a2-57d2-47e5-bb15-956d56f7d0f8", + "Name": null + }, + "7b2471a0-6ddf-4c44-8621-674fff7db443": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7b2471a0-6ddf-4c44-8621-674fff7db443", + "Name": "W18x40", + "EdgeId": 511 + }, + "78c0a8a3-c448-414a-b071-ff83bfc9950c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "78c0a8a3-c448-414a-b071-ff83bfc9950c", + "Name": null + }, + "fa03b414-d8bb-49cb-bff2-6f12bbff989d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa03b414-d8bb-49cb-bff2-6f12bbff989d", + "Name": "W18x40", + "EdgeId": 513, + "ExternalEdgeId": 513 + }, + "716c77e2-9bb4-4fd2-a9e3-91cbb2ee1582": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "716c77e2-9bb4-4fd2-a9e3-91cbb2ee1582", + "Name": null + }, + "5fb29c1c-1de2-42e9-8fa0-22843ac23f97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5fb29c1c-1de2-42e9-8fa0-22843ac23f97", + "Name": "W18x40", + "EdgeId": 514 + }, + "23008b41-5a5c-4bc3-bdea-0fe8a1f0fe93": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23008b41-5a5c-4bc3-bdea-0fe8a1f0fe93", + "Name": null + }, + "786e1ae8-4b5c-41f1-bf7d-2605505edd95": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "786e1ae8-4b5c-41f1-bf7d-2605505edd95", + "Name": "W18x40", + "EdgeId": 516 + }, + "1477736d-1342-4704-a8a1-1cae631da591": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1477736d-1342-4704-a8a1-1cae631da591", + "Name": null + }, + "dcbb564e-b680-41d3-a03c-4b4b7331f018": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dcbb564e-b680-41d3-a03c-4b4b7331f018", + "Name": "W18x40", + "EdgeId": 517, + "ExternalEdgeId": 517 + }, + "50fcfc58-7b38-4936-bef9-402960d869cb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "50fcfc58-7b38-4936-bef9-402960d869cb", + "Name": null + }, + "7a499bf1-09e7-4c46-88b9-9ee39f48dfb5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7a499bf1-09e7-4c46-88b9-9ee39f48dfb5", + "Name": "W18x40", + "EdgeId": 518, + "ExternalEdgeId": 518 + }, + "6e3484f9-2666-4ddb-8991-52481c425075": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e3484f9-2666-4ddb-8991-52481c425075", + "Name": null + }, + "a91312c2-1538-46bb-9fcb-67610f58662b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a91312c2-1538-46bb-9fcb-67610f58662b", + "Name": "W18x40", + "EdgeId": 521 + }, + "363d564e-15ee-404e-992d-757c898f3c58": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "363d564e-15ee-404e-992d-757c898f3c58", + "Name": null + }, + "f8cff8e0-7525-49ef-a226-c844fcf92da8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f8cff8e0-7525-49ef-a226-c844fcf92da8", + "Name": "W18x40", + "EdgeId": 522, + "ExternalEdgeId": 522 + }, + "9f9f8a52-f753-4bef-8f60-e9577263d57d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f9f8a52-f753-4bef-8f60-e9577263d57d", + "Name": null + }, + "01386b9d-711d-45a3-9cdb-a64d2d9ef76b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "01386b9d-711d-45a3-9cdb-a64d2d9ef76b", + "Name": "W18x40", + "EdgeId": 524 + }, + "66d53930-aaac-45ae-9a6a-811bf8ada88d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "66d53930-aaac-45ae-9a6a-811bf8ada88d", + "Name": null + }, + "4d999ee2-79be-4e87-9ee5-303dd62ee13a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4d999ee2-79be-4e87-9ee5-303dd62ee13a", + "Name": "W18x40", + "EdgeId": 525, + "ExternalEdgeId": 525 + }, + "881990a9-c500-4dc6-a9ee-768a38cc6ddf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "881990a9-c500-4dc6-a9ee-768a38cc6ddf", + "Name": null + }, + "65b564be-5588-4955-834f-99c5532759b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "65b564be-5588-4955-834f-99c5532759b9", + "Name": "W18x40", + "EdgeId": 527 + }, + "1d4514bd-1943-48d0-b1f4-ea4dd6905f95": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1d4514bd-1943-48d0-b1f4-ea4dd6905f95", + "Name": null + }, + "cf5f8d4b-791d-48ba-9630-67652ad9333d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cf5f8d4b-791d-48ba-9630-67652ad9333d", + "Name": "W18x40", + "EdgeId": 528, + "ExternalEdgeId": 528 + }, + "2c3b4e05-70f1-496f-b415-71a5783f4c2f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2c3b4e05-70f1-496f-b415-71a5783f4c2f", + "Name": null + }, + "2ba9ddbc-d2c4-4659-8567-09c4564d5705": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2ba9ddbc-d2c4-4659-8567-09c4564d5705", + "Name": "W18x40", + "EdgeId": 530, + "ExternalEdgeId": 530 + }, + "1cc1cd68-4ef8-4d29-9d15-36a5464b483a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1cc1cd68-4ef8-4d29-9d15-36a5464b483a", + "Name": null + }, + "3d7ba69a-bce3-41f4-a9f2-230aaea63481": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3d7ba69a-bce3-41f4-a9f2-230aaea63481", + "Name": "W18x40", + "EdgeId": 531, + "ExternalEdgeId": 531 + }, + "8613ad7e-d740-41cf-997b-a381e7de7eec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8613ad7e-d740-41cf-997b-a381e7de7eec", + "Name": null + }, + "82709de5-2093-458e-9b1a-bf8f09b499f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "82709de5-2093-458e-9b1a-bf8f09b499f3", + "Name": "W18x40", + "EdgeId": 533, + "ExternalEdgeId": 533 + }, + "6d98902a-e135-4064-8535-dfecaba53d8d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d98902a-e135-4064-8535-dfecaba53d8d", + "Name": null + }, + "732896dc-6029-4516-b565-d888f81fdb55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "732896dc-6029-4516-b565-d888f81fdb55", + "Name": "W18x40", + "EdgeId": 534 + }, + "e026282a-23cc-4d9d-94ba-5c4434ab22fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e026282a-23cc-4d9d-94ba-5c4434ab22fc", + "Name": null + }, + "531a3451-a5de-4441-b5e3-0aa303ab18c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "531a3451-a5de-4441-b5e3-0aa303ab18c4", + "Name": "W18x40", + "EdgeId": 535 + }, + "df0903f7-b1e5-4d10-b88d-966e28ff3c39": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df0903f7-b1e5-4d10-b88d-966e28ff3c39", + "Name": null + }, + "dfba7895-9944-49af-99b9-12735d7dac29": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "dfba7895-9944-49af-99b9-12735d7dac29", + "Name": "W18x40", + "EdgeId": 536, + "ExternalEdgeId": 536 + }, + "f3809848-30d4-45a8-b2df-ea6b9eebc03e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f3809848-30d4-45a8-b2df-ea6b9eebc03e", + "Name": null + }, + "6da1a03b-f3ce-412d-8484-2aa7a29e1872": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6da1a03b-f3ce-412d-8484-2aa7a29e1872", + "Name": "W18x40", + "EdgeId": 541, + "ExternalEdgeId": 541 + }, + "2126646f-4b86-4108-8ecc-2225934277c9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2126646f-4b86-4108-8ecc-2225934277c9", + "Name": null + }, + "0d9f7576-3e6b-4547-b7b4-19a2373142b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0d9f7576-3e6b-4547-b7b4-19a2373142b9", + "Name": "W18x40", + "EdgeId": 542 + }, + "44dc0ab1-c628-43e8-9341-5895e14481f8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44dc0ab1-c628-43e8-9341-5895e14481f8", + "Name": null + }, + "36309f39-2557-46c6-91e4-d10f1bed4595": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "36309f39-2557-46c6-91e4-d10f1bed4595", + "Name": "W18x40", + "EdgeId": 543 + }, + "6fb7cada-40a5-4868-bf0e-9a472581bcc6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6fb7cada-40a5-4868-bf0e-9a472581bcc6", + "Name": null + }, + "77c2d152-c901-4a73-844e-1759d5dc9add": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "77c2d152-c901-4a73-844e-1759d5dc9add", + "Name": "W18x40", + "EdgeId": 546, + "ExternalEdgeId": 546 + }, + "e6ce235e-5bdf-4047-8259-52641e61fc5b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6ce235e-5bdf-4047-8259-52641e61fc5b", + "Name": null + }, + "aaba0f83-47fd-4085-a5d5-b09583bdd0d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "aaba0f83-47fd-4085-a5d5-b09583bdd0d6", + "Name": "W18x40", + "EdgeId": 547, + "ExternalEdgeId": 547 + }, + "e34cd9b7-913a-4ca6-8917-96cfd57abcf2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e34cd9b7-913a-4ca6-8917-96cfd57abcf2", + "Name": null + }, + "553d02eb-e5a8-4e1e-856f-8ac87d14ae03": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "553d02eb-e5a8-4e1e-856f-8ac87d14ae03", + "Name": "W18x40", + "EdgeId": 548 + }, + "b5864596-d19a-47e6-9735-ccc266d3dafe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5864596-d19a-47e6-9735-ccc266d3dafe", + "Name": null + }, + "ef4fc27e-f345-4cfb-9905-fce410f57cd4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ef4fc27e-f345-4cfb-9905-fce410f57cd4", + "Name": "W18x40", + "EdgeId": 551 + }, + "7e4b8d91-7179-480a-9357-72ff32f91015": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e4b8d91-7179-480a-9357-72ff32f91015", + "Name": null + }, + "440c0fb1-907a-4b70-b03d-33d3f8b3ad43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "440c0fb1-907a-4b70-b03d-33d3f8b3ad43", + "Name": "W18x40", + "EdgeId": 552 + }, + "4d104296-008e-4bfb-93b6-8be080f77e15": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d104296-008e-4bfb-93b6-8be080f77e15", + "Name": null + }, + "b7d5d464-f8cd-4643-83c9-100af647f3e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b7d5d464-f8cd-4643-83c9-100af647f3e1", + "Name": "W18x40", + "EdgeId": 553, + "ExternalEdgeId": 553 + }, + "159f6e96-82cd-4825-a48e-dd6566c370ec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 8.35 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "159f6e96-82cd-4825-a48e-dd6566c370ec", + "Name": null + }, + "bf4e21aa-36d6-4319-90d2-5782f1f92c55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bf4e21aa-36d6-4319-90d2-5782f1f92c55", + "Name": "W18x40", + "EdgeId": 557, + "ExternalEdgeId": 557 + }, + "8cfed69e-0e43-4388-860d-aa71121e6044": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8cfed69e-0e43-4388-860d-aa71121e6044", + "Name": null + }, + "30381bd3-9e57-456f-861c-2bf567df1fbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "30381bd3-9e57-456f-861c-2bf567df1fbb", + "Name": "W18x40", + "EdgeId": 558 + }, + "ae148857-66ec-469b-90f6-00728af88075": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae148857-66ec-469b-90f6-00728af88075", + "Name": null + }, + "ae9b234a-15df-4841-a6f5-56d479728ba4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ae9b234a-15df-4841-a6f5-56d479728ba4", + "Name": "W18x40", + "EdgeId": 559 + }, + "f040c36d-4668-4a29-93a2-fd43a2e108ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f040c36d-4668-4a29-93a2-fd43a2e108ff", + "Name": null + }, + "c27b6bdf-486b-4eae-9318-8e0cdb2240d2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c27b6bdf-486b-4eae-9318-8e0cdb2240d2", + "Name": "W18x40", + "EdgeId": 561 + }, + "45e5953a-6668-4da1-a880-015d7774fa29": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "45e5953a-6668-4da1-a880-015d7774fa29", + "Name": null + }, + "9cdae8d5-38db-4c6a-b6fc-b16bafe93936": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9cdae8d5-38db-4c6a-b6fc-b16bafe93936", + "Name": "W18x40", + "EdgeId": 562 + }, + "5a52281c-f6ae-441e-bb7c-6b2458845a68": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a52281c-f6ae-441e-bb7c-6b2458845a68", + "Name": null + }, + "cbffc2b6-d5bd-408d-80c6-bc302d4e2ec2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cbffc2b6-d5bd-408d-80c6-bc302d4e2ec2", + "Name": "W18x40", + "EdgeId": 564, + "ExternalEdgeId": 564 + }, + "faa27509-b0a8-4807-994e-970d95778a66": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "faa27509-b0a8-4807-994e-970d95778a66", + "Name": null + }, + "d45af803-8b10-4bbf-80ce-987d8634c059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d45af803-8b10-4bbf-80ce-987d8634c059", + "Name": "W18x40", + "EdgeId": 565 + }, + "5ee3ed80-b8d1-4db3-83d8-c567b68ff4d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5ee3ed80-b8d1-4db3-83d8-c567b68ff4d9", + "Name": null + }, + "18251fd4-4c52-4057-9d41-0a7d1ba8403a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "18251fd4-4c52-4057-9d41-0a7d1ba8403a", + "Name": "W18x40", + "EdgeId": 567 + }, + "13619d49-7821-4ce6-9bf9-b6158ba7147d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "13619d49-7821-4ce6-9bf9-b6158ba7147d", + "Name": null + }, + "2646a5ea-75f3-4afe-8776-a34d3cba01b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2646a5ea-75f3-4afe-8776-a34d3cba01b9", + "Name": "W18x40", + "EdgeId": 568 + }, + "08286746-8261-43b9-b1d4-add93b0442b8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "08286746-8261-43b9-b1d4-add93b0442b8", + "Name": null + }, + "e99f1d37-12b3-4b77-aaeb-c0514863ceb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e99f1d37-12b3-4b77-aaeb-c0514863ceb8", + "Name": "W18x40", + "EdgeId": 569, + "ExternalEdgeId": 569 + }, + "7fc26bbb-689f-48cf-9694-f9a5d20bb297": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7fc26bbb-689f-48cf-9694-f9a5d20bb297", + "Name": null + }, + "11dcb1b5-c7ad-4955-a308-680dea537863": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "11dcb1b5-c7ad-4955-a308-680dea537863", + "Name": "W18x40", + "EdgeId": 572 + }, + "e48e653f-9cae-404f-8781-a38cba71622d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e48e653f-9cae-404f-8781-a38cba71622d", + "Name": null + }, + "60f6edbf-099b-4403-b538-fd86f4a94318": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "60f6edbf-099b-4403-b538-fd86f4a94318", + "Name": "W18x40", + "EdgeId": 573 + }, + "e5c8b139-92b6-4522-bc54-a0e58c4da197": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5c8b139-92b6-4522-bc54-a0e58c4da197", + "Name": null + }, + "2b8db37d-b668-4583-8713-c8fb4f01e2a7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2b8db37d-b668-4583-8713-c8fb4f01e2a7", + "Name": "W18x40", + "EdgeId": 575 + }, + "81e09bb2-cc85-4668-8a92-d16ab3dbb658": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "81e09bb2-cc85-4668-8a92-d16ab3dbb658", + "Name": null + }, + "5f562ec8-560f-4f50-9a8d-02c1a9ee9129": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5f562ec8-560f-4f50-9a8d-02c1a9ee9129", + "Name": "W18x40", + "EdgeId": 576 + }, + "b67b9ecd-f0bd-414f-bb6f-faa4582132a1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b67b9ecd-f0bd-414f-bb6f-faa4582132a1", + "Name": null + }, + "b86d4b15-fade-4abd-92f9-beda551ec426": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b86d4b15-fade-4abd-92f9-beda551ec426", + "Name": "W18x40", + "EdgeId": 578, + "ExternalEdgeId": 578 + }, + "facd80c3-d842-4c86-8557-33393436f4f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "facd80c3-d842-4c86-8557-33393436f4f1", + "Name": null + }, + "a768dd55-59da-49e7-8f55-326e2bae23b2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a768dd55-59da-49e7-8f55-326e2bae23b2", + "Name": "W18x40", + "EdgeId": 579 + }, + "87d71f27-cec5-48c6-be6f-0fe77e64b67a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87d71f27-cec5-48c6-be6f-0fe77e64b67a", + "Name": null + }, + "b3a10a02-d1b6-47eb-a34f-a80ed7de65e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b3a10a02-d1b6-47eb-a34f-a80ed7de65e8", + "Name": "W18x40", + "EdgeId": 581 + }, + "32c08391-736b-48b8-a108-94c861adcf80": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32c08391-736b-48b8-a108-94c861adcf80", + "Name": null + }, + "40815228-0652-4a31-8667-2ad82257949f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "40815228-0652-4a31-8667-2ad82257949f", + "Name": "W18x40", + "EdgeId": 582 + }, + "1ed54863-c7e7-4e55-ab4e-7478d51f99d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ed54863-c7e7-4e55-ab4e-7478d51f99d7", + "Name": null + }, + "cdaf6ec3-2eab-4656-bd6d-4c2f0c9dd196": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cdaf6ec3-2eab-4656-bd6d-4c2f0c9dd196", + "Name": "W18x40", + "EdgeId": 583, + "ExternalEdgeId": 583 + }, + "6595382e-b658-40f8-8d1f-e02731fce3b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6595382e-b658-40f8-8d1f-e02731fce3b0", + "Name": null + }, + "d08eaf1f-fdb0-4cd9-bc05-a4461fe773a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d08eaf1f-fdb0-4cd9-bc05-a4461fe773a8", + "Name": "W18x40", + "EdgeId": 586 + }, + "c1f1347b-b979-4744-b514-0d41c7705bbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c1f1347b-b979-4744-b514-0d41c7705bbd", + "Name": null + }, + "50f1b3e2-ae23-4fc3-b661-a216a7e4cbe5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "50f1b3e2-ae23-4fc3-b661-a216a7e4cbe5", + "Name": "W18x40", + "EdgeId": 587 + }, + "9564ff58-bd64-4b45-ba6a-0788332140e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9564ff58-bd64-4b45-ba6a-0788332140e9", + "Name": null + }, + "d8a38080-0444-4ee4-8216-05ba26e27146": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d8a38080-0444-4ee4-8216-05ba26e27146", + "Name": "W18x40", + "EdgeId": 589 + }, + "9fa86edd-b765-44e1-be26-306e501b9f58": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fa86edd-b765-44e1-be26-306e501b9f58", + "Name": null + }, + "57bc1d9b-b00a-40c9-8723-e6fc6d208f18": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "57bc1d9b-b00a-40c9-8723-e6fc6d208f18", + "Name": "W18x40", + "EdgeId": 590 + }, + "6e6de7ef-42cf-473d-90d5-adcfbbe260c4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e6de7ef-42cf-473d-90d5-adcfbbe260c4", + "Name": null + }, + "8cc1458c-393e-49dc-9324-dc9d1822744e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8cc1458c-393e-49dc-9324-dc9d1822744e", + "Name": "W18x40", + "EdgeId": 592, + "ExternalEdgeId": 592 + }, + "5826ef4b-f0a3-406d-931f-d439b158936c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5826ef4b-f0a3-406d-931f-d439b158936c", + "Name": null + }, + "936fe620-b84d-4c04-bb11-d1f35ce79776": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "936fe620-b84d-4c04-bb11-d1f35ce79776", + "Name": "W18x40", + "EdgeId": 593 + }, + "088af1c1-ecd6-41ca-9be4-2d964a97a977": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "088af1c1-ecd6-41ca-9be4-2d964a97a977", + "Name": null + }, + "efc11817-9104-4a7a-9f5b-33ad621e0417": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "efc11817-9104-4a7a-9f5b-33ad621e0417", + "Name": "W18x40", + "EdgeId": 595 + }, + "3c89d32b-5a44-4c7f-af26-228e77df13cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c89d32b-5a44-4c7f-af26-228e77df13cd", + "Name": null + }, + "ba888f8b-b24f-4d6e-a97e-e67451855487": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ba888f8b-b24f-4d6e-a97e-e67451855487", + "Name": "W18x40", + "EdgeId": 596 + }, + "23f1c4df-0ef7-4474-b9dc-3fbd78b40649": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23f1c4df-0ef7-4474-b9dc-3fbd78b40649", + "Name": null + }, + "ca2b2483-283e-4669-96aa-2c1bd17af9a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ca2b2483-283e-4669-96aa-2c1bd17af9a4", + "Name": "W18x40", + "EdgeId": 597, + "ExternalEdgeId": 597 + }, + "193c5f89-e69d-45a3-9d1b-c97a2ce7daaf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 8.35 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "193c5f89-e69d-45a3-9d1b-c97a2ce7daaf", + "Name": null + }, + "c6d445c1-5f48-4421-a286-821bba3d7a76": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c6d445c1-5f48-4421-a286-821bba3d7a76", + "Name": "W18x40", + "EdgeId": 601, + "ExternalEdgeId": 601 + }, + "0867c95f-7168-4b23-b340-21813bb6c0da": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0867c95f-7168-4b23-b340-21813bb6c0da", + "Name": null + }, + "16834ca5-faff-47f1-9cdd-a870ad74ba83": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "16834ca5-faff-47f1-9cdd-a870ad74ba83", + "Name": "W18x40", + "EdgeId": 602 + }, + "b88259ce-9134-469a-8a4e-6a8326867f0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b88259ce-9134-469a-8a4e-6a8326867f0b", + "Name": null + }, + "7dcbcbe4-7829-40ef-addc-6d1cac014c05": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "7dcbcbe4-7829-40ef-addc-6d1cac014c05", + "Name": "W18x40", + "EdgeId": 603 + }, + "d7df921b-beba-4d8d-8010-47bb6ab3a559": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d7df921b-beba-4d8d-8010-47bb6ab3a559", + "Name": null + }, + "62e320d4-80ef-4844-ae6e-9e7820cae6fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "62e320d4-80ef-4844-ae6e-9e7820cae6fd", + "Name": "W18x40", + "EdgeId": 605 + }, + "91588d9a-0e75-43ab-8b87-f40c7bd0e9ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91588d9a-0e75-43ab-8b87-f40c7bd0e9ba", + "Name": null + }, + "789ce616-a358-4da0-abd1-c2cd96d96c77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "789ce616-a358-4da0-abd1-c2cd96d96c77", + "Name": "W18x40", + "EdgeId": 606 + }, + "f0d1faad-5527-4b7b-8b69-93478f3c3a39": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f0d1faad-5527-4b7b-8b69-93478f3c3a39", + "Name": null + }, + "c0cd3c93-d2ed-40b2-87e8-bae9075fb034": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c0cd3c93-d2ed-40b2-87e8-bae9075fb034", + "Name": "W18x40", + "EdgeId": 608 + }, + "72d1ea92-99b3-43e3-b2b0-39195d5e6784": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72d1ea92-99b3-43e3-b2b0-39195d5e6784", + "Name": null + }, + "d68c905f-3144-4f37-b3f7-e8fcf9ad0580": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d68c905f-3144-4f37-b3f7-e8fcf9ad0580", + "Name": "W18x40", + "EdgeId": 609 + }, + "ec69dbe0-24cc-4c69-9a17-6370b74fe341": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec69dbe0-24cc-4c69-9a17-6370b74fe341", + "Name": null + }, + "57445ce6-80b5-4057-b74f-a3312f7f6c7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "57445ce6-80b5-4057-b74f-a3312f7f6c7f", + "Name": "W18x40", + "EdgeId": 611, + "ExternalEdgeId": 611 + }, + "92b60307-d3a3-4367-b801-dfd01e369b13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "92b60307-d3a3-4367-b801-dfd01e369b13", + "Name": null + }, + "5cbc2d16-2196-4845-a278-6cbec774f77d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5cbc2d16-2196-4845-a278-6cbec774f77d", + "Name": "W18x40", + "EdgeId": 612 + }, + "212043e5-070b-4769-a2e7-ad8b6f72fc30": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "212043e5-070b-4769-a2e7-ad8b6f72fc30", + "Name": null + }, + "d5ade6f8-a253-4e2b-8e67-2bebef4e43c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d5ade6f8-a253-4e2b-8e67-2bebef4e43c2", + "Name": "W18x40", + "EdgeId": 614 + }, + "923ccd38-bb60-48d9-a326-5adedfdf4e91": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "923ccd38-bb60-48d9-a326-5adedfdf4e91", + "Name": null + }, + "a05fe6ac-71a8-490f-bdbf-24afdabfa1bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a05fe6ac-71a8-490f-bdbf-24afdabfa1bb", + "Name": "W18x40", + "EdgeId": 615 + }, + "047231a8-2c6a-4505-bb2e-49b604e0a16d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "047231a8-2c6a-4505-bb2e-49b604e0a16d", + "Name": null + }, + "974201ba-8ba2-4c4b-91ab-0d88f3fb53fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "974201ba-8ba2-4c4b-91ab-0d88f3fb53fd", + "Name": "W18x40", + "EdgeId": 616, + "ExternalEdgeId": 616 + }, + "adafce07-2c95-4901-b4d5-739a9cf47bbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "adafce07-2c95-4901-b4d5-739a9cf47bbd", + "Name": null + }, + "d0c8759a-9c91-4f22-a1cc-b94d5c45abab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d0c8759a-9c91-4f22-a1cc-b94d5c45abab", + "Name": "W18x40", + "EdgeId": 619 + }, + "669ef044-3557-47cf-bf23-0a17b92724bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "669ef044-3557-47cf-bf23-0a17b92724bf", + "Name": null + }, + "f464c76d-6a27-4b91-bdd4-21f37a9df2e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f464c76d-6a27-4b91-bdd4-21f37a9df2e0", + "Name": "W18x40", + "EdgeId": 620 + }, + "33c9dd82-8239-46cd-9709-5ed6c52dd653": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33c9dd82-8239-46cd-9709-5ed6c52dd653", + "Name": null + }, + "4904ebb7-77bc-4b67-bb5a-054ebd7231ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4904ebb7-77bc-4b67-bb5a-054ebd7231ad", + "Name": "W18x40", + "EdgeId": 622 + }, + "fa1518ea-7c05-426c-9d7b-1781e4a01034": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa1518ea-7c05-426c-9d7b-1781e4a01034", + "Name": null + }, + "0e48fd48-ef21-4f02-a90d-d51b139cb09e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0e48fd48-ef21-4f02-a90d-d51b139cb09e", + "Name": "W18x40", + "EdgeId": 623 + }, + "ae2d3589-0442-4ad8-89d3-36864fd25b4f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae2d3589-0442-4ad8-89d3-36864fd25b4f", + "Name": null + }, + "8fdb757a-bfb8-41fe-9848-0ba0d8f15b02": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8fdb757a-bfb8-41fe-9848-0ba0d8f15b02", + "Name": "W18x40", + "EdgeId": 625 + }, + "9e4b89f6-e940-48e8-9065-d1b6bd17348b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9e4b89f6-e940-48e8-9065-d1b6bd17348b", + "Name": null + }, + "55f24018-a730-4851-8806-4474071fbf7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "55f24018-a730-4851-8806-4474071fbf7d", + "Name": "W18x40", + "EdgeId": 626 + }, + "01716952-2b3c-4567-9606-e5eed9fa1b04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "01716952-2b3c-4567-9606-e5eed9fa1b04", + "Name": null + }, + "496e4a9e-1e09-4265-b237-93d553c94cf7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "496e4a9e-1e09-4265-b237-93d553c94cf7", + "Name": "W18x40", + "EdgeId": 628, + "ExternalEdgeId": 628 + }, + "c5940f3c-4157-477a-81ab-aa0f8a74dbd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5940f3c-4157-477a-81ab-aa0f8a74dbd3", + "Name": null + }, + "598893a7-a401-4411-bff3-55d7a1c0857d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "598893a7-a401-4411-bff3-55d7a1c0857d", + "Name": "W18x40", + "EdgeId": 629 + }, + "4bd68415-f16a-45ba-b1d4-3f0aef241629": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4bd68415-f16a-45ba-b1d4-3f0aef241629", + "Name": null + }, + "8b81275f-4d44-45af-81fa-003c41bf7c90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8b81275f-4d44-45af-81fa-003c41bf7c90", + "Name": "W18x40", + "EdgeId": 631, + "ExternalEdgeId": 631 + }, + "c4c646be-fd29-48c8-9d34-f765107b31dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c4c646be-fd29-48c8-9d34-f765107b31dd", + "Name": null + }, + "41a95020-fe80-44bd-85fb-4993379dd1d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "41a95020-fe80-44bd-85fb-4993379dd1d1", + "Name": "W18x40", + "EdgeId": 632 + }, + "55736b40-1d0d-4476-8001-980e135f6ed3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55736b40-1d0d-4476-8001-980e135f6ed3", + "Name": null + }, + "f0103a92-4216-4c66-ad52-37ec0db58e40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f0103a92-4216-4c66-ad52-37ec0db58e40", + "Name": "W18x40", + "EdgeId": 633 + }, + "11e5cb44-d8bf-4f79-ae9f-973342842153": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11e5cb44-d8bf-4f79-ae9f-973342842153", + "Name": null + }, + "856924b0-f6b9-4705-a5bc-d6f422a242ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "856924b0-f6b9-4705-a5bc-d6f422a242ed", + "Name": "W18x40", + "EdgeId": 634, + "ExternalEdgeId": 634 + }, + "b65785e2-56b7-478c-85bc-70d32d8c5bd0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b65785e2-56b7-478c-85bc-70d32d8c5bd0", + "Name": null + }, + "90c18d70-2de7-470d-b4c7-3134dde7c081": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "90c18d70-2de7-470d-b4c7-3134dde7c081", + "Name": "W18x40", + "EdgeId": 638 + }, + "37a187ef-32f4-4a48-9a18-5a68c9d45e91": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "37a187ef-32f4-4a48-9a18-5a68c9d45e91", + "Name": null + }, + "0efdd0d4-69a6-4010-97e5-549d788097f0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0efdd0d4-69a6-4010-97e5-549d788097f0", + "Name": "W18x40", + "EdgeId": 639 + }, + "0c74bb05-47ec-48ad-96d4-d8c6b8186425": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c74bb05-47ec-48ad-96d4-d8c6b8186425", + "Name": null + }, + "0d72ef8e-341f-42db-8070-9aa2d1906935": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0d72ef8e-341f-42db-8070-9aa2d1906935", + "Name": "W18x40", + "EdgeId": 641 + }, + "8570b9a5-a1ff-45f2-abed-9c3f5825b645": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8570b9a5-a1ff-45f2-abed-9c3f5825b645", + "Name": null + }, + "c3af9d39-5435-4e99-a49b-f46543ebc474": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c3af9d39-5435-4e99-a49b-f46543ebc474", + "Name": "W18x40", + "EdgeId": 642 + }, + "ece1ff08-e34f-4073-8b78-faa59c3a95ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ece1ff08-e34f-4073-8b78-faa59c3a95ff", + "Name": null + }, + "731fe8f4-16ab-45ad-bd79-dfdbc86da032": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "731fe8f4-16ab-45ad-bd79-dfdbc86da032", + "Name": "W18x40", + "EdgeId": 644 + }, + "e3e7c14c-5616-4a17-9bcf-8f752f1da869": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3e7c14c-5616-4a17-9bcf-8f752f1da869", + "Name": null + }, + "70df52ce-0402-4727-99f1-00ad5d1a13cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "70df52ce-0402-4727-99f1-00ad5d1a13cd", + "Name": "W18x40", + "EdgeId": 645 + }, + "e667196c-8e07-4865-afcc-1053169ea9ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e667196c-8e07-4865-afcc-1053169ea9ff", + "Name": null + }, + "94c6fbc3-b8c2-48ac-af52-df631ee1b3d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "94c6fbc3-b8c2-48ac-af52-df631ee1b3d3", + "Name": "W18x40", + "EdgeId": 647, + "ExternalEdgeId": 647 + }, + "5fdbaa73-0bad-440f-95ee-dc89c177c392": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5fdbaa73-0bad-440f-95ee-dc89c177c392", + "Name": null + }, + "a2e652c1-52c7-400d-9862-ea1d79a02daa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a2e652c1-52c7-400d-9862-ea1d79a02daa", + "Name": "W18x40", + "EdgeId": 648 + }, + "23179f5b-0691-4e38-8d02-31e1391821e5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23179f5b-0691-4e38-8d02-31e1391821e5", + "Name": null + }, + "1639e74f-1ab2-4284-af23-7b2920053694": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1639e74f-1ab2-4284-af23-7b2920053694", + "Name": "W18x40", + "EdgeId": 650 + }, + "213981cb-b6a4-4067-a1d6-6d2feaa0a5f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "213981cb-b6a4-4067-a1d6-6d2feaa0a5f1", + "Name": null + }, + "1cfef996-38bf-423a-b89c-a22527bd808b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1cfef996-38bf-423a-b89c-a22527bd808b", + "Name": "W18x40", + "EdgeId": 651 + }, + "7c45c886-b9ee-4d53-af0c-d27717a1fefb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c45c886-b9ee-4d53-af0c-d27717a1fefb", + "Name": null + }, + "438608be-71bd-4916-aac3-b792fa314e6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "438608be-71bd-4916-aac3-b792fa314e6b", + "Name": "W18x40", + "EdgeId": 652, + "ExternalEdgeId": 652 + }, + "df61e984-0c0e-473a-80a4-00cdfbe01db4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df61e984-0c0e-473a-80a4-00cdfbe01db4", + "Name": null + }, + "9c7a13ff-626a-44c2-b8de-c11e1d574557": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9c7a13ff-626a-44c2-b8de-c11e1d574557", + "Name": "W18x40", + "EdgeId": 655 + }, + "7f9d113c-148b-466d-b559-8687bfb89acf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7f9d113c-148b-466d-b559-8687bfb89acf", + "Name": null + }, + "68503447-8ffd-483b-b7d9-5f04308eb45a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "68503447-8ffd-483b-b7d9-5f04308eb45a", + "Name": "W18x40", + "EdgeId": 656 + }, + "4a77d3ad-f7fa-4aef-863d-baa1e3949a5d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a77d3ad-f7fa-4aef-863d-baa1e3949a5d", + "Name": null + }, + "17556f05-3714-4782-aeea-e29a3ce38da8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "17556f05-3714-4782-aeea-e29a3ce38da8", + "Name": "W18x40", + "EdgeId": 658 + }, + "1146f832-cda6-45a1-8aac-01bef1491ecb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1146f832-cda6-45a1-8aac-01bef1491ecb", + "Name": null + }, + "4b0cb37f-2669-44d9-be31-f4c129261170": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4b0cb37f-2669-44d9-be31-f4c129261170", + "Name": "W18x40", + "EdgeId": 659 + }, + "713828b8-d8c6-4f5a-8cd5-af664d42e099": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "713828b8-d8c6-4f5a-8cd5-af664d42e099", + "Name": null + }, + "2171e22b-7f6b-434c-bb02-8de29fe8c897": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2171e22b-7f6b-434c-bb02-8de29fe8c897", + "Name": "W18x40", + "EdgeId": 661 + }, + "a86c1578-00d6-4e88-998e-5202e2e809ea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a86c1578-00d6-4e88-998e-5202e2e809ea", + "Name": null + }, + "3ee749a3-05d9-4fe5-a1a2-4f0544780b5b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3ee749a3-05d9-4fe5-a1a2-4f0544780b5b", + "Name": "W18x40", + "EdgeId": 662 + }, + "02668896-213e-42e1-91e4-d792f781a20b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02668896-213e-42e1-91e4-d792f781a20b", + "Name": null + }, + "02337205-a9b8-45df-851a-a72e39765d5c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "02337205-a9b8-45df-851a-a72e39765d5c", + "Name": "W18x40", + "EdgeId": 664, + "ExternalEdgeId": 664 + }, + "c861af71-4204-4f3d-9c09-99aa28512a32": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c861af71-4204-4f3d-9c09-99aa28512a32", + "Name": null + }, + "5d55ba06-766f-4ab3-8f6f-f55fc5ec65a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5d55ba06-766f-4ab3-8f6f-f55fc5ec65a4", + "Name": "W18x40", + "EdgeId": 665 + }, + "44319f82-bcac-43bd-a36e-c7b59709c4a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44319f82-bcac-43bd-a36e-c7b59709c4a3", + "Name": null + }, + "e78eddf3-3116-4cfc-8f48-96ce1a55ad3e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e78eddf3-3116-4cfc-8f48-96ce1a55ad3e", + "Name": "W18x40", + "EdgeId": 667 + }, + "5272dd16-7d31-4c50-a8a9-7df801128e9b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5272dd16-7d31-4c50-a8a9-7df801128e9b", + "Name": null + }, + "a1d867fe-f5cd-4693-84df-2aa6efb42666": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a1d867fe-f5cd-4693-84df-2aa6efb42666", + "Name": "W18x40", + "EdgeId": 668 + }, + "f00e3222-b4c6-45cf-83cb-3d5004fe9972": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f00e3222-b4c6-45cf-83cb-3d5004fe9972", + "Name": null + }, + "d7f63a4a-bc14-4e51-b500-e205a0df7438": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d7f63a4a-bc14-4e51-b500-e205a0df7438", + "Name": "W18x40", + "EdgeId": 669, + "ExternalEdgeId": 669 + }, + "188b0ee1-01af-4945-bf1e-9345ac5b8c2d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "188b0ee1-01af-4945-bf1e-9345ac5b8c2d", + "Name": null + }, + "0f12bef3-0263-4aa0-9fb6-ff0b36cc2a42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0f12bef3-0263-4aa0-9fb6-ff0b36cc2a42", + "Name": "W18x40", + "EdgeId": 672 + }, + "d82797e6-1e45-4ba6-aad6-dfa0bdd288ae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d82797e6-1e45-4ba6-aad6-dfa0bdd288ae", + "Name": null + }, + "bb40d9d1-da82-4767-97f4-a04832c2511c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bb40d9d1-da82-4767-97f4-a04832c2511c", + "Name": "W18x40", + "EdgeId": 673 + }, + "38807bd4-8a0f-4c1f-8130-c7f1f68c4d73": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38807bd4-8a0f-4c1f-8130-c7f1f68c4d73", + "Name": null + }, + "0335932e-9777-479e-a61e-4c5920d7f26c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0335932e-9777-479e-a61e-4c5920d7f26c", + "Name": "W18x40", + "EdgeId": 675 + }, + "7ef946e6-9996-406d-a8d3-6204f670d74c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ef946e6-9996-406d-a8d3-6204f670d74c", + "Name": null + }, + "152b55c8-0f1a-4dc1-9b53-4d8e1aa8d63d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "152b55c8-0f1a-4dc1-9b53-4d8e1aa8d63d", + "Name": "W18x40", + "EdgeId": 676 + }, + "960ebc28-e19b-4d56-96c9-336d4ad4b9ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "960ebc28-e19b-4d56-96c9-336d4ad4b9ce", + "Name": null + }, + "2a4e78db-55eb-46bc-a92f-cbef56700e54": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2a4e78db-55eb-46bc-a92f-cbef56700e54", + "Name": "W18x40", + "EdgeId": 678 + }, + "197372bd-4243-418a-8bf0-24e9a047e7a7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "197372bd-4243-418a-8bf0-24e9a047e7a7", + "Name": null + }, + "7e466ee8-ba28-423a-b2e3-09e8befdd55e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "7e466ee8-ba28-423a-b2e3-09e8befdd55e", + "Name": "W18x40", + "EdgeId": 679 + }, + "621d7cba-486d-4c87-a89a-27bcf925dd34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "621d7cba-486d-4c87-a89a-27bcf925dd34", + "Name": null + }, + "097b411b-c31c-450e-ad41-631dfa5fd716": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "097b411b-c31c-450e-ad41-631dfa5fd716", + "Name": "W18x40", + "EdgeId": 681, + "ExternalEdgeId": 681 + }, + "2d72d68c-1cdd-4d53-8b12-efb29b1e4ca5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d72d68c-1cdd-4d53-8b12-efb29b1e4ca5", + "Name": null + }, + "afff9e36-4812-492f-9120-19adafd33b4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "afff9e36-4812-492f-9120-19adafd33b4b", + "Name": "W18x40", + "EdgeId": 682 + }, + "e8dc1d66-b730-41d4-830d-aea8a2e55a09": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8dc1d66-b730-41d4-830d-aea8a2e55a09", + "Name": null + }, + "b960de5c-c968-403a-899e-536ca8bd0c65": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b960de5c-c968-403a-899e-536ca8bd0c65", + "Name": "W18x40", + "EdgeId": 684 + }, + "4b74e2cf-f7e6-409c-90f5-8bcff539deae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4b74e2cf-f7e6-409c-90f5-8bcff539deae", + "Name": null + }, + "4427efa4-fd38-46ed-bf1a-ea530b6c2ee3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4427efa4-fd38-46ed-bf1a-ea530b6c2ee3", + "Name": "W18x40", + "EdgeId": 685 + }, + "6badb462-afef-4fc4-be4e-8fefe80c01e7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6badb462-afef-4fc4-be4e-8fefe80c01e7", + "Name": null + }, + "8ec52ca1-0b49-44c2-bee5-eee48b3cc5ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8ec52ca1-0b49-44c2-bee5-eee48b3cc5ce", + "Name": "W18x40", + "EdgeId": 686, + "ExternalEdgeId": 686 + }, + "b22adece-0233-417e-bbac-43ba6b7a441e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b22adece-0233-417e-bbac-43ba6b7a441e", + "Name": null + }, + "e720ef94-b7fe-4e9d-841b-1d206930b45a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e720ef94-b7fe-4e9d-841b-1d206930b45a", + "Name": "W18x40", + "EdgeId": 689 + }, + "fc2db445-77aa-4ed0-a6b4-de497f7de4e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc2db445-77aa-4ed0-a6b4-de497f7de4e6", + "Name": null + }, + "de9e670c-f9c5-41b0-81f2-94967ed7162b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "de9e670c-f9c5-41b0-81f2-94967ed7162b", + "Name": "W18x40", + "EdgeId": 690 + }, + "7b516efa-2836-4ef5-8440-31af77332211": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7b516efa-2836-4ef5-8440-31af77332211", + "Name": null + }, + "a549ab27-74da-453b-9236-622e0ad74f6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a549ab27-74da-453b-9236-622e0ad74f6b", + "Name": "W18x40", + "EdgeId": 692 + }, + "22dddca2-ae26-45be-9f6c-21972a573998": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22dddca2-ae26-45be-9f6c-21972a573998", + "Name": null + }, + "cc7761db-f00b-463c-81be-d0483014b063": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cc7761db-f00b-463c-81be-d0483014b063", + "Name": "W18x40", + "EdgeId": 693 + }, + "7d8c69fe-0433-459a-9d21-bccea609b225": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d8c69fe-0433-459a-9d21-bccea609b225", + "Name": null + }, + "6fc38163-b854-49a5-85b2-5be323c2850b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6fc38163-b854-49a5-85b2-5be323c2850b", + "Name": "W18x40", + "EdgeId": 695 + }, + "d6141e17-0070-4ce8-ad38-723e5e73c36b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d6141e17-0070-4ce8-ad38-723e5e73c36b", + "Name": null + }, + "2785888a-eff3-4efb-9ea1-a6b6c12744c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2785888a-eff3-4efb-9ea1-a6b6c12744c8", + "Name": "W18x40", + "EdgeId": 696 + }, + "93e1e0f0-0e8a-4aeb-867f-f258b61048d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "93e1e0f0-0e8a-4aeb-867f-f258b61048d3", + "Name": null + }, + "ee7099e6-33ba-4d25-9c9e-d1c67d9b8fa3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ee7099e6-33ba-4d25-9c9e-d1c67d9b8fa3", + "Name": "W18x40", + "EdgeId": 698, + "ExternalEdgeId": 698 + }, + "d56afa21-4686-4392-9274-961eb900858f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d56afa21-4686-4392-9274-961eb900858f", + "Name": null + }, + "f725689d-470c-4eac-9ea9-f8d4e907dbd0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f725689d-470c-4eac-9ea9-f8d4e907dbd0", + "Name": "W18x40", + "EdgeId": 699 + }, + "0dcf95a6-7244-4d90-8e2f-1c635c5354f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0dcf95a6-7244-4d90-8e2f-1c635c5354f4", + "Name": null + }, + "4e218c34-6142-46b4-bbd6-7a0ebb2390f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4e218c34-6142-46b4-bbd6-7a0ebb2390f9", + "Name": "W18x40", + "EdgeId": 701 + }, + "fd1748dd-e5a7-41d4-a2af-77c1ac721375": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fd1748dd-e5a7-41d4-a2af-77c1ac721375", + "Name": null + }, + "285764b0-4fdd-4bcc-bb17-f88af2757a42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "285764b0-4fdd-4bcc-bb17-f88af2757a42", + "Name": "W18x40", + "EdgeId": 702 + }, + "4f4a540e-97a9-4899-a62c-06b63d13cce0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f4a540e-97a9-4899-a62c-06b63d13cce0", + "Name": null + }, + "63f7a03e-fd12-4c62-b502-e04948630395": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "63f7a03e-fd12-4c62-b502-e04948630395", + "Name": "W18x40", + "EdgeId": 703, + "ExternalEdgeId": 703 + }, + "12339089-9808-45f7-aabc-06e5dde7d0b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12339089-9808-45f7-aabc-06e5dde7d0b4", + "Name": null + }, + "67e36fac-3eef-43ba-a1ef-bac68b1bb4b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "67e36fac-3eef-43ba-a1ef-bac68b1bb4b5", + "Name": "W18x40", + "EdgeId": 706 + }, + "0c580409-ad34-4524-ac77-877676bb2dae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c580409-ad34-4524-ac77-877676bb2dae", + "Name": null + }, + "6b051126-0250-4fd6-a927-201c7a207eb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6b051126-0250-4fd6-a927-201c7a207eb8", + "Name": "W18x40", + "EdgeId": 707 + }, + "461c624c-a959-491d-8cfb-0e6c814ff2cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "461c624c-a959-491d-8cfb-0e6c814ff2cf", + "Name": null + }, + "802833d2-eb2c-473e-9cd4-7a911ca9afbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "802833d2-eb2c-473e-9cd4-7a911ca9afbf", + "Name": "W18x40", + "EdgeId": 709 + }, + "f3e08c36-2f9e-4a22-9ab1-1d83b699b63d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f3e08c36-2f9e-4a22-9ab1-1d83b699b63d", + "Name": null + }, + "f67e7b9e-cc99-46d4-9795-9a06d9eedd52": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f67e7b9e-cc99-46d4-9795-9a06d9eedd52", + "Name": "W18x40", + "EdgeId": 710 + }, + "fe985664-3fff-40f0-8c2c-f2d16b72bd9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe985664-3fff-40f0-8c2c-f2d16b72bd9a", + "Name": null + }, + "6712b459-3ca2-43a8-a170-782ca04dffc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6712b459-3ca2-43a8-a170-782ca04dffc5", + "Name": "W18x40", + "EdgeId": 712 + }, + "424e571e-6182-4fec-95c0-aedd296a4548": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "424e571e-6182-4fec-95c0-aedd296a4548", + "Name": null + }, + "2bdf99f6-9504-4858-b0e2-512f07819cbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2bdf99f6-9504-4858-b0e2-512f07819cbf", + "Name": "W18x40", + "EdgeId": 713 + }, + "1da82b37-17c2-47ea-87e9-e73438c62084": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1da82b37-17c2-47ea-87e9-e73438c62084", + "Name": null + }, + "c4213c32-b37a-495a-a76d-4ea63c0f5022": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c4213c32-b37a-495a-a76d-4ea63c0f5022", + "Name": "W18x40", + "EdgeId": 715, + "ExternalEdgeId": 715 + }, + "41b62742-7c1d-46e3-aa5b-fa3f84d66de7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41b62742-7c1d-46e3-aa5b-fa3f84d66de7", + "Name": null + }, + "86fc3b96-8b4b-4c2c-8847-e30f73f8626c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "86fc3b96-8b4b-4c2c-8847-e30f73f8626c", + "Name": "W18x40", + "EdgeId": 716 + }, + "1745e124-4060-4571-b15d-1936e374af86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1745e124-4060-4571-b15d-1936e374af86", + "Name": null + }, + "314674f9-2d4b-4679-ad3c-7c8f613a4077": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "314674f9-2d4b-4679-ad3c-7c8f613a4077", + "Name": "W18x40", + "EdgeId": 718 + }, + "9074c498-0d66-4e3f-8c1c-7342296a8eb8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9074c498-0d66-4e3f-8c1c-7342296a8eb8", + "Name": null + }, + "c1c09f5b-1a1f-47ad-a376-eb66a6786392": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c1c09f5b-1a1f-47ad-a376-eb66a6786392", + "Name": "W18x40", + "EdgeId": 719, + "ExternalEdgeId": 719 + }, + "bb98b3dd-8fce-43fe-b41f-89739b78be22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bb98b3dd-8fce-43fe-b41f-89739b78be22", + "Name": null + }, + "bf51ef59-9801-4933-8fbc-a96fb94acca1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bf51ef59-9801-4933-8fbc-a96fb94acca1", + "Name": "W18x40", + "EdgeId": 720, + "ExternalEdgeId": 720 + }, + "e414ac4b-ff52-48b9-981c-b3edddea0b7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e414ac4b-ff52-48b9-981c-b3edddea0b7a", + "Name": null + }, + "e08b3150-d842-4c01-89c8-5f3e046ca18a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e08b3150-d842-4c01-89c8-5f3e046ca18a", + "Name": "W18x40", + "EdgeId": 723 + }, + "dc69d71e-b19b-4ddf-9c15-58ef2734fc77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc69d71e-b19b-4ddf-9c15-58ef2734fc77", + "Name": null + }, + "6c43088a-9d54-4e00-a19d-b0b4528d3896": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6c43088a-9d54-4e00-a19d-b0b4528d3896", + "Name": "W18x40", + "EdgeId": 724, + "ExternalEdgeId": 724 + }, + "7daa4cd1-c930-42d1-9418-6241abbd842c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7daa4cd1-c930-42d1-9418-6241abbd842c", + "Name": null + }, + "92093ca5-b651-430c-828a-b577685d68dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "92093ca5-b651-430c-828a-b577685d68dd", + "Name": "W18x40", + "EdgeId": 726 + }, + "66096f54-35b0-4dfa-9514-4da037eaf739": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "66096f54-35b0-4dfa-9514-4da037eaf739", + "Name": null + }, + "3248ccd0-0d78-45c6-b1a2-9179e54da3a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3248ccd0-0d78-45c6-b1a2-9179e54da3a6", + "Name": "W18x40", + "EdgeId": 727, + "ExternalEdgeId": 727 + }, + "df1756c5-010c-4af7-822a-d4dc8fdf84a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df1756c5-010c-4af7-822a-d4dc8fdf84a2", + "Name": null + }, + "09db585f-b4d6-40c2-9764-e25865e034d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "09db585f-b4d6-40c2-9764-e25865e034d3", + "Name": "W18x40", + "EdgeId": 729 + }, + "5d9b9e6f-5951-4e22-bd0d-69aad03ddfc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5d9b9e6f-5951-4e22-bd0d-69aad03ddfc5", + "Name": null + }, + "0a7d1485-5017-42fb-ab83-49b8295b2f6a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0a7d1485-5017-42fb-ab83-49b8295b2f6a", + "Name": "W18x40", + "EdgeId": 730, + "ExternalEdgeId": 730 + }, + "b303bdd4-8e84-4523-b986-8d075f960771": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b303bdd4-8e84-4523-b986-8d075f960771", + "Name": null + }, + "6678d9fc-8d61-4903-9d80-156ad0014450": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6678d9fc-8d61-4903-9d80-156ad0014450", + "Name": "W18x40", + "EdgeId": 732, + "ExternalEdgeId": 732 + }, + "ca3b112d-8218-403c-9343-20a643d38435": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ca3b112d-8218-403c-9343-20a643d38435", + "Name": null + }, + "d5465768-3985-433d-a36f-90d52e2de837": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d5465768-3985-433d-a36f-90d52e2de837", + "Name": "W18x40", + "EdgeId": 733, + "ExternalEdgeId": 733 + }, + "12da39bf-4637-4864-bb1e-1c42ff40031a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12da39bf-4637-4864-bb1e-1c42ff40031a", + "Name": null + }, + "6278eb75-ee82-4711-82a4-551acd3604fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6278eb75-ee82-4711-82a4-551acd3604fb", + "Name": "W18x40", + "EdgeId": 735, + "ExternalEdgeId": 735 + }, + "5e31d40d-60d4-45ad-ab5c-44be440068b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e31d40d-60d4-45ad-ab5c-44be440068b4", + "Name": null + }, + "2828b295-3d8b-4bce-b93d-b7aeeb0f002c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2828b295-3d8b-4bce-b93d-b7aeeb0f002c", + "Name": "W18x40", + "EdgeId": 736 + }, + "52a5901a-2eb2-4776-9db5-fb22d30cd1ca": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52a5901a-2eb2-4776-9db5-fb22d30cd1ca", + "Name": null + }, + "14c6e7bc-e519-483a-ab5b-b8c7b0dc2a37": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "14c6e7bc-e519-483a-ab5b-b8c7b0dc2a37", + "Name": "W18x40", + "EdgeId": 737 + }, + "511f9f9c-1788-4f75-828d-49f9594082f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "511f9f9c-1788-4f75-828d-49f9594082f3", + "Name": null + }, + "172770b0-c1e4-49b2-989e-c8ab281b1da2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "172770b0-c1e4-49b2-989e-c8ab281b1da2", + "Name": "W18x40", + "EdgeId": 738, + "ExternalEdgeId": 738 + }, + "0e240d5c-4b42-4601-9340-dba9521eeb9f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e240d5c-4b42-4601-9340-dba9521eeb9f", + "Name": null + }, + "ab8905c5-4c44-4b33-8183-3575cb364226": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ab8905c5-4c44-4b33-8183-3575cb364226", + "Name": "W18x40", + "EdgeId": 751, + "ExternalEdgeId": 751 + }, + "7830efee-c59b-42ca-8c46-b0ff10bfdced": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7830efee-c59b-42ca-8c46-b0ff10bfdced", + "Name": null + }, + "e9f186fb-58c3-4a6b-a2f0-c1b4bf2cff82": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e9f186fb-58c3-4a6b-a2f0-c1b4bf2cff82", + "Name": "W18x40", + "EdgeId": 752 + }, + "4443adb2-bb80-406e-ad94-8f6bdab9076b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4443adb2-bb80-406e-ad94-8f6bdab9076b", + "Name": null + }, + "a82d229f-f699-48b7-8578-d42fab0f313f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a82d229f-f699-48b7-8578-d42fab0f313f", + "Name": "W18x40", + "EdgeId": 753 + }, + "9507fcbf-4b43-4b75-b340-217776be17f7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9507fcbf-4b43-4b75-b340-217776be17f7", + "Name": null + }, + "02179fe1-712e-47bd-a17e-4ff602253db1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "02179fe1-712e-47bd-a17e-4ff602253db1", + "Name": "W18x40", + "EdgeId": 761, + "ExternalEdgeId": 761 + }, + "d22a4302-0363-4b52-8886-fca1e1c95dc3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d22a4302-0363-4b52-8886-fca1e1c95dc3", + "Name": null + }, + "d9243ebf-3865-4b35-981f-c29eda40bb7a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d9243ebf-3865-4b35-981f-c29eda40bb7a", + "Name": "W18x40", + "EdgeId": 762, + "ExternalEdgeId": 762 + }, + "2047e28a-ee64-4672-877a-6cca26ba35bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2047e28a-ee64-4672-877a-6cca26ba35bf", + "Name": null + }, + "63a4be15-49ec-4b28-913e-0936b135b944": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "63a4be15-49ec-4b28-913e-0936b135b944", + "Name": "W18x40", + "EdgeId": 763 + }, + "25484848-c8da-48fa-a591-ce74cbfad519": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25484848-c8da-48fa-a591-ce74cbfad519", + "Name": null + }, + "d677110d-bd61-4a67-a0b2-ba16e43a1cc4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d677110d-bd61-4a67-a0b2-ba16e43a1cc4", + "Name": "W18x40", + "EdgeId": 771 + }, + "d030b8a9-e8bf-4669-8ca4-de79a9644c0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d030b8a9-e8bf-4669-8ca4-de79a9644c0a", + "Name": null + }, + "4fae3e42-b0ab-468a-8f0f-220eee32fe62": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4fae3e42-b0ab-468a-8f0f-220eee32fe62", + "Name": "W18x40", + "EdgeId": 772 + }, + "3bd386f8-e4e7-4af0-9074-5364afe58181": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3bd386f8-e4e7-4af0-9074-5364afe58181", + "Name": null + }, + "a2d324d5-d3f2-4f1a-adf1-4544f7ebb76d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a2d324d5-d3f2-4f1a-adf1-4544f7ebb76d", + "Name": "W18x40", + "EdgeId": 773, + "ExternalEdgeId": 773 + }, + "ddd8f4d5-84b4-477d-aab8-a580f63fe88f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 12.2 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ddd8f4d5-84b4-477d-aab8-a580f63fe88f", + "Name": null + }, + "6070f0bc-4975-416a-89cb-1ee11dfb4ff4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6070f0bc-4975-416a-89cb-1ee11dfb4ff4", + "Name": "W18x40", + "EdgeId": 783, + "ExternalEdgeId": 783 + }, + "af8a7abe-5366-4953-9590-4249df93344c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "af8a7abe-5366-4953-9590-4249df93344c", + "Name": null + }, + "08fed6cd-bdee-4114-a596-e023c67e6ca7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "08fed6cd-bdee-4114-a596-e023c67e6ca7", + "Name": "W18x40", + "EdgeId": 784 + }, + "04621c3b-5d98-417e-8c9b-001f150ed81e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04621c3b-5d98-417e-8c9b-001f150ed81e", + "Name": null + }, + "4aecf056-d65e-4b4a-af8c-5db3ac13082d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4aecf056-d65e-4b4a-af8c-5db3ac13082d", + "Name": "W18x40", + "EdgeId": 785 + }, + "562192f6-974a-49db-8985-ff5fdacb7f65": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "562192f6-974a-49db-8985-ff5fdacb7f65", + "Name": null + }, + "cb613018-a485-4790-921d-b536813b985f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "cb613018-a485-4790-921d-b536813b985f", + "Name": "W18x40", + "EdgeId": 791 + }, + "2e9aa2f3-926a-48f5-bb05-11f03eb4953c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e9aa2f3-926a-48f5-bb05-11f03eb4953c", + "Name": null + }, + "d5a2fecd-5102-4110-88b1-9c6b5c17f9b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d5a2fecd-5102-4110-88b1-9c6b5c17f9b9", + "Name": "W18x40", + "EdgeId": 792 + }, + "7e8a56aa-621f-4635-bfad-8d864dd6b724": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e8a56aa-621f-4635-bfad-8d864dd6b724", + "Name": null + }, + "525ca0d5-12ff-426a-b61d-a0cf9782416e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "525ca0d5-12ff-426a-b61d-a0cf9782416e", + "Name": "W18x40", + "EdgeId": 797, + "ExternalEdgeId": 797 + }, + "20d0c086-e029-4225-8892-4e47f629e4d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20d0c086-e029-4225-8892-4e47f629e4d0", + "Name": null + }, + "e408ea7f-f097-41cf-b61f-10dee50f3a17": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e408ea7f-f097-41cf-b61f-10dee50f3a17", + "Name": "W18x40", + "EdgeId": 798 + }, + "2940d88f-755b-4bda-ad10-e6269c4bc883": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2940d88f-755b-4bda-ad10-e6269c4bc883", + "Name": null + }, + "60732040-fcec-4636-a642-c9e7dc85fbb1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "60732040-fcec-4636-a642-c9e7dc85fbb1", + "Name": "W18x40", + "EdgeId": 803 + }, + "d49c71a8-f057-4c78-acd1-cb75e701e09e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d49c71a8-f057-4c78-acd1-cb75e701e09e", + "Name": null + }, + "57191743-eb24-4780-b427-bf4438a33760": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "57191743-eb24-4780-b427-bf4438a33760", + "Name": "W18x40", + "EdgeId": 804 + }, + "5bb53622-1219-4cf1-92cb-566522e7a5ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5bb53622-1219-4cf1-92cb-566522e7a5ce", + "Name": null + }, + "7bd1ab4c-482c-47d4-aedd-6aab66a8618c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7bd1ab4c-482c-47d4-aedd-6aab66a8618c", + "Name": "W18x40", + "EdgeId": 805, + "ExternalEdgeId": 805 + }, + "d43d26e5-df76-41c9-86fa-df0221c56d5f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d43d26e5-df76-41c9-86fa-df0221c56d5f", + "Name": null + }, + "e21df52a-aab0-4e93-96aa-63634c3ed924": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e21df52a-aab0-4e93-96aa-63634c3ed924", + "Name": "W18x40", + "EdgeId": 813 + }, + "7bd4f717-f725-4eb5-87a8-99d0470ffb73": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7bd4f717-f725-4eb5-87a8-99d0470ffb73", + "Name": null + }, + "795c0d71-630e-413b-ade7-fa1fdc2d6c48": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "795c0d71-630e-413b-ade7-fa1fdc2d6c48", + "Name": "W18x40", + "EdgeId": 814 + }, + "2266fcdf-ce58-4a4f-927a-050231eb7286": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2266fcdf-ce58-4a4f-927a-050231eb7286", + "Name": null + }, + "0650d3ac-fdc3-4935-8432-c01dc436ca09": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0650d3ac-fdc3-4935-8432-c01dc436ca09", + "Name": "W18x40", + "EdgeId": 819 + }, + "8fc1ab94-0d45-4a7c-aba9-27260378ad4a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8fc1ab94-0d45-4a7c-aba9-27260378ad4a", + "Name": null + }, + "7d025b16-4fdb-464a-89c5-bfad331a46b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7d025b16-4fdb-464a-89c5-bfad331a46b8", + "Name": "W18x40", + "EdgeId": 820 + }, + "39d90870-f39a-415f-9c8b-550e7fcd5332": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "39d90870-f39a-415f-9c8b-550e7fcd5332", + "Name": null + }, + "b8bd6171-1d3b-4eef-9c9a-dcd566d19782": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b8bd6171-1d3b-4eef-9c9a-dcd566d19782", + "Name": "W18x40", + "EdgeId": 825, + "ExternalEdgeId": 825 + }, + "6c1240fc-8715-47e5-ae08-5d969dcc943f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c1240fc-8715-47e5-ae08-5d969dcc943f", + "Name": null + }, + "0cfe8387-77e3-4bcb-93bb-8d3047e2ee56": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0cfe8387-77e3-4bcb-93bb-8d3047e2ee56", + "Name": "W18x40", + "EdgeId": 826 + }, + "2e44b8e7-bb85-460d-ba88-55c9db3acef9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e44b8e7-bb85-460d-ba88-55c9db3acef9", + "Name": null + }, + "66b8949a-79b7-48ff-ac04-e172e38b25c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "66b8949a-79b7-48ff-ac04-e172e38b25c4", + "Name": "W18x40", + "EdgeId": 831 + }, + "b2ee679a-0ac9-4bb3-9725-fa2b899a955d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b2ee679a-0ac9-4bb3-9725-fa2b899a955d", + "Name": null + }, + "77e1e159-d80f-4cfe-97a5-658569553785": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "77e1e159-d80f-4cfe-97a5-658569553785", + "Name": "W18x40", + "EdgeId": 832 + }, + "6623faa6-9f86-4b0d-b6f9-36062756577a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6623faa6-9f86-4b0d-b6f9-36062756577a", + "Name": null + }, + "353b4408-5054-41f6-9fbe-ce9213a963ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "353b4408-5054-41f6-9fbe-ce9213a963ec", + "Name": "W18x40", + "EdgeId": 833, + "ExternalEdgeId": 833 + }, + "d9122a01-28f8-4ca1-9698-537b71aaf575": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9122a01-28f8-4ca1-9698-537b71aaf575", + "Name": null + }, + "a3ded4ae-5988-4e14-9091-3984a5765d91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a3ded4ae-5988-4e14-9091-3984a5765d91", + "Name": "W18x40", + "EdgeId": 841 + }, + "72e3fe47-cc82-400a-ba3a-03d1b52d04b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72e3fe47-cc82-400a-ba3a-03d1b52d04b5", + "Name": null + }, + "ddb22953-fc40-4db0-84bf-87094f33a482": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ddb22953-fc40-4db0-84bf-87094f33a482", + "Name": "W18x40", + "EdgeId": 842 + }, + "1345f66e-d8a4-4e05-864b-e632845e9c2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1345f66e-d8a4-4e05-864b-e632845e9c2b", + "Name": null + }, + "1e292f0f-af50-4b4a-b4f0-ff35d23979a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1e292f0f-af50-4b4a-b4f0-ff35d23979a3", + "Name": "W18x40", + "EdgeId": 847 + }, + "07a4d9d4-6206-4407-a1ee-4ab956141201": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "07a4d9d4-6206-4407-a1ee-4ab956141201", + "Name": null + }, + "46aa6fa9-1a45-425d-bf58-5e2b5c944636": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "46aa6fa9-1a45-425d-bf58-5e2b5c944636", + "Name": "W18x40", + "EdgeId": 848 + }, + "80f1200e-0057-49e6-b25e-fb25e537e433": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80f1200e-0057-49e6-b25e-fb25e537e433", + "Name": null + }, + "c40d8899-5076-4b17-a890-5df23beb6e57": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c40d8899-5076-4b17-a890-5df23beb6e57", + "Name": "W18x40", + "EdgeId": 853, + "ExternalEdgeId": 853 + }, + "69ffbdcc-9c53-4ee8-a442-2fcc55b449af": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "69ffbdcc-9c53-4ee8-a442-2fcc55b449af", + "Name": null + }, + "da87b32a-cfea-46aa-8452-6ad7c83ea8f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "da87b32a-cfea-46aa-8452-6ad7c83ea8f3", + "Name": "W18x40", + "EdgeId": 854 + }, + "02443929-50ae-4bf0-8a5f-6217a21fa38b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02443929-50ae-4bf0-8a5f-6217a21fa38b", + "Name": null + }, + "53ce087d-b3d2-4865-b37b-0844e03d3e05": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "53ce087d-b3d2-4865-b37b-0844e03d3e05", + "Name": "W18x40", + "EdgeId": 859 + }, + "1ab6c488-1d06-4bba-9977-8bd646178cb0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ab6c488-1d06-4bba-9977-8bd646178cb0", + "Name": null + }, + "dedb3cfa-481a-4010-b82a-e1a7a93bfd8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "dedb3cfa-481a-4010-b82a-e1a7a93bfd8e", + "Name": "W18x40", + "EdgeId": 860 + }, + "ee727740-89eb-4290-b113-94dee3d030eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee727740-89eb-4290-b113-94dee3d030eb", + "Name": null + }, + "92442fb7-e836-4d9d-9e72-f022b7158515": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "92442fb7-e836-4d9d-9e72-f022b7158515", + "Name": "W18x40", + "EdgeId": 861, + "ExternalEdgeId": 861 + }, + "4b24b6f7-a6aa-4f9b-906d-5d0b6c389755": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 12.2 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4b24b6f7-a6aa-4f9b-906d-5d0b6c389755", + "Name": null + }, + "6de5caf2-d34f-4877-9014-4393b49f8e3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6de5caf2-d34f-4877-9014-4393b49f8e3a", + "Name": "W18x40", + "EdgeId": 871, + "ExternalEdgeId": 871 + }, + "1d3ce3a1-b4c2-4d21-acb6-f3a03d31b55b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1d3ce3a1-b4c2-4d21-acb6-f3a03d31b55b", + "Name": null + }, + "6ccb20e7-1f65-4483-8655-1ed1e178151d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6ccb20e7-1f65-4483-8655-1ed1e178151d", + "Name": "W18x40", + "EdgeId": 872 + }, + "6a3b4aa0-6f7f-4b03-b933-9611f334af51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a3b4aa0-6f7f-4b03-b933-9611f334af51", + "Name": null + }, + "b7b67984-e0c0-49db-a5d3-7e8c822b4810": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b7b67984-e0c0-49db-a5d3-7e8c822b4810", + "Name": "W18x40", + "EdgeId": 873 + }, + "0328129d-f77b-417e-b165-e9445e54280c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0328129d-f77b-417e-b165-e9445e54280c", + "Name": null + }, + "0cea2cc5-01f0-486b-aebe-cfebd88754db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0cea2cc5-01f0-486b-aebe-cfebd88754db", + "Name": "W18x40", + "EdgeId": 879 + }, + "acbcc01a-2cfc-4e40-9c6f-3e968ef5818d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "acbcc01a-2cfc-4e40-9c6f-3e968ef5818d", + "Name": null + }, + "4ed6dd27-071f-419c-945e-0a10b8505d2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4ed6dd27-071f-419c-945e-0a10b8505d2a", + "Name": "W18x40", + "EdgeId": 880 + }, + "0b003873-b0e1-4229-8b54-ee009ac85354": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b003873-b0e1-4229-8b54-ee009ac85354", + "Name": null + }, + "845a29d2-6b72-48bd-9100-19f761f009af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "845a29d2-6b72-48bd-9100-19f761f009af", + "Name": "W18x40", + "EdgeId": 885 + }, + "de308678-58ed-48d3-8fbc-fc0ccba87c0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "de308678-58ed-48d3-8fbc-fc0ccba87c0b", + "Name": null + }, + "b61e2aa8-2ae0-4ab6-b217-8c09d8147b97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b61e2aa8-2ae0-4ab6-b217-8c09d8147b97", + "Name": "W18x40", + "EdgeId": 886 + }, + "95c91f2f-6311-461a-b4ea-9af2f612c4e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95c91f2f-6311-461a-b4ea-9af2f612c4e4", + "Name": null + }, + "4ed5e031-168d-44d7-9508-5b96d3e00952": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4ed5e031-168d-44d7-9508-5b96d3e00952", + "Name": "W18x40", + "EdgeId": 891, + "ExternalEdgeId": 891 + }, + "a353f84c-8ac9-492a-993f-f903b6e8763f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a353f84c-8ac9-492a-993f-f903b6e8763f", + "Name": null + }, + "202f4412-041e-4af1-8f53-39f5ca607324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "202f4412-041e-4af1-8f53-39f5ca607324", + "Name": "W18x40", + "EdgeId": 892 + }, + "8a48b564-ac10-4860-8d2c-53697554f6fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8a48b564-ac10-4860-8d2c-53697554f6fa", + "Name": null + }, + "b022f0ef-e871-4e2d-9f82-e011e3f198aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b022f0ef-e871-4e2d-9f82-e011e3f198aa", + "Name": "W18x40", + "EdgeId": 897 + }, + "9c26bef7-4919-4401-a94a-a802f75c7b5f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c26bef7-4919-4401-a94a-a802f75c7b5f", + "Name": null + }, + "434f96fa-11fe-4fd6-873d-dc3cc619039c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "434f96fa-11fe-4fd6-873d-dc3cc619039c", + "Name": "W18x40", + "EdgeId": 898 + }, + "014b9d7d-b169-4ef4-951c-dbc1fe300a4f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "014b9d7d-b169-4ef4-951c-dbc1fe300a4f", + "Name": null + }, + "97840780-9e87-43c7-a95c-9e18a2f32a16": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "97840780-9e87-43c7-a95c-9e18a2f32a16", + "Name": "W18x40", + "EdgeId": 899, + "ExternalEdgeId": 899 + }, + "d5b6ea80-71cf-4ff8-ad7b-fee3d363ad99": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d5b6ea80-71cf-4ff8-ad7b-fee3d363ad99", + "Name": null + }, + "7f37d961-7941-4f30-a73c-7e56e111305d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7f37d961-7941-4f30-a73c-7e56e111305d", + "Name": "W18x40", + "EdgeId": 907 + }, + "238bec02-62d5-4b95-924a-1ae428241d45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "238bec02-62d5-4b95-924a-1ae428241d45", + "Name": null + }, + "87f4d676-8b6d-4962-834d-ac53f051abab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "87f4d676-8b6d-4962-834d-ac53f051abab", + "Name": "W18x40", + "EdgeId": 908 + }, + "b0546e5a-e494-4ff6-a336-b24d9f9a94c7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0546e5a-e494-4ff6-a336-b24d9f9a94c7", + "Name": null + }, + "b85323f7-1b7e-47c0-afdc-2fa219a807b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b85323f7-1b7e-47c0-afdc-2fa219a807b4", + "Name": "W18x40", + "EdgeId": 913 + }, + "3367a3b0-c696-4e0c-a5d3-9f5403edb042": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3367a3b0-c696-4e0c-a5d3-9f5403edb042", + "Name": null + }, + "be7ad5a2-0596-49e5-9dd2-03b5f3480b1e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "be7ad5a2-0596-49e5-9dd2-03b5f3480b1e", + "Name": "W18x40", + "EdgeId": 914 + }, + "04cc2833-d566-4f56-b028-b15d614dbbd7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04cc2833-d566-4f56-b028-b15d614dbbd7", + "Name": null + }, + "72f08611-40a3-44ff-bd59-ba61a6995784": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "72f08611-40a3-44ff-bd59-ba61a6995784", + "Name": "W18x40", + "EdgeId": 919 + }, + "6007d404-e4e2-4146-a7b0-54aed9170f57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6007d404-e4e2-4146-a7b0-54aed9170f57", + "Name": null + }, + "af146aef-0199-4145-98aa-d4bfc4c21b40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "af146aef-0199-4145-98aa-d4bfc4c21b40", + "Name": "W18x40", + "EdgeId": 920 + }, + "f2d204dd-e4f0-4833-9068-86b553633cbf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2d204dd-e4f0-4833-9068-86b553633cbf", + "Name": null + }, + "8485bda3-641d-41a5-a8ec-2284d3f2e0e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8485bda3-641d-41a5-a8ec-2284d3f2e0e0", + "Name": "W18x40", + "EdgeId": 925, + "ExternalEdgeId": 925 + }, + "4486f5c8-a4ce-4761-93e7-f5ef6fc1f642": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4486f5c8-a4ce-4761-93e7-f5ef6fc1f642", + "Name": null + }, + "326e18c0-0c54-4b0e-9d9a-645a15db3c9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "326e18c0-0c54-4b0e-9d9a-645a15db3c9a", + "Name": "W18x40", + "EdgeId": 926 + }, + "1aef58bf-2c31-4ab8-9a5a-5f4feac4c023": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1aef58bf-2c31-4ab8-9a5a-5f4feac4c023", + "Name": null + }, + "e0887725-f83d-4055-943b-67a28ffed050": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e0887725-f83d-4055-943b-67a28ffed050", + "Name": "W18x40", + "EdgeId": 931, + "ExternalEdgeId": 931 + }, + "224bbb6f-07da-49ec-93c3-e72644363d67": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "224bbb6f-07da-49ec-93c3-e72644363d67", + "Name": null + }, + "56bdf867-fa4d-4d37-b7bd-896a7df4849c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "56bdf867-fa4d-4d37-b7bd-896a7df4849c", + "Name": "W18x40", + "EdgeId": 932 + }, + "02e5a1d4-05cf-4be3-b2e4-4eeb60a784bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02e5a1d4-05cf-4be3-b2e4-4eeb60a784bf", + "Name": null + }, + "5257ce25-325d-49b6-954d-172df4eebc17": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5257ce25-325d-49b6-954d-172df4eebc17", + "Name": "W18x40", + "EdgeId": 933 + }, + "47aead43-688c-49d1-abf9-0b0d840457df": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47aead43-688c-49d1-abf9-0b0d840457df", + "Name": null + }, + "a597527a-d8bc-4ed1-a56e-6c38a1e55aaf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a597527a-d8bc-4ed1-a56e-6c38a1e55aaf", + "Name": "W18x40", + "EdgeId": 934, + "ExternalEdgeId": 934 + }, + "b36a4080-9c01-4049-832a-84dc2005b912": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b36a4080-9c01-4049-832a-84dc2005b912", + "Name": null + }, + "3f396256-cb3f-4b89-8e36-f3d385163b72": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3f396256-cb3f-4b89-8e36-f3d385163b72", + "Name": "W18x40", + "EdgeId": 945 + }, + "e270a422-370f-48d9-8cf7-f2c1b518a851": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e270a422-370f-48d9-8cf7-f2c1b518a851", + "Name": null + }, + "cade78b7-d216-48df-b73b-3493856c9176": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "cade78b7-d216-48df-b73b-3493856c9176", + "Name": "W18x40", + "EdgeId": 946 + }, + "86907db9-a070-4ee0-972e-c7a5f5673fde": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "86907db9-a070-4ee0-972e-c7a5f5673fde", + "Name": null + }, + "9e25c8e3-ed7e-46af-85df-5c640338891a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9e25c8e3-ed7e-46af-85df-5c640338891a", + "Name": "W18x40", + "EdgeId": 951 + }, + "5b872b24-8232-4086-a6ac-a79a39b4abcb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b872b24-8232-4086-a6ac-a79a39b4abcb", + "Name": null + }, + "bb6d153d-c853-4e86-91c3-23b3e5059381": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bb6d153d-c853-4e86-91c3-23b3e5059381", + "Name": "W18x40", + "EdgeId": 952 + }, + "ca1933d4-2a1e-4783-81ed-574d4688a8b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ca1933d4-2a1e-4783-81ed-574d4688a8b6", + "Name": null + }, + "21897307-b491-478c-b951-48f35e9f4fae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "21897307-b491-478c-b951-48f35e9f4fae", + "Name": "W18x40", + "EdgeId": 957 + }, + "a69ad1ab-10e7-4f06-ac0f-809526d2fb82": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a69ad1ab-10e7-4f06-ac0f-809526d2fb82", + "Name": null + }, + "5cc9406f-3ea5-4a89-a3b3-41d089c4dcde": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5cc9406f-3ea5-4a89-a3b3-41d089c4dcde", + "Name": "W18x40", + "EdgeId": 958 + }, + "aad658cd-6d93-4496-9005-0a5add074f90": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aad658cd-6d93-4496-9005-0a5add074f90", + "Name": null + }, + "d92bd33c-4cd5-4f06-a895-d234dcec5d6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d92bd33c-4cd5-4f06-a895-d234dcec5d6b", + "Name": "W18x40", + "EdgeId": 963, + "ExternalEdgeId": 963 + }, + "19a31dcd-0000-461d-b2d4-2491119b7202": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "19a31dcd-0000-461d-b2d4-2491119b7202", + "Name": null + }, + "19788b97-b34b-45c0-93e2-009dbf63c25d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "19788b97-b34b-45c0-93e2-009dbf63c25d", + "Name": "W18x40", + "EdgeId": 964 + }, + "4fb6e98b-2334-4b35-bbf2-117c9d475f3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4fb6e98b-2334-4b35-bbf2-117c9d475f3f", + "Name": null + }, + "0064a6ca-833c-4a64-93ff-064c1d856491": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0064a6ca-833c-4a64-93ff-064c1d856491", + "Name": "W18x40", + "EdgeId": 969 + }, + "0c437276-905d-4145-a257-6ff53010845b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c437276-905d-4145-a257-6ff53010845b", + "Name": null + }, + "97e67332-44ff-4c68-9e17-4e8b5cb76537": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "97e67332-44ff-4c68-9e17-4e8b5cb76537", + "Name": "W18x40", + "EdgeId": 970 + }, + "2cf860e0-7abd-4125-9f9a-b3609f23259f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2cf860e0-7abd-4125-9f9a-b3609f23259f", + "Name": null + }, + "51a6e81f-9be7-44f4-84d4-fb10f4721dbe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "51a6e81f-9be7-44f4-84d4-fb10f4721dbe", + "Name": "W18x40", + "EdgeId": 971, + "ExternalEdgeId": 971 + }, + "33f4d2a1-3fbe-43db-9764-4d4d05461b1e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33f4d2a1-3fbe-43db-9764-4d4d05461b1e", + "Name": null + }, + "5d33760f-aed3-4335-a39f-614d74db1c8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5d33760f-aed3-4335-a39f-614d74db1c8e", + "Name": "W18x40", + "EdgeId": 979 + }, + "09ddf95b-5b1f-4689-8d6c-e9a745d216fe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09ddf95b-5b1f-4689-8d6c-e9a745d216fe", + "Name": null + }, + "841e1873-a5ce-4e5f-a4d3-a22fa20e0f77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "841e1873-a5ce-4e5f-a4d3-a22fa20e0f77", + "Name": "W18x40", + "EdgeId": 980 + }, + "d8cca4fd-3e92-42ff-9cbb-975de2d16cce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d8cca4fd-3e92-42ff-9cbb-975de2d16cce", + "Name": null + }, + "b30a3068-4e4b-4f1a-aac9-bbb0e0e2f8aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b30a3068-4e4b-4f1a-aac9-bbb0e0e2f8aa", + "Name": "W18x40", + "EdgeId": 985 + }, + "ec8a7ebb-ab99-4ecc-a245-780b55747dff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec8a7ebb-ab99-4ecc-a245-780b55747dff", + "Name": null + }, + "73887299-2003-476c-87aa-d8c5c9bf9c64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "73887299-2003-476c-87aa-d8c5c9bf9c64", + "Name": "W18x40", + "EdgeId": 986 + }, + "12864b4c-7915-4a5f-a6df-6e4322701cbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12864b4c-7915-4a5f-a6df-6e4322701cbd", + "Name": null + }, + "57a5c10e-df9b-4241-87a4-63a9ceae33ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "57a5c10e-df9b-4241-87a4-63a9ceae33ad", + "Name": "W18x40", + "EdgeId": 991 + }, + "bedf52ae-f9c0-47bc-8ccd-5e038fd511f6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bedf52ae-f9c0-47bc-8ccd-5e038fd511f6", + "Name": null + }, + "f06bcf45-d1aa-4c58-b44b-74d4d1b64815": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f06bcf45-d1aa-4c58-b44b-74d4d1b64815", + "Name": "W18x40", + "EdgeId": 992 + }, + "20ca2a12-e319-4251-ab17-46f027198811": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20ca2a12-e319-4251-ab17-46f027198811", + "Name": null + }, + "f7053a12-a73d-4c6a-a042-d1a79b695591": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f7053a12-a73d-4c6a-a042-d1a79b695591", + "Name": "W18x40", + "EdgeId": 997, + "ExternalEdgeId": 997 + }, + "63838ec7-5e20-428b-9400-e687d8e3e5d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63838ec7-5e20-428b-9400-e687d8e3e5d0", + "Name": null + }, + "25414101-4368-4632-98b5-f81152fd630e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "25414101-4368-4632-98b5-f81152fd630e", + "Name": "W18x40", + "EdgeId": 998 + }, + "122f88db-5dfe-4749-9652-248f605ff7bd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "122f88db-5dfe-4749-9652-248f605ff7bd", + "Name": null + }, + "90d23a15-350f-4f3a-b35c-c63aae5f1a78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "90d23a15-350f-4f3a-b35c-c63aae5f1a78", + "Name": "W18x40", + "EdgeId": 1003 + }, + "f505cdde-bc96-4bdb-b288-b361227c3db0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f505cdde-bc96-4bdb-b288-b361227c3db0", + "Name": null + }, + "0653fa17-dfaa-48c8-8238-00d9788555a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0653fa17-dfaa-48c8-8238-00d9788555a2", + "Name": "W18x40", + "EdgeId": 1004 + }, + "0e094db9-767a-4414-ba25-ab1b9e786b43": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e094db9-767a-4414-ba25-ab1b9e786b43", + "Name": null + }, + "b8a3d14d-3e3a-481e-aa41-698d92bfaa8a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b8a3d14d-3e3a-481e-aa41-698d92bfaa8a", + "Name": "W18x40", + "EdgeId": 1005, + "ExternalEdgeId": 1005 + }, + "2bdaff6f-830d-48d6-8a4d-42cdd73c0399": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2bdaff6f-830d-48d6-8a4d-42cdd73c0399", + "Name": null + }, + "b030f520-90b0-40a5-9f74-7fe0509ebbe4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b030f520-90b0-40a5-9f74-7fe0509ebbe4", + "Name": "W18x40", + "EdgeId": 1013 + }, + "8c10d6c6-284e-46cb-8e8e-b786e9e22b7d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8c10d6c6-284e-46cb-8e8e-b786e9e22b7d", + "Name": null + }, + "3299945c-a95d-421b-b727-272c5f30a116": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3299945c-a95d-421b-b727-272c5f30a116", + "Name": "W18x40", + "EdgeId": 1014 + }, + "b431ab58-6ead-439d-a469-cc5c6b130be6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b431ab58-6ead-439d-a469-cc5c6b130be6", + "Name": null + }, + "b3c1e6b6-c4a4-4ed0-a261-c5746181dccd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b3c1e6b6-c4a4-4ed0-a261-c5746181dccd", + "Name": "W18x40", + "EdgeId": 1019 + }, + "45101495-88be-44a7-9fbe-94e0136170e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "45101495-88be-44a7-9fbe-94e0136170e3", + "Name": null + }, + "b53e6cef-503e-4360-9fc0-cb10010a6768": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b53e6cef-503e-4360-9fc0-cb10010a6768", + "Name": "W18x40", + "EdgeId": 1020 + }, + "356238d6-5168-4196-9ba3-2c1e71b4e0e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "356238d6-5168-4196-9ba3-2c1e71b4e0e9", + "Name": null + }, + "13183004-63cc-4007-af24-e232118246b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "13183004-63cc-4007-af24-e232118246b5", + "Name": "W18x40", + "EdgeId": 1025 + }, + "7ed0fbee-305e-4949-aa54-c901c3b4646b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ed0fbee-305e-4949-aa54-c901c3b4646b", + "Name": null + }, + "f211b2d4-05ea-4999-86f0-8e52af6b3424": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f211b2d4-05ea-4999-86f0-8e52af6b3424", + "Name": "W18x40", + "EdgeId": 1026 + }, + "ada75c3f-6841-443e-9b1c-ee37bcf487ea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ada75c3f-6841-443e-9b1c-ee37bcf487ea", + "Name": null + }, + "0ca744f2-c1d8-421d-b1f9-6ed37218fc7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0ca744f2-c1d8-421d-b1f9-6ed37218fc7f", + "Name": "W18x40", + "EdgeId": 1031, + "ExternalEdgeId": 1031 + }, + "e205c057-0bf7-4fe6-90fd-796ad945b239": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e205c057-0bf7-4fe6-90fd-796ad945b239", + "Name": null + }, + "ba3a81a6-17ad-4f21-b74e-5efa1af8c89a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ba3a81a6-17ad-4f21-b74e-5efa1af8c89a", + "Name": "W18x40", + "EdgeId": 1032 + }, + "9385c7de-30af-4209-baa0-6275e49b4014": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9385c7de-30af-4209-baa0-6275e49b4014", + "Name": null + }, + "8b60a443-dd33-457b-9f4b-af6e912995e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8b60a443-dd33-457b-9f4b-af6e912995e2", + "Name": "W18x40", + "EdgeId": 1037 + }, + "792048f0-8bc3-4371-b0e6-686075799980": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "792048f0-8bc3-4371-b0e6-686075799980", + "Name": null + }, + "07ab2d04-b671-4557-9787-0be69c71fdff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "07ab2d04-b671-4557-9787-0be69c71fdff", + "Name": "W18x40", + "EdgeId": 1038 + }, + "737aeea6-bc4f-4365-aed6-f0bc0da758b2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "737aeea6-bc4f-4365-aed6-f0bc0da758b2", + "Name": null + }, + "4cae0f49-a7b4-4233-a84d-2a65aa402ab2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4cae0f49-a7b4-4233-a84d-2a65aa402ab2", + "Name": "W18x40", + "EdgeId": 1039, + "ExternalEdgeId": 1039 + }, + "9c526e10-ee01-4583-b79a-041158e88eb2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c526e10-ee01-4583-b79a-041158e88eb2", + "Name": null + }, + "842db928-cb4e-4841-ba4e-e54a53e0c300": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "842db928-cb4e-4841-ba4e-e54a53e0c300", + "Name": "W18x40", + "EdgeId": 1047 + }, + "f20d1831-8a72-4e0a-94cc-39ea0a44ddfb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f20d1831-8a72-4e0a-94cc-39ea0a44ddfb", + "Name": null + }, + "7feba37c-ef3a-4fd4-b23c-7fd8b03a3d70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7feba37c-ef3a-4fd4-b23c-7fd8b03a3d70", + "Name": "W18x40", + "EdgeId": 1048 + }, + "4ef0579c-1165-4b8c-b54c-24a7a5f9b210": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ef0579c-1165-4b8c-b54c-24a7a5f9b210", + "Name": null + }, + "c259c496-7702-44f8-8f86-5b622316afe3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c259c496-7702-44f8-8f86-5b622316afe3", + "Name": "W18x40", + "EdgeId": 1053 + }, + "1e832f87-1838-4842-9287-546747bcb1d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1e832f87-1838-4842-9287-546747bcb1d0", + "Name": null + }, + "ad05947a-43fb-4b48-9e9a-4b1d6e67df6e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ad05947a-43fb-4b48-9e9a-4b1d6e67df6e", + "Name": "W18x40", + "EdgeId": 1054 + }, + "e2b6d25b-6e74-47b4-b902-b4edaf4d0a9c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e2b6d25b-6e74-47b4-b902-b4edaf4d0a9c", + "Name": null + }, + "fac774d4-8062-41ae-b582-c8f95063a717": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "fac774d4-8062-41ae-b582-c8f95063a717", + "Name": "W18x40", + "EdgeId": 1059 + }, + "99729961-09a4-4eed-8de8-cc8f33a2ea65": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "99729961-09a4-4eed-8de8-cc8f33a2ea65", + "Name": null + }, + "6ac34513-5421-44fc-b586-2a8940408c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6ac34513-5421-44fc-b586-2a8940408c70", + "Name": "W18x40", + "EdgeId": 1060 + }, + "1c0ff0bf-a658-4707-bf4e-257a8677bcd1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c0ff0bf-a658-4707-bf4e-257a8677bcd1", + "Name": null + }, + "6fe44760-40a1-4ee4-a425-ad47a2c4977a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6fe44760-40a1-4ee4-a425-ad47a2c4977a", + "Name": "W18x40", + "EdgeId": 1065, + "ExternalEdgeId": 1065 + }, + "88707677-feaa-4195-aaf2-1459810c56d2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "88707677-feaa-4195-aaf2-1459810c56d2", + "Name": null + }, + "4581c9a3-4ad8-4632-b1c1-e547d19623c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4581c9a3-4ad8-4632-b1c1-e547d19623c7", + "Name": "W18x40", + "EdgeId": 1066 + }, + "334be1ae-722b-4936-8647-3a315193571b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "334be1ae-722b-4936-8647-3a315193571b", + "Name": null + }, + "c2b14c7e-2cda-44d5-8096-0ab4516bbad2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c2b14c7e-2cda-44d5-8096-0ab4516bbad2", + "Name": "W18x40", + "EdgeId": 1071 + }, + "ecf7ec55-4fb0-4a40-a222-1197b0e9ab97": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ecf7ec55-4fb0-4a40-a222-1197b0e9ab97", + "Name": null + }, + "68c6e619-9420-41bc-abfb-5332f7ff9176": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "68c6e619-9420-41bc-abfb-5332f7ff9176", + "Name": "W18x40", + "EdgeId": 1072 + }, + "122ec086-fc79-4c98-94bd-5e3928d4e6ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "122ec086-fc79-4c98-94bd-5e3928d4e6ff", + "Name": null + }, + "7e62bb88-aba9-42a3-b3f7-c57950b3f539": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7e62bb88-aba9-42a3-b3f7-c57950b3f539", + "Name": "W18x40", + "EdgeId": 1073, + "ExternalEdgeId": 1073 + }, + "69121062-d5c5-46b5-93fc-3a894c17da79": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "69121062-d5c5-46b5-93fc-3a894c17da79", + "Name": null + }, + "069e53f9-7101-47df-9ac0-7aba65d55112": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "069e53f9-7101-47df-9ac0-7aba65d55112", + "Name": "W18x40", + "EdgeId": 1081 + }, + "03cca63e-8eb4-43f0-ab09-4d0f0066eaeb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "03cca63e-8eb4-43f0-ab09-4d0f0066eaeb", + "Name": null + }, + "0146905f-d047-451c-a766-7da7adb8a634": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0146905f-d047-451c-a766-7da7adb8a634", + "Name": "W18x40", + "EdgeId": 1082 + }, + "26610b95-a6c1-43b9-b1b9-4e069a3662d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "26610b95-a6c1-43b9-b1b9-4e069a3662d9", + "Name": null + }, + "9c1ec1d1-3815-4d65-8520-acec9321895c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9c1ec1d1-3815-4d65-8520-acec9321895c", + "Name": "W18x40", + "EdgeId": 1087 + }, + "5e5c948f-8d93-4025-9bc3-d2e3e1f42df9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e5c948f-8d93-4025-9bc3-d2e3e1f42df9", + "Name": null + }, + "c165d5f3-38ba-4beb-ac9c-e7218d9ae4a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c165d5f3-38ba-4beb-ac9c-e7218d9ae4a5", + "Name": "W18x40", + "EdgeId": 1088 + }, + "e827e482-650d-4b1f-8599-1ab31e092d6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e827e482-650d-4b1f-8599-1ab31e092d6c", + "Name": null + }, + "1d9cf1d2-c33b-42f6-99bf-97e67b980f87": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1d9cf1d2-c33b-42f6-99bf-97e67b980f87", + "Name": "W18x40", + "EdgeId": 1093 + }, + "63e6b456-592e-4a89-bd27-a2d0a9fd7754": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63e6b456-592e-4a89-bd27-a2d0a9fd7754", + "Name": null + }, + "0ae2f756-987c-44a8-b108-5f1fb90b7ec4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0ae2f756-987c-44a8-b108-5f1fb90b7ec4", + "Name": "W18x40", + "EdgeId": 1094 + }, + "5e98b592-3177-4431-bd26-ce3eaef766c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e98b592-3177-4431-bd26-ce3eaef766c1", + "Name": null + }, + "2c488f87-15c2-4601-a52e-313f85d3b074": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2c488f87-15c2-4601-a52e-313f85d3b074", + "Name": "W18x40", + "EdgeId": 1099, + "ExternalEdgeId": 1099 + }, + "686cf60d-a032-4763-9880-e161132bc47f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "686cf60d-a032-4763-9880-e161132bc47f", + "Name": null + }, + "ba8620a3-8f7d-4eed-a751-034fe965a15d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ba8620a3-8f7d-4eed-a751-034fe965a15d", + "Name": "W18x40", + "EdgeId": 1100 + }, + "e2f50129-1b6b-4820-89a6-1fea563e9190": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e2f50129-1b6b-4820-89a6-1fea563e9190", + "Name": null + }, + "c4504696-bf38-4e1d-8052-7a36144a107b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c4504696-bf38-4e1d-8052-7a36144a107b", + "Name": "W18x40", + "EdgeId": 1105 + }, + "c0975bdd-0fa5-4f9a-9d01-a639c21d71e1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0975bdd-0fa5-4f9a-9d01-a639c21d71e1", + "Name": null + }, + "f04bd75e-2a0e-4d3d-ae8e-4916576b0c32": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f04bd75e-2a0e-4d3d-ae8e-4916576b0c32", + "Name": "W18x40", + "EdgeId": 1106, + "ExternalEdgeId": 1106 + }, + "68432f5b-933a-417f-bc7d-8ede14e900b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "68432f5b-933a-417f-bc7d-8ede14e900b3", + "Name": null + }, + "1ed05372-58db-4b76-8e17-b198ba1a47f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1ed05372-58db-4b76-8e17-b198ba1a47f8", + "Name": "W18x40", + "EdgeId": 1107, + "ExternalEdgeId": 1107 + }, + "734caf1a-caed-49be-a580-985d2b31de86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "734caf1a-caed-49be-a580-985d2b31de86", + "Name": null + }, + "28ee7ea3-4d7b-4732-808c-aee4d80f4d29": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "28ee7ea3-4d7b-4732-808c-aee4d80f4d29", + "Name": "W18x40", + "EdgeId": 1115 + }, + "890ca6ff-89d9-46e3-b80e-135f22f863de": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "890ca6ff-89d9-46e3-b80e-135f22f863de", + "Name": null + }, + "2617c055-0f7c-496f-93b0-c56282d8dc89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2617c055-0f7c-496f-93b0-c56282d8dc89", + "Name": "W18x40", + "EdgeId": 1116, + "ExternalEdgeId": 1116 + }, + "0d7a00d2-fc67-4b0c-a444-f1cb107c93d1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0d7a00d2-fc67-4b0c-a444-f1cb107c93d1", + "Name": null + }, + "a04426ef-3811-4523-bb52-4fdc05146523": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a04426ef-3811-4523-bb52-4fdc05146523", + "Name": "W18x40", + "EdgeId": 1121 + }, + "4730ad2e-5e56-45a8-b370-3409a00c60e2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4730ad2e-5e56-45a8-b370-3409a00c60e2", + "Name": null + }, + "9ed94cac-a200-4fe9-a48d-8cda6f79d8b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9ed94cac-a200-4fe9-a48d-8cda6f79d8b9", + "Name": "W18x40", + "EdgeId": 1122, + "ExternalEdgeId": 1122 + }, + "33802575-64c8-4662-b003-e57a72c61d83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33802575-64c8-4662-b003-e57a72c61d83", + "Name": null + }, + "2ab1d6ef-a307-49aa-bb63-8ee84d8d0a20": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2ab1d6ef-a307-49aa-bb63-8ee84d8d0a20", + "Name": "W18x40", + "EdgeId": 1127 + }, + "357366fb-303b-4a27-954d-4b57371fa7ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "357366fb-303b-4a27-954d-4b57371fa7ab", + "Name": null + }, + "d32b8c0d-780f-47bf-a48b-175320edbcd4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d32b8c0d-780f-47bf-a48b-175320edbcd4", + "Name": "W18x40", + "EdgeId": 1128, + "ExternalEdgeId": 1128 + }, + "9ab272b5-8bd6-4999-a586-9cf9ca59b05b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ab272b5-8bd6-4999-a586-9cf9ca59b05b", + "Name": null + }, + "292516de-95d8-44b1-a523-02ae4900c662": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "292516de-95d8-44b1-a523-02ae4900c662", + "Name": "W18x40", + "EdgeId": 1133, + "ExternalEdgeId": 1133 + }, + "653c69cd-6178-457f-b9ef-8dae21dfeacd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "653c69cd-6178-457f-b9ef-8dae21dfeacd", + "Name": null + }, + "20991959-31f3-4543-a74e-6b2c1faae1b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "20991959-31f3-4543-a74e-6b2c1faae1b5", + "Name": "W18x40", + "EdgeId": 1134, + "ExternalEdgeId": 1134 + }, + "73b4469f-b20c-4663-9314-bfc38a1b686d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73b4469f-b20c-4663-9314-bfc38a1b686d", + "Name": null + }, + "2c7eb993-4cd4-4f20-8317-9f163c87afc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2c7eb993-4cd4-4f20-8317-9f163c87afc5", + "Name": "W18x40", + "EdgeId": 743, + "ExternalEdgeId": 743 + }, + "8663cb0c-7427-4bd0-8cbc-cad30654bcc2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8663cb0c-7427-4bd0-8cbc-cad30654bcc2", + "Name": null + }, + "5756762a-2263-45b8-be4e-a2ad7639e4e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5756762a-2263-45b8-be4e-a2ad7639e4e4", + "Name": "W18x40", + "EdgeId": 744, + "ExternalEdgeId": 744 + }, + "73a74312-97bc-4cef-82de-e4c2a579f925": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73a74312-97bc-4cef-82de-e4c2a579f925", + "Name": null + }, + "b5b0811b-cb0b-4d76-8d5c-e01131948b0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b5b0811b-cb0b-4d76-8d5c-e01131948b0a", + "Name": "W18x40", + "EdgeId": 745, + "ExternalEdgeId": 745 + }, + "7b6151cf-07db-4a66-95c5-ab33ba68b16e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7b6151cf-07db-4a66-95c5-ab33ba68b16e", + "Name": null + }, + "0321b70d-cd9e-4fa7-9ac2-38ac0f08bab7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0321b70d-cd9e-4fa7-9ac2-38ac0f08bab7", + "Name": "W18x40", + "EdgeId": 746, + "ExternalEdgeId": 746 + }, + "d3d26f53-ed8c-4b28-9a8f-275ea2d5666f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d3d26f53-ed8c-4b28-9a8f-275ea2d5666f", + "Name": null + }, + "b043f409-ee4d-4888-a089-0bdd02a18c85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b043f409-ee4d-4888-a089-0bdd02a18c85", + "Name": "W18x40", + "EdgeId": 756, + "ExternalEdgeId": 756 + }, + "38e3f2b7-efce-40ca-b287-764275ff732b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38e3f2b7-efce-40ca-b287-764275ff732b", + "Name": null + }, + "5132d139-53df-47fc-b4e0-01402b2ff457": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5132d139-53df-47fc-b4e0-01402b2ff457", + "Name": "W18x40", + "EdgeId": 757, + "ExternalEdgeId": 757 + }, + "cf827c03-1d40-48f8-81ed-cbd2a689b310": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf827c03-1d40-48f8-81ed-cbd2a689b310", + "Name": null + }, + "bce2b108-d4f7-480a-8ec5-f41e537e159c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bce2b108-d4f7-480a-8ec5-f41e537e159c", + "Name": "W18x40", + "EdgeId": 758, + "ExternalEdgeId": 758 + }, + "6ff41ea2-caa9-4a70-a098-1801a987e5f0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6ff41ea2-caa9-4a70-a098-1801a987e5f0", + "Name": null + }, + "38b34cb0-298c-4166-9d59-ded344b19df4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "38b34cb0-298c-4166-9d59-ded344b19df4", + "Name": "W18x40", + "EdgeId": 766, + "ExternalEdgeId": 766 + }, + "c0ef46fb-af19-43c0-aedb-14bcf36be031": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0ef46fb-af19-43c0-aedb-14bcf36be031", + "Name": null + }, + "d7c4da69-c1c2-4fbc-bd21-d4809a0ef5fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d7c4da69-c1c2-4fbc-bd21-d4809a0ef5fe", + "Name": "W18x40", + "EdgeId": 767, + "ExternalEdgeId": 767 + }, + "3ed175cb-b5d1-49db-94a7-b77b70556d25": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3ed175cb-b5d1-49db-94a7-b77b70556d25", + "Name": null + }, + "cb4583df-2059-49fb-a900-929869c892ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cb4583df-2059-49fb-a900-929869c892ee", + "Name": "W18x40", + "EdgeId": 768, + "ExternalEdgeId": 768 + }, + "828084ab-62c7-4ab4-b643-dbe6d0c1e89f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "828084ab-62c7-4ab4-b643-dbe6d0c1e89f", + "Name": null + }, + "71ae6296-8777-40f8-82d8-8ee0bd2b089f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "71ae6296-8777-40f8-82d8-8ee0bd2b089f", + "Name": "W18x40", + "EdgeId": 777, + "ExternalEdgeId": 777 + }, + "7788f3e8-a530-4b70-b586-a3bf3b4aad13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7788f3e8-a530-4b70-b586-a3bf3b4aad13", + "Name": null + }, + "ee9be891-f9c8-4f9a-978a-97dc932ff571": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ee9be891-f9c8-4f9a-978a-97dc932ff571", + "Name": "W18x40", + "EdgeId": 778, + "ExternalEdgeId": 778 + }, + "950cb672-8034-4cba-b1bc-2d775e62da27": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "950cb672-8034-4cba-b1bc-2d775e62da27", + "Name": null + }, + "2473e0ee-e5ae-488c-ba80-d6a29fd67dcb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2473e0ee-e5ae-488c-ba80-d6a29fd67dcb", + "Name": "W18x40", + "EdgeId": 779, + "ExternalEdgeId": 779 + }, + "9c19123b-a9b1-485d-9566-dbdbd9216efb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 20.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c19123b-a9b1-485d-9566-dbdbd9216efb", + "Name": null + }, + "bb40d15e-e079-4dc2-93de-e18ceceaecad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bb40d15e-e079-4dc2-93de-e18ceceaecad", + "Name": "W18x40", + "EdgeId": 787, + "ExternalEdgeId": 787 + }, + "34a8d463-fc09-4115-a43c-0ee0b975aef4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "34a8d463-fc09-4115-a43c-0ee0b975aef4", + "Name": null + }, + "65981e7e-d5a1-4313-8676-b35279a176bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "65981e7e-d5a1-4313-8676-b35279a176bc", + "Name": "W18x40", + "EdgeId": 788, + "ExternalEdgeId": 788 + }, + "ac7e3056-82e6-4587-8fe7-735f65926c34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ac7e3056-82e6-4587-8fe7-735f65926c34", + "Name": null + }, + "41822c49-718f-43a8-a3ea-d357d91566aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "41822c49-718f-43a8-a3ea-d357d91566aa", + "Name": "W18x40", + "EdgeId": 789, + "ExternalEdgeId": 789 + }, + "243f6eeb-15f9-43e6-bd7a-6dfbfccde7d4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "243f6eeb-15f9-43e6-bd7a-6dfbfccde7d4", + "Name": null + }, + "e218b82a-f3fc-4467-b5ef-38a4da62bca2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e218b82a-f3fc-4467-b5ef-38a4da62bca2", + "Name": "W18x40", + "EdgeId": 794, + "ExternalEdgeId": 794 + }, + "6cbf7deb-dae4-41d0-8e8d-82c3260a2430": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6cbf7deb-dae4-41d0-8e8d-82c3260a2430", + "Name": null + }, + "da2dc2c2-0df2-42f2-b2d7-b929ad3d3d53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "da2dc2c2-0df2-42f2-b2d7-b929ad3d3d53", + "Name": "W18x40", + "EdgeId": 795, + "ExternalEdgeId": 795 + }, + "52aea727-371e-4797-b661-b7889feef359": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52aea727-371e-4797-b661-b7889feef359", + "Name": null + }, + "e20f78b6-c5f5-46c6-b47d-ebd49576e288": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e20f78b6-c5f5-46c6-b47d-ebd49576e288", + "Name": "W18x40", + "EdgeId": 800, + "ExternalEdgeId": 800 + }, + "44bff635-6507-4c63-afbb-56351081e556": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44bff635-6507-4c63-afbb-56351081e556", + "Name": null + }, + "3e33cffe-9621-4dd3-a2fa-97a6ee0c80ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3e33cffe-9621-4dd3-a2fa-97a6ee0c80ef", + "Name": "W18x40", + "EdgeId": 801, + "ExternalEdgeId": 801 + }, + "7ae1d603-4118-485e-969b-f0c500108f0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ae1d603-4118-485e-969b-f0c500108f0b", + "Name": null + }, + "f665b099-8d3f-4f2f-8efb-78684869ee9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f665b099-8d3f-4f2f-8efb-78684869ee9a", + "Name": "W18x40", + "EdgeId": 808, + "ExternalEdgeId": 808 + }, + "65656ef1-fabc-42a7-950b-3cbb77315098": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "65656ef1-fabc-42a7-950b-3cbb77315098", + "Name": null + }, + "62b1a0fd-51db-4848-bc63-a54b510683d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "62b1a0fd-51db-4848-bc63-a54b510683d3", + "Name": "W18x40", + "EdgeId": 809, + "ExternalEdgeId": 809 + }, + "b78ebffa-56bc-4113-b30a-f8bf8ee25d50": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b78ebffa-56bc-4113-b30a-f8bf8ee25d50", + "Name": null + }, + "ff320985-20bc-4322-838c-a8268cbb31e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ff320985-20bc-4322-838c-a8268cbb31e7", + "Name": "W18x40", + "EdgeId": 810, + "ExternalEdgeId": 810 + }, + "d3883d30-ddc0-413b-be63-9138d286a076": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d3883d30-ddc0-413b-be63-9138d286a076", + "Name": null + }, + "4a518308-397c-4ffd-85d2-a0cf7fc869a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4a518308-397c-4ffd-85d2-a0cf7fc869a8", + "Name": "W18x40", + "EdgeId": 816, + "ExternalEdgeId": 816 + }, + "bfbd8a52-9670-4628-8ffd-15f8473f936f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bfbd8a52-9670-4628-8ffd-15f8473f936f", + "Name": null + }, + "4ccc9ba0-0d14-4a09-824f-17be83ece5fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4ccc9ba0-0d14-4a09-824f-17be83ece5fb", + "Name": "W18x40", + "EdgeId": 817, + "ExternalEdgeId": 817 + }, + "6e347141-937a-4777-9759-33424e9ff420": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e347141-937a-4777-9759-33424e9ff420", + "Name": null + }, + "95814d6a-59f3-4dc7-b58f-11046e48fd77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "95814d6a-59f3-4dc7-b58f-11046e48fd77", + "Name": "W18x40", + "EdgeId": 822, + "ExternalEdgeId": 822 + }, + "89d6c147-b368-46ab-a23c-8ce956c9108d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "89d6c147-b368-46ab-a23c-8ce956c9108d", + "Name": null + }, + "5661d36f-32ca-4590-8f6e-8a7c093db3d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5661d36f-32ca-4590-8f6e-8a7c093db3d7", + "Name": "W18x40", + "EdgeId": 823, + "ExternalEdgeId": 823 + }, + "6ff4922b-1361-470e-bdde-889202ccfad9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6ff4922b-1361-470e-bdde-889202ccfad9", + "Name": null + }, + "ecf1ed6e-0aae-4cdd-9970-e6844cd79632": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ecf1ed6e-0aae-4cdd-9970-e6844cd79632", + "Name": "W18x40", + "EdgeId": 828, + "ExternalEdgeId": 828 + }, + "f6d9d95e-ed0a-46d3-aa9d-46fd12655481": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f6d9d95e-ed0a-46d3-aa9d-46fd12655481", + "Name": null + }, + "3adb9c36-6df2-46b9-beeb-cc9f9476a6a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3adb9c36-6df2-46b9-beeb-cc9f9476a6a1", + "Name": "W18x40", + "EdgeId": 829, + "ExternalEdgeId": 829 + }, + "721b5f74-a61a-479d-a3c4-80357ca13269": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "721b5f74-a61a-479d-a3c4-80357ca13269", + "Name": null + }, + "bedc85d6-d54d-4c4a-9eda-77a124c04fdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bedc85d6-d54d-4c4a-9eda-77a124c04fdf", + "Name": "W18x40", + "EdgeId": 836, + "ExternalEdgeId": 836 + }, + "6408316b-1e56-41e8-9d1d-e4dfb779b7bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6408316b-1e56-41e8-9d1d-e4dfb779b7bf", + "Name": null + }, + "a342edcf-f7fa-4ec7-9dc5-6e3179058dc9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a342edcf-f7fa-4ec7-9dc5-6e3179058dc9", + "Name": "W18x40", + "EdgeId": 837, + "ExternalEdgeId": 837 + }, + "a65c9b1a-22e6-496c-808f-637dc2dc29f0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a65c9b1a-22e6-496c-808f-637dc2dc29f0", + "Name": null + }, + "3b72397b-b999-4167-b563-85082306e283": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3b72397b-b999-4167-b563-85082306e283", + "Name": "W18x40", + "EdgeId": 838, + "ExternalEdgeId": 838 + }, + "77d9f8aa-d428-4c21-93df-66a7c3cb4e7b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "77d9f8aa-d428-4c21-93df-66a7c3cb4e7b", + "Name": null + }, + "d0e7a827-0007-49c1-b7bd-19876abd9664": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d0e7a827-0007-49c1-b7bd-19876abd9664", + "Name": "W18x40", + "EdgeId": 844, + "ExternalEdgeId": 844 + }, + "a7c2923a-7f60-44ff-9140-ad25c85b6c02": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a7c2923a-7f60-44ff-9140-ad25c85b6c02", + "Name": null + }, + "0ce428b1-7ae5-48df-a70a-c208c6144f46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0ce428b1-7ae5-48df-a70a-c208c6144f46", + "Name": "W18x40", + "EdgeId": 845, + "ExternalEdgeId": 845 + }, + "60d0cc29-63f4-4bbb-8120-75671843a2f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "60d0cc29-63f4-4bbb-8120-75671843a2f9", + "Name": null + }, + "c3d4d65b-35a7-4b46-a6c6-ade3ce953ad6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c3d4d65b-35a7-4b46-a6c6-ade3ce953ad6", + "Name": "W18x40", + "EdgeId": 850, + "ExternalEdgeId": 850 + }, + "f52dc20f-c60e-49c6-bea8-f80bd1f74321": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f52dc20f-c60e-49c6-bea8-f80bd1f74321", + "Name": null + }, + "94246612-0f92-4187-8cd0-d6cd6415d402": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "94246612-0f92-4187-8cd0-d6cd6415d402", + "Name": "W18x40", + "EdgeId": 851, + "ExternalEdgeId": 851 + }, + "85975820-fc2b-4c25-ad99-5b4d3d8f1be5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "85975820-fc2b-4c25-ad99-5b4d3d8f1be5", + "Name": null + }, + "8c8b161d-d579-44e1-a9a1-3659d664ac19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8c8b161d-d579-44e1-a9a1-3659d664ac19", + "Name": "W18x40", + "EdgeId": 856, + "ExternalEdgeId": 856 + }, + "459d04bf-a8b5-4434-ace4-f0071301e4f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "459d04bf-a8b5-4434-ace4-f0071301e4f5", + "Name": null + }, + "0430ef17-e21e-44a8-88d3-9a4d4cafb4d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0430ef17-e21e-44a8-88d3-9a4d4cafb4d8", + "Name": "W18x40", + "EdgeId": 857, + "ExternalEdgeId": 857 + }, + "b5ad1334-5949-49d1-a1f9-585b5099a88d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5ad1334-5949-49d1-a1f9-585b5099a88d", + "Name": null + }, + "30ffb01c-8106-450b-a0f5-217ee9a49c3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "30ffb01c-8106-450b-a0f5-217ee9a49c3c", + "Name": "W18x40", + "EdgeId": 865, + "ExternalEdgeId": 865 + }, + "444bcd1b-af72-442c-91fe-3fa51a086344": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "444bcd1b-af72-442c-91fe-3fa51a086344", + "Name": null + }, + "34ac1015-8fa2-458c-88b4-9c3a44a410ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "34ac1015-8fa2-458c-88b4-9c3a44a410ad", + "Name": "W18x40", + "EdgeId": 866, + "ExternalEdgeId": 866 + }, + "63be612e-2c6c-45e3-a336-67f869575bdf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63be612e-2c6c-45e3-a336-67f869575bdf", + "Name": null + }, + "a17f5d18-cd51-4d21-8264-1bbde173aade": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a17f5d18-cd51-4d21-8264-1bbde173aade", + "Name": "W18x40", + "EdgeId": 867, + "ExternalEdgeId": 867 + }, + "e9284f9c-d88c-4bb6-8bdc-4ed852eb477a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 20.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e9284f9c-d88c-4bb6-8bdc-4ed852eb477a", + "Name": null + }, + "693cdb0c-e4cd-4bb6-baf2-f3e754bcd5b0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "693cdb0c-e4cd-4bb6-baf2-f3e754bcd5b0", + "Name": "W18x40", + "EdgeId": 875, + "ExternalEdgeId": 875 + }, + "961c967d-6fe0-42eb-a8a0-12a8e4b83c17": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "961c967d-6fe0-42eb-a8a0-12a8e4b83c17", + "Name": null + }, + "5ccb4c9e-2a53-4d93-a600-e6bc4cbc0317": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5ccb4c9e-2a53-4d93-a600-e6bc4cbc0317", + "Name": "W18x40", + "EdgeId": 876, + "ExternalEdgeId": 876 + }, + "a2a24add-5406-4e8c-9719-b0c2b6fc564d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a2a24add-5406-4e8c-9719-b0c2b6fc564d", + "Name": null + }, + "66b9b86b-606c-48cb-aa7d-e3d991825009": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "66b9b86b-606c-48cb-aa7d-e3d991825009", + "Name": "W18x40", + "EdgeId": 877, + "ExternalEdgeId": 877 + }, + "10904fb9-2f15-44f2-a0bf-e0414d04cdb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10904fb9-2f15-44f2-a0bf-e0414d04cdb4", + "Name": null + }, + "36be7197-ee41-4c8f-8a36-421985abc6dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "36be7197-ee41-4c8f-8a36-421985abc6dd", + "Name": "W18x40", + "EdgeId": 882, + "ExternalEdgeId": 882 + }, + "e2806254-740d-4b80-9b03-2f18691629d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e2806254-740d-4b80-9b03-2f18691629d7", + "Name": null + }, + "28f31813-d4bf-4f0e-b249-1e2a82cf87fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "28f31813-d4bf-4f0e-b249-1e2a82cf87fd", + "Name": "W18x40", + "EdgeId": 883, + "ExternalEdgeId": 883 + }, + "b9aa9f70-f29e-496f-8fde-c5c3771b5a56": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9aa9f70-f29e-496f-8fde-c5c3771b5a56", + "Name": null + }, + "623831a9-1c60-4d67-a71c-2e3d6f4e502c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "623831a9-1c60-4d67-a71c-2e3d6f4e502c", + "Name": "W18x40", + "EdgeId": 888, + "ExternalEdgeId": 888 + }, + "05a16553-518c-45dd-a305-c7f6b9c04bb2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "05a16553-518c-45dd-a305-c7f6b9c04bb2", + "Name": null + }, + "92a9090a-4ba7-47c4-aff6-2417b3ba43a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "92a9090a-4ba7-47c4-aff6-2417b3ba43a6", + "Name": "W18x40", + "EdgeId": 889, + "ExternalEdgeId": 889 + }, + "62649b46-d79e-4a58-9d57-fa27f1a8214e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "62649b46-d79e-4a58-9d57-fa27f1a8214e", + "Name": null + }, + "92f8f5e9-f770-4ec5-851e-d485a3f0f77f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "92f8f5e9-f770-4ec5-851e-d485a3f0f77f", + "Name": "W18x40", + "EdgeId": 894, + "ExternalEdgeId": 894 + }, + "f271ffb4-48d9-4f9d-81ad-f02950f9dd13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f271ffb4-48d9-4f9d-81ad-f02950f9dd13", + "Name": null + }, + "b7cab596-9e32-4caf-a586-96421f96a748": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b7cab596-9e32-4caf-a586-96421f96a748", + "Name": "W18x40", + "EdgeId": 895, + "ExternalEdgeId": 895 + }, + "70c077ab-9d1d-40e1-8d5e-e06581dc9cbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "70c077ab-9d1d-40e1-8d5e-e06581dc9cbd", + "Name": null + }, + "7566054d-9770-4a02-a74b-568fd5c011ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7566054d-9770-4a02-a74b-568fd5c011ab", + "Name": "W18x40", + "EdgeId": 902, + "ExternalEdgeId": 902 + }, + "6d949604-4db6-48a8-a715-238cc841e241": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d949604-4db6-48a8-a715-238cc841e241", + "Name": null + }, + "fcb071dd-e00b-4d80-8f28-d8b678c4e22c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fcb071dd-e00b-4d80-8f28-d8b678c4e22c", + "Name": "W18x40", + "EdgeId": 903, + "ExternalEdgeId": 903 + }, + "b4131bed-9735-4b2a-93a4-db8400dc7cf1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4131bed-9735-4b2a-93a4-db8400dc7cf1", + "Name": null + }, + "32993163-28bf-446d-bc41-e38dc63dcf63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "32993163-28bf-446d-bc41-e38dc63dcf63", + "Name": "W18x40", + "EdgeId": 904, + "ExternalEdgeId": 904 + }, + "cebc0a4c-75a5-4f98-bc26-627264d2d24c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cebc0a4c-75a5-4f98-bc26-627264d2d24c", + "Name": null + }, + "714355d3-4abe-4fbd-9d7c-ca868550ca9d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "714355d3-4abe-4fbd-9d7c-ca868550ca9d", + "Name": "W18x40", + "EdgeId": 910, + "ExternalEdgeId": 910 + }, + "8837d5be-0438-4d00-a44f-d56165d5f86b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8837d5be-0438-4d00-a44f-d56165d5f86b", + "Name": null + }, + "0122a9d8-8a9c-44f4-9ed2-973ff1371324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0122a9d8-8a9c-44f4-9ed2-973ff1371324", + "Name": "W18x40", + "EdgeId": 911, + "ExternalEdgeId": 911 + }, + "368d544b-1bc0-4772-afaa-4fa96f0bf5d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "368d544b-1bc0-4772-afaa-4fa96f0bf5d6", + "Name": null + }, + "12b5ec13-41b5-4e8a-bd0c-f3685a74b648": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "12b5ec13-41b5-4e8a-bd0c-f3685a74b648", + "Name": "W18x40", + "EdgeId": 916, + "ExternalEdgeId": 916 + }, + "be1eea6c-5381-4a49-9607-4e47e5a12b78": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "be1eea6c-5381-4a49-9607-4e47e5a12b78", + "Name": null + }, + "ffd2e42e-eba8-4dae-9be3-4a08fd21717b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ffd2e42e-eba8-4dae-9be3-4a08fd21717b", + "Name": "W18x40", + "EdgeId": 917, + "ExternalEdgeId": 917 + }, + "d31d51e9-ce64-4226-a448-637d7c7aee90": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d31d51e9-ce64-4226-a448-637d7c7aee90", + "Name": null + }, + "e70f7a79-8204-45b6-b93e-c463fef45005": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e70f7a79-8204-45b6-b93e-c463fef45005", + "Name": "W18x40", + "EdgeId": 922, + "ExternalEdgeId": 922 + }, + "79ab0755-68bb-47da-8548-4b6c81777e0f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "79ab0755-68bb-47da-8548-4b6c81777e0f", + "Name": null + }, + "2674f30b-a4de-4f3d-820f-efd5a19ef366": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2674f30b-a4de-4f3d-820f-efd5a19ef366", + "Name": "W18x40", + "EdgeId": 923, + "ExternalEdgeId": 923 + }, + "14762112-2644-420c-bac2-15118c85b1c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14762112-2644-420c-bac2-15118c85b1c5", + "Name": null + }, + "5f898749-d865-43f3-94e6-f4dfe98ecb80": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5f898749-d865-43f3-94e6-f4dfe98ecb80", + "Name": "W18x40", + "EdgeId": 928, + "ExternalEdgeId": 928 + }, + "ac5a5eac-2ebe-4ed7-acda-a5906bc8c520": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ac5a5eac-2ebe-4ed7-acda-a5906bc8c520", + "Name": null + }, + "8ba3fc5e-c4f7-401b-a83a-8b3fef431bfc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8ba3fc5e-c4f7-401b-a83a-8b3fef431bfc", + "Name": "W18x40", + "EdgeId": 929, + "ExternalEdgeId": 929 + }, + "ef3034db-548f-410f-90cd-b9338048aede": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef3034db-548f-410f-90cd-b9338048aede", + "Name": null + }, + "53296270-fce1-41bd-9d78-3f9dbb774191": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "53296270-fce1-41bd-9d78-3f9dbb774191", + "Name": "W18x40", + "EdgeId": 938, + "ExternalEdgeId": 938 + }, + "9f54c068-1b29-4670-8d39-d3bdf2135f77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f54c068-1b29-4670-8d39-d3bdf2135f77", + "Name": null + }, + "721061e9-d727-4962-8bfd-c5927f6ffdf3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "721061e9-d727-4962-8bfd-c5927f6ffdf3", + "Name": "W18x40", + "EdgeId": 939, + "ExternalEdgeId": 939 + }, + "7c86758a-223d-4005-8e05-a70915727041": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c86758a-223d-4005-8e05-a70915727041", + "Name": null + }, + "e24785cc-7120-4edb-8430-7a59883bfe30": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e24785cc-7120-4edb-8430-7a59883bfe30", + "Name": "W18x40", + "EdgeId": 940, + "ExternalEdgeId": 940 + }, + "2d2b99f4-b82b-4524-831d-5c24d3a1cddc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d2b99f4-b82b-4524-831d-5c24d3a1cddc", + "Name": null + }, + "fdfff1e4-2107-47fe-b6b4-00f44348b518": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fdfff1e4-2107-47fe-b6b4-00f44348b518", + "Name": "W18x40", + "EdgeId": 941, + "ExternalEdgeId": 941 + }, + "fbb81037-5754-4d19-8cc3-2b070c916858": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbb81037-5754-4d19-8cc3-2b070c916858", + "Name": null + }, + "c59fd964-46f1-47dd-b042-1357c366eeca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c59fd964-46f1-47dd-b042-1357c366eeca", + "Name": "W18x40", + "EdgeId": 948, + "ExternalEdgeId": 948 + }, + "e5fa3f8a-f2d9-4409-af93-183d7fef4b13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5fa3f8a-f2d9-4409-af93-183d7fef4b13", + "Name": null + }, + "ac1a3fe0-2302-4749-906a-b07f147d4c48": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ac1a3fe0-2302-4749-906a-b07f147d4c48", + "Name": "W18x40", + "EdgeId": 949, + "ExternalEdgeId": 949 + }, + "ea6ffe64-4db0-4878-a2f1-5b42902c3472": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea6ffe64-4db0-4878-a2f1-5b42902c3472", + "Name": null + }, + "587341cb-ec42-431e-a66a-ec5f6a9ba78a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "587341cb-ec42-431e-a66a-ec5f6a9ba78a", + "Name": "W18x40", + "EdgeId": 954, + "ExternalEdgeId": 954 + }, + "487b1b5b-84c1-4cf2-b777-6ce3c2595f1e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "487b1b5b-84c1-4cf2-b777-6ce3c2595f1e", + "Name": null + }, + "b62c2d59-e03e-49de-a2b9-f9a4ca6bc863": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b62c2d59-e03e-49de-a2b9-f9a4ca6bc863", + "Name": "W18x40", + "EdgeId": 955, + "ExternalEdgeId": 955 + }, + "b64bff93-2329-42be-8d9c-c9a51a4d68be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b64bff93-2329-42be-8d9c-c9a51a4d68be", + "Name": null + }, + "654c062f-a3d5-4646-940b-d16b68e75ac7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "654c062f-a3d5-4646-940b-d16b68e75ac7", + "Name": "W18x40", + "EdgeId": 960, + "ExternalEdgeId": 960 + }, + "c64b40cd-45ea-4411-878c-f96656f3d512": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c64b40cd-45ea-4411-878c-f96656f3d512", + "Name": null + }, + "ae39f61f-1e45-4f2b-bb05-dff285aa5231": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ae39f61f-1e45-4f2b-bb05-dff285aa5231", + "Name": "W18x40", + "EdgeId": 961, + "ExternalEdgeId": 961 + }, + "8adba4b3-ce06-47f6-92f0-74792f86a334": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8adba4b3-ce06-47f6-92f0-74792f86a334", + "Name": null + }, + "9a32a250-7090-4ece-8064-e5d566ef045a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9a32a250-7090-4ece-8064-e5d566ef045a", + "Name": "W18x40", + "EdgeId": 966, + "ExternalEdgeId": 966 + }, + "6738b108-a109-45c5-b0cf-ea19feaeca6a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6738b108-a109-45c5-b0cf-ea19feaeca6a", + "Name": null + }, + "8a4d5797-fc3e-4e1c-a76d-f25a45aef2b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8a4d5797-fc3e-4e1c-a76d-f25a45aef2b9", + "Name": "W18x40", + "EdgeId": 967, + "ExternalEdgeId": 967 + }, + "5bb43beb-dedb-4d48-80b5-566a5035974c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5bb43beb-dedb-4d48-80b5-566a5035974c", + "Name": null + }, + "c1b9a3e3-87ea-4d35-9c10-dde0976a3a56": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c1b9a3e3-87ea-4d35-9c10-dde0976a3a56", + "Name": "W18x40", + "EdgeId": 974, + "ExternalEdgeId": 974 + }, + "d1b989fa-cdc4-4f82-a779-dffd764cab77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1b989fa-cdc4-4f82-a779-dffd764cab77", + "Name": null + }, + "8422fc73-f654-40be-92ef-b47bfa083722": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8422fc73-f654-40be-92ef-b47bfa083722", + "Name": "W18x40", + "EdgeId": 975, + "ExternalEdgeId": 975 + }, + "32847fe1-8fce-421e-978f-067f16b4cbe7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32847fe1-8fce-421e-978f-067f16b4cbe7", + "Name": null + }, + "a3aed147-8a79-4e25-90da-ceed483bfb0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a3aed147-8a79-4e25-90da-ceed483bfb0a", + "Name": "W18x40", + "EdgeId": 976, + "ExternalEdgeId": 976 + }, + "62eba8bb-7ed6-40b9-b40a-3aede2fe15cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "62eba8bb-7ed6-40b9-b40a-3aede2fe15cd", + "Name": null + }, + "1338175c-45d5-48f8-b3cd-5bfcce3a26be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1338175c-45d5-48f8-b3cd-5bfcce3a26be", + "Name": "W18x40", + "EdgeId": 982, + "ExternalEdgeId": 982 + }, + "83d5bbae-24a5-4ccb-bdf5-fefe56a4da96": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83d5bbae-24a5-4ccb-bdf5-fefe56a4da96", + "Name": null + }, + "5ba70cc0-1749-498a-ba7c-a113c849c0ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5ba70cc0-1749-498a-ba7c-a113c849c0ee", + "Name": "W18x40", + "EdgeId": 983, + "ExternalEdgeId": 983 + }, + "fda51021-19ea-47c2-89d8-bebefae64ef7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fda51021-19ea-47c2-89d8-bebefae64ef7", + "Name": null + }, + "aee751e8-23b3-43b6-ad64-46e454aa4e01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "aee751e8-23b3-43b6-ad64-46e454aa4e01", + "Name": "W18x40", + "EdgeId": 988, + "ExternalEdgeId": 988 + }, + "b3be5363-5298-4e00-9c9a-d29bd855b1ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b3be5363-5298-4e00-9c9a-d29bd855b1ba", + "Name": null + }, + "00cd6d38-81c0-4546-ae18-577def7829ac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "00cd6d38-81c0-4546-ae18-577def7829ac", + "Name": "W18x40", + "EdgeId": 989, + "ExternalEdgeId": 989 + }, + "6f10f44f-4bea-4415-97bc-75f6a29ead0f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6f10f44f-4bea-4415-97bc-75f6a29ead0f", + "Name": null + }, + "9331dc8b-e289-49b1-a173-ddb610239644": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9331dc8b-e289-49b1-a173-ddb610239644", + "Name": "W18x40", + "EdgeId": 994, + "ExternalEdgeId": 994 + }, + "5d25370a-d634-49b0-98e4-3c3a643493a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5d25370a-d634-49b0-98e4-3c3a643493a3", + "Name": null + }, + "d3303415-fd73-4c95-ba14-0d4a738f3710": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d3303415-fd73-4c95-ba14-0d4a738f3710", + "Name": "W18x40", + "EdgeId": 995, + "ExternalEdgeId": 995 + }, + "9ff47446-ad73-475c-bd69-29d9910f2eee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ff47446-ad73-475c-bd69-29d9910f2eee", + "Name": null + }, + "f7fd7ce1-e38d-4262-a535-65297ffec748": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f7fd7ce1-e38d-4262-a535-65297ffec748", + "Name": "W18x40", + "EdgeId": 1000, + "ExternalEdgeId": 1000 + }, + "afba6cb7-2cb7-45cd-94c4-89cb9febc67f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "afba6cb7-2cb7-45cd-94c4-89cb9febc67f", + "Name": null + }, + "3400de3a-be17-43a5-b35e-2e24a05a60d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3400de3a-be17-43a5-b35e-2e24a05a60d6", + "Name": "W18x40", + "EdgeId": 1001, + "ExternalEdgeId": 1001 + }, + "528c9834-f0e7-4420-9a89-e3e25eeb63c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "528c9834-f0e7-4420-9a89-e3e25eeb63c5", + "Name": null + }, + "ce9d7ceb-1e34-48d1-8dc3-e065820bf4ca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ce9d7ceb-1e34-48d1-8dc3-e065820bf4ca", + "Name": "W18x40", + "EdgeId": 1008, + "ExternalEdgeId": 1008 + }, + "7f1188b8-b857-498c-ac4f-0c0b0e7dfa5c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7f1188b8-b857-498c-ac4f-0c0b0e7dfa5c", + "Name": null + }, + "0a728c89-ee3d-4e8c-a333-f7fcf52c83ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0a728c89-ee3d-4e8c-a333-f7fcf52c83ef", + "Name": "W18x40", + "EdgeId": 1009, + "ExternalEdgeId": 1009 + }, + "e735e45f-1105-450c-8196-70eaf295de28": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e735e45f-1105-450c-8196-70eaf295de28", + "Name": null + }, + "01ad8d79-bdc1-4996-82c8-f12caffcca7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "01ad8d79-bdc1-4996-82c8-f12caffcca7c", + "Name": "W18x40", + "EdgeId": 1010, + "ExternalEdgeId": 1010 + }, + "74dbfe53-ed7c-45d0-84b2-4f8102e7a988": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "74dbfe53-ed7c-45d0-84b2-4f8102e7a988", + "Name": null + }, + "d3b77ff3-da08-4bfc-8455-67982cb68b91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d3b77ff3-da08-4bfc-8455-67982cb68b91", + "Name": "W18x40", + "EdgeId": 1016, + "ExternalEdgeId": 1016 + }, + "4f840cd7-cf6f-416e-b568-1ec54c879391": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f840cd7-cf6f-416e-b568-1ec54c879391", + "Name": null + }, + "4a67bc8d-d672-4e1d-b148-48c1161a338e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4a67bc8d-d672-4e1d-b148-48c1161a338e", + "Name": "W18x40", + "EdgeId": 1017, + "ExternalEdgeId": 1017 + }, + "5a84afaa-2916-4f0e-b296-a7b8457373a4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a84afaa-2916-4f0e-b296-a7b8457373a4", + "Name": null + }, + "6dbfb248-8bf5-4825-bf8e-dde9fe8087e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6dbfb248-8bf5-4825-bf8e-dde9fe8087e7", + "Name": "W18x40", + "EdgeId": 1022, + "ExternalEdgeId": 1022 + }, + "6d9bad59-e1f2-4cd0-a52b-3f4b6370bf6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d9bad59-e1f2-4cd0-a52b-3f4b6370bf6c", + "Name": null + }, + "430f0555-2259-4f0a-90bd-1955db210de8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "430f0555-2259-4f0a-90bd-1955db210de8", + "Name": "W18x40", + "EdgeId": 1023, + "ExternalEdgeId": 1023 + }, + "95048724-622a-431b-8caa-4a4c25b6fd77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95048724-622a-431b-8caa-4a4c25b6fd77", + "Name": null + }, + "5b17eeb9-8f36-448f-a70a-0ee3cec4e307": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5b17eeb9-8f36-448f-a70a-0ee3cec4e307", + "Name": "W18x40", + "EdgeId": 1028, + "ExternalEdgeId": 1028 + }, + "d65f691e-d173-44ed-a5bd-97dbc3742fbb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d65f691e-d173-44ed-a5bd-97dbc3742fbb", + "Name": null + }, + "1855a12a-4644-41c5-8643-b41a84160976": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1855a12a-4644-41c5-8643-b41a84160976", + "Name": "W18x40", + "EdgeId": 1029, + "ExternalEdgeId": 1029 + }, + "0b1dcd83-8da1-403c-a45d-efffdf6ab4c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b1dcd83-8da1-403c-a45d-efffdf6ab4c6", + "Name": null + }, + "ca0c0fa4-ce88-43c4-ba38-94ba716a28f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ca0c0fa4-ce88-43c4-ba38-94ba716a28f8", + "Name": "W18x40", + "EdgeId": 1034, + "ExternalEdgeId": 1034 + }, + "6a6f15af-2700-4a08-8ba2-0fea76108621": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a6f15af-2700-4a08-8ba2-0fea76108621", + "Name": null + }, + "6eed850c-cf55-44c8-a524-2e118f502216": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6eed850c-cf55-44c8-a524-2e118f502216", + "Name": "W18x40", + "EdgeId": 1035, + "ExternalEdgeId": 1035 + }, + "ebcd5df0-0959-49b8-a4de-0930b927c256": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ebcd5df0-0959-49b8-a4de-0930b927c256", + "Name": null + }, + "214e40dc-9bab-4536-812a-99914eefee2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "214e40dc-9bab-4536-812a-99914eefee2a", + "Name": "W18x40", + "EdgeId": 1042, + "ExternalEdgeId": 1042 + }, + "5a554915-ef21-4142-ad3e-2b19ed3bbbc7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a554915-ef21-4142-ad3e-2b19ed3bbbc7", + "Name": null + }, + "8b12b4c9-d97b-4aa8-94d3-4f9cb50ff424": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8b12b4c9-d97b-4aa8-94d3-4f9cb50ff424", + "Name": "W18x40", + "EdgeId": 1043, + "ExternalEdgeId": 1043 + }, + "a8855d0e-8c83-4093-8b3a-45d565bf1d6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a8855d0e-8c83-4093-8b3a-45d565bf1d6c", + "Name": null + }, + "1ecdee24-569f-4399-b36f-fdff365f0d55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1ecdee24-569f-4399-b36f-fdff365f0d55", + "Name": "W18x40", + "EdgeId": 1044, + "ExternalEdgeId": 1044 + }, + "80570f75-78b0-4df7-9905-00fc6a6b763f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80570f75-78b0-4df7-9905-00fc6a6b763f", + "Name": null + }, + "23394662-b582-4370-86df-dd403bd134ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "23394662-b582-4370-86df-dd403bd134ba", + "Name": "W18x40", + "EdgeId": 1050, + "ExternalEdgeId": 1050 + }, + "18762e61-5387-4317-89c4-9be721f4510e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "18762e61-5387-4317-89c4-9be721f4510e", + "Name": null + }, + "14f2860a-81de-4a1c-9ec9-8035154a191c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "14f2860a-81de-4a1c-9ec9-8035154a191c", + "Name": "W18x40", + "EdgeId": 1051, + "ExternalEdgeId": 1051 + }, + "d74448c6-43ce-4b44-9bea-675ed2995fdf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d74448c6-43ce-4b44-9bea-675ed2995fdf", + "Name": null + }, + "aa1ccf4e-9039-4e6b-a62b-cba3f34f923e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "aa1ccf4e-9039-4e6b-a62b-cba3f34f923e", + "Name": "W18x40", + "EdgeId": 1056, + "ExternalEdgeId": 1056 + }, + "87d89d5e-8f0f-4736-a1e8-046736c22475": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87d89d5e-8f0f-4736-a1e8-046736c22475", + "Name": null + }, + "1064435f-bc3f-4ab5-86ef-9c4e2ce0d8cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1064435f-bc3f-4ab5-86ef-9c4e2ce0d8cc", + "Name": "W18x40", + "EdgeId": 1057, + "ExternalEdgeId": 1057 + }, + "97533c8f-5966-47ba-a0be-c64dd35738b1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97533c8f-5966-47ba-a0be-c64dd35738b1", + "Name": null + }, + "e4b7c94a-f81d-4917-a6e7-19154823c805": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e4b7c94a-f81d-4917-a6e7-19154823c805", + "Name": "W18x40", + "EdgeId": 1062, + "ExternalEdgeId": 1062 + }, + "09c4971b-e5cb-4215-b128-45eda3433813": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09c4971b-e5cb-4215-b128-45eda3433813", + "Name": null + }, + "beb1ef4e-cb97-4d05-b750-cae86722bfe5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "beb1ef4e-cb97-4d05-b750-cae86722bfe5", + "Name": "W18x40", + "EdgeId": 1063, + "ExternalEdgeId": 1063 + }, + "92acd662-e306-4d5b-bdf0-30e4ab652210": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "92acd662-e306-4d5b-bdf0-30e4ab652210", + "Name": null + }, + "1ec03e95-eb8c-4585-a2c5-02c45cd66b50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1ec03e95-eb8c-4585-a2c5-02c45cd66b50", + "Name": "W18x40", + "EdgeId": 1068, + "ExternalEdgeId": 1068 + }, + "802825c3-ed25-45e0-a04e-0e4d827e0541": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "802825c3-ed25-45e0-a04e-0e4d827e0541", + "Name": null + }, + "024831f0-b74c-40b9-978a-699fe12c616e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "024831f0-b74c-40b9-978a-699fe12c616e", + "Name": "W18x40", + "EdgeId": 1069, + "ExternalEdgeId": 1069 + }, + "c5e4d3cf-ca69-4e87-b412-11a742db9a8e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5e4d3cf-ca69-4e87-b412-11a742db9a8e", + "Name": null + }, + "187b44aa-cfc6-4aba-97d5-ec7dec3ae4ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "187b44aa-cfc6-4aba-97d5-ec7dec3ae4ef", + "Name": "W18x40", + "EdgeId": 1076, + "ExternalEdgeId": 1076 + }, + "611cbf05-1da3-485d-b6cb-654dc0c54555": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "611cbf05-1da3-485d-b6cb-654dc0c54555", + "Name": null + }, + "3d248dc6-5a3c-44c8-b2f4-d7de43d857b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3d248dc6-5a3c-44c8-b2f4-d7de43d857b3", + "Name": "W18x40", + "EdgeId": 1077, + "ExternalEdgeId": 1077 + }, + "b46db0c6-c3c2-4213-8a2a-16ad7eaad69d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b46db0c6-c3c2-4213-8a2a-16ad7eaad69d", + "Name": null + }, + "f34b4850-ffd7-47eb-be95-9792c25c0733": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f34b4850-ffd7-47eb-be95-9792c25c0733", + "Name": "W18x40", + "EdgeId": 1078, + "ExternalEdgeId": 1078 + }, + "032ed244-4c60-402a-957b-1bd82fdec910": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "032ed244-4c60-402a-957b-1bd82fdec910", + "Name": null + }, + "5810d885-305f-42dd-8513-1d3c2a737daa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5810d885-305f-42dd-8513-1d3c2a737daa", + "Name": "W18x40", + "EdgeId": 1084, + "ExternalEdgeId": 1084 + }, + "c612bae5-4240-4b8c-9278-4ca6e904550f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c612bae5-4240-4b8c-9278-4ca6e904550f", + "Name": null + }, + "5118949c-7cc2-4973-a00f-a94da863bd41": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5118949c-7cc2-4973-a00f-a94da863bd41", + "Name": "W18x40", + "EdgeId": 1085, + "ExternalEdgeId": 1085 + }, + "aa787c70-926c-4233-b06c-6f04c3833999": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aa787c70-926c-4233-b06c-6f04c3833999", + "Name": null + }, + "9028e06e-6a51-4b62-ac9e-13c69457c5de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9028e06e-6a51-4b62-ac9e-13c69457c5de", + "Name": "W18x40", + "EdgeId": 1090, + "ExternalEdgeId": 1090 + }, + "98865673-61d3-4a80-9466-6513a3ca88fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "98865673-61d3-4a80-9466-6513a3ca88fa", + "Name": null + }, + "f3b26343-1ddf-4fe1-bc4b-5fe71233bc63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f3b26343-1ddf-4fe1-bc4b-5fe71233bc63", + "Name": "W18x40", + "EdgeId": 1091, + "ExternalEdgeId": 1091 + }, + "744d0008-e4fa-4613-82c8-54d440a2b431": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "744d0008-e4fa-4613-82c8-54d440a2b431", + "Name": null + }, + "afed523c-ea8b-49b2-ac48-197fbcdf05cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "afed523c-ea8b-49b2-ac48-197fbcdf05cb", + "Name": "W18x40", + "EdgeId": 1096, + "ExternalEdgeId": 1096 + }, + "f2d4b68b-7ff1-474e-b84e-376809fd6204": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2d4b68b-7ff1-474e-b84e-376809fd6204", + "Name": null + }, + "b7d778c8-bf39-4e50-886d-d96f51c232c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b7d778c8-bf39-4e50-886d-d96f51c232c4", + "Name": "W18x40", + "EdgeId": 1097, + "ExternalEdgeId": 1097 + }, + "1c58ef99-e6ef-4d3d-9f75-7e8c3f76216b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c58ef99-e6ef-4d3d-9f75-7e8c3f76216b", + "Name": null + }, + "523695b9-4db3-45d0-aa2b-9726ea2c687e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "523695b9-4db3-45d0-aa2b-9726ea2c687e", + "Name": "W18x40", + "EdgeId": 1102, + "ExternalEdgeId": 1102 + }, + "0e100606-1bfc-4a69-8a50-e464b1715fb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e100606-1bfc-4a69-8a50-e464b1715fb4", + "Name": null + }, + "f6e6d5fb-9011-4fce-856a-5531d17517e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f6e6d5fb-9011-4fce-856a-5531d17517e5", + "Name": "W18x40", + "EdgeId": 1103, + "ExternalEdgeId": 1103 + }, + "109f3366-a42b-4108-9e0e-4d092146ad2d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "109f3366-a42b-4108-9e0e-4d092146ad2d", + "Name": null + }, + "06a695f9-33db-4275-9ed6-6ab24f1b7d5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "06a695f9-33db-4275-9ed6-6ab24f1b7d5d", + "Name": "W18x40", + "EdgeId": 1110, + "ExternalEdgeId": 1110 + }, + "1a598a52-c112-448d-ae36-6060d5c3b8db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1a598a52-c112-448d-ae36-6060d5c3b8db", + "Name": null + }, + "ff8d58ae-1250-40ef-9efc-9d8d93fe210f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ff8d58ae-1250-40ef-9efc-9d8d93fe210f", + "Name": "W18x40", + "EdgeId": 1111, + "ExternalEdgeId": 1111 + }, + "b0cbb75b-ef17-431d-a588-38fcdd915df7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0cbb75b-ef17-431d-a588-38fcdd915df7", + "Name": null + }, + "4b655ede-2c4f-4872-9484-c3fe68376324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4b655ede-2c4f-4872-9484-c3fe68376324", + "Name": "W18x40", + "EdgeId": 1112, + "ExternalEdgeId": 1112 + }, + "95e50dbf-f04b-4409-b717-700a2779b620": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95e50dbf-f04b-4409-b717-700a2779b620", + "Name": null + }, + "6d67d031-8d8a-4597-9f85-bfc610289575": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6d67d031-8d8a-4597-9f85-bfc610289575", + "Name": "W18x40", + "EdgeId": 1118, + "ExternalEdgeId": 1118 + }, + "5f46b3b3-4cf0-4256-b453-27b01cab9f67": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f46b3b3-4cf0-4256-b453-27b01cab9f67", + "Name": null + }, + "68faa333-8a54-4377-baf5-cc022c013146": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "68faa333-8a54-4377-baf5-cc022c013146", + "Name": "W18x40", + "EdgeId": 1119, + "ExternalEdgeId": 1119 + }, + "53326853-5982-4ac1-bdc5-e5cef8c3a686": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53326853-5982-4ac1-bdc5-e5cef8c3a686", + "Name": null + }, + "ddd81600-a8f0-4a72-a38c-fdb9b6fc4fd5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ddd81600-a8f0-4a72-a38c-fdb9b6fc4fd5", + "Name": "W18x40", + "EdgeId": 1124, + "ExternalEdgeId": 1124 + }, + "68e28ab2-00b2-4b63-a569-13f4a46a86a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "68e28ab2-00b2-4b63-a569-13f4a46a86a3", + "Name": null + }, + "2a3074b5-e468-4f65-a93d-f7f9365d9cad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2a3074b5-e468-4f65-a93d-f7f9365d9cad", + "Name": "W18x40", + "EdgeId": 1125, + "ExternalEdgeId": 1125 + }, + "aad7fa2a-9081-4561-a963-6c7c20eb1fa4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aad7fa2a-9081-4561-a963-6c7c20eb1fa4", + "Name": null + }, + "151fe9cb-c75b-4dab-aef0-d615cd614234": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "151fe9cb-c75b-4dab-aef0-d615cd614234", + "Name": "W18x40", + "EdgeId": 1130, + "ExternalEdgeId": 1130 + }, + "57a22834-7313-48d6-b5ca-2c0d99d484fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "57a22834-7313-48d6-b5ca-2c0d99d484fa", + "Name": null + }, + "ce5a878c-d590-4c85-a750-48063db872fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ce5a878c-d590-4c85-a750-48063db872fe", + "Name": "W18x40", + "EdgeId": 1131, + "ExternalEdgeId": 1131 + }, + "90a9a41e-5559-4818-b679-12b0944a5b2e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "90a9a41e-5559-4818-b679-12b0944a5b2e", + "Name": null + }, + "c1d16bc0-9bbe-4518-8c13-7c7a16d175c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c1d16bc0-9bbe-4518-8c13-7c7a16d175c8", + "Name": "W18x40", + "EdgeId": 1136, + "ExternalEdgeId": 1136 + }, + "1c60aea2-e24f-4661-b48e-f393be79fbd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c60aea2-e24f-4661-b48e-f393be79fbd3", + "Name": null + }, + "757ae4ce-eab0-4f33-90ec-f6bc52e2cfce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "757ae4ce-eab0-4f33-90ec-f6bc52e2cfce", + "Name": "W18x40", + "EdgeId": 1137, + "ExternalEdgeId": 1137 + }, + "2faa0294-dc44-4d7f-8825-7bb4a04bcdeb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2faa0294-dc44-4d7f-8825-7bb4a04bcdeb", + "Name": null + }, + "ba999146-e65c-442e-91e9-eb65608079b8": { + "discriminator": "Elements.Geometry.Profiles.WideFlangeProfile", + "d": 0.34797999999999996, + "tw": 0.022098, + "bf": 0.3175, + "tf": 0.035559999999999994, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.15875, + "Y": -0.1254, + "Z": 0.0 + }, + { + "X": -0.15875, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": -0.011049, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": -0.011049, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": -0.15875, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": -0.15875, + "Y": -0.47337999999999997, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.47337999999999997, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": 0.011049, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": 0.011049, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.1254, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ba999146-e65c-442e-91e9-eb65608079b8", + "Name": "W12x152" + }, + "0a4b6575-3b0a-47a0-834e-6e427af090ca": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Name": "W12x152" + }, + "449114c8-aba4-45a1-ac2c-1deab031ba63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "449114c8-aba4-45a1-ac2c-1deab031ba63", + "Name": "W12x152", + "CellId": 1, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "84347875-374d-48bb-9ebc-b23333323928": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "84347875-374d-48bb-9ebc-b23333323928", + "Name": null + }, + "c30b6320-d3a9-4244-9b8e-ff895659beb0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Name": "W12x152" + }, + "0901f2b3-e657-4fcd-bcea-51ba11feff7e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0901f2b3-e657-4fcd-bcea-51ba11feff7e", + "Name": "W12x152", + "CellId": 1, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "434e5170-a2e4-489d-af09-6e2f56c8ec34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 0.0 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "434e5170-a2e4-489d-af09-6e2f56c8ec34", + "Name": null + }, + "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Name": "W12x152" + }, + "9bed612f-e237-4382-a50e-8ca5bbcfdd23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9bed612f-e237-4382-a50e-8ca5bbcfdd23", + "Name": "W12x152", + "CellId": 2, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6479ba6c-d57a-4b59-a288-f25cb6652175": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6479ba6c-d57a-4b59-a288-f25cb6652175", + "Name": null + }, + "3d231d2f-006e-4afd-bdb7-bc4274237b15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3d231d2f-006e-4afd-bdb7-bc4274237b15", + "Name": "W12x152", + "CellId": 2, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a754a688-2691-4a44-90a2-e6b6be1f78ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a754a688-2691-4a44-90a2-e6b6be1f78ce", + "Name": null + }, + "a9f4d907-24c1-4efc-9f62-773ee1029d41": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a9f4d907-24c1-4efc-9f62-773ee1029d41", + "Name": "W12x152", + "CellId": 2, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b4aa8881-1a7f-462e-b80e-b3e05a626a85": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4aa8881-1a7f-462e-b80e-b3e05a626a85", + "Name": null + }, + "671f5123-41bb-4c51-acf5-878316d496f4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "671f5123-41bb-4c51-acf5-878316d496f4", + "Name": "W12x152" + }, + "08c46ad5-a131-4196-8d2e-d01760fe677b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "08c46ad5-a131-4196-8d2e-d01760fe677b", + "Name": "W12x152", + "CellId": 3, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "58fa04fb-9784-434b-a2ef-a1ecec0dd2ef": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "58fa04fb-9784-434b-a2ef-a1ecec0dd2ef", + "Name": null + }, + "4e04d4c7-03f7-42ad-88c0-5ef8088bf0e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4e04d4c7-03f7-42ad-88c0-5ef8088bf0e1", + "Name": "W12x152", + "CellId": 3, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e33aff5e-7199-4d7d-b105-bf291daefb56": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e33aff5e-7199-4d7d-b105-bf291daefb56", + "Name": null + }, + "b835b073-27e7-4087-a023-3557ecf67ad3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Name": "W12x152" + }, + "b363be0f-c937-438f-9a6e-9150f75e36a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b363be0f-c937-438f-9a6e-9150f75e36a8", + "Name": "W12x152", + "CellId": 5, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ce741b06-e484-4ed0-92c0-7b9a0cf95480": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ce741b06-e484-4ed0-92c0-7b9a0cf95480", + "Name": null + }, + "907e56e7-f3df-4850-861c-b9c75d67e770": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "907e56e7-f3df-4850-861c-b9c75d67e770", + "Name": "W12x152", + "CellId": 5, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15b213ec-5c5b-41c3-aefe-d1c9d41c271a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15b213ec-5c5b-41c3-aefe-d1c9d41c271a", + "Name": null + }, + "d463367e-606b-478f-9829-18208e0b592e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7235999999999994, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7235999999999994, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d463367e-606b-478f-9829-18208e0b592e", + "Name": "W12x152" + }, + "81a8a73d-b5c5-4991-a557-2d6945472e50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "81a8a73d-b5c5-4991-a557-2d6945472e50", + "Name": "W12x152", + "CellId": 5, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a063db72-4c35-4e63-bb1d-2166750a058e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a063db72-4c35-4e63-bb1d-2166750a058e", + "Name": null + }, + "379c1421-dcff-429c-bbb2-600d8b5a79a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "379c1421-dcff-429c-bbb2-600d8b5a79a9", + "Name": "W12x152", + "CellId": 6, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "65bbc369-7924-40ff-afc9-a86a94605429": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "65bbc369-7924-40ff-afc9-a86a94605429", + "Name": null + }, + "6f8b4a01-2bb1-4f8a-a561-d55a9450046b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6f8b4a01-2bb1-4f8a-a561-d55a9450046b", + "Name": "W12x152", + "CellId": 6, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "52a037bc-05aa-4a65-940f-341b13c993bc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52a037bc-05aa-4a65-940f-341b13c993bc", + "Name": null + }, + "d05f8c24-bddf-412e-927e-fe6aebe03ecf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d05f8c24-bddf-412e-927e-fe6aebe03ecf", + "Name": "W12x152", + "CellId": 6, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a01e0837-5d91-4ad8-95d7-deae343fc12b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a01e0837-5d91-4ad8-95d7-deae343fc12b", + "Name": null + }, + "486bb3f6-862d-4f65-be5b-b0c46c466f22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "486bb3f6-862d-4f65-be5b-b0c46c466f22", + "Name": "W12x152", + "CellId": 7, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5f3cf050-e289-4113-94f6-ccae99edfe6f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f3cf050-e289-4113-94f6-ccae99edfe6f", + "Name": null + }, + "a0983a2e-fbc2-4c0d-a13d-719e5daf6304": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a0983a2e-fbc2-4c0d-a13d-719e5daf6304", + "Name": "W12x152", + "CellId": 7, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "30784c32-148f-4d5c-a040-a6461d8eb8cc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30784c32-148f-4d5c-a040-a6461d8eb8cc", + "Name": null + }, + "e9998d1f-f37e-4ec1-9a37-d6129df9567b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.1768466666666662, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.1768466666666662, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Name": "W12x152" + }, + "c81c4880-8791-458b-919f-e8e3bfec18f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c81c4880-8791-458b-919f-e8e3bfec18f9", + "Name": "W12x152", + "CellId": 8, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "634805b1-e125-4c91-80f7-420458d80c1a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 0.0 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "634805b1-e125-4c91-80f7-420458d80c1a", + "Name": null + }, + "48a4ab2f-6f28-414c-be2a-e0687d5249cc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.287953333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.287953333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Name": "W12x152" + }, + "a94f957d-f83c-4f67-99a4-39ec8b978fdb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a94f957d-f83c-4f67-99a4-39ec8b978fdb", + "Name": "W12x152", + "CellId": 8, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b52a05c9-634e-4088-b781-2b0991333f4b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b52a05c9-634e-4088-b781-2b0991333f4b", + "Name": null + }, + "96407be9-dfa2-4201-aedb-5e9af21811b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "96407be9-dfa2-4201-aedb-5e9af21811b8", + "Name": "W12x152", + "CellId": 9, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fde535c1-34ef-49eb-a1b3-0f629e2a5b86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fde535c1-34ef-49eb-a1b3-0f629e2a5b86", + "Name": null + }, + "9afa8a8d-5341-4990-ae7a-483622d2e033": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9afa8a8d-5341-4990-ae7a-483622d2e033", + "Name": "W12x152", + "CellId": 9, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "31d042c1-e5f3-4109-b9d4-aa3842be5912": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "31d042c1-e5f3-4109-b9d4-aa3842be5912", + "Name": null + }, + "80a53a2a-673b-475d-a044-c29ff8124ce7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80a53a2a-673b-475d-a044-c29ff8124ce7", + "Name": "W12x152", + "CellId": 9, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "53d9fcb7-193b-43ec-bf15-8016f74cc06d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53d9fcb7-193b-43ec-bf15-8016f74cc06d", + "Name": null + }, + "1f0d4419-51cc-41b4-9b9f-c8acb9e9b125": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1f0d4419-51cc-41b4-9b9f-c8acb9e9b125", + "Name": "W12x152", + "CellId": 10, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c9c94ef-9560-4b0b-96ca-5533c3e417e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c9c94ef-9560-4b0b-96ca-5533c3e417e6", + "Name": null + }, + "223e8f48-53b0-420d-9566-e42927f37af0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "223e8f48-53b0-420d-9566-e42927f37af0", + "Name": "W12x152", + "CellId": 10, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "294fd0b7-9dcf-4976-8694-c2d11915cf50": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "294fd0b7-9dcf-4976-8694-c2d11915cf50", + "Name": null + }, + "e7c8d611-9bd0-449e-895f-41b4f189df9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e7c8d611-9bd0-449e-895f-41b4f189df9a", + "Name": "W12x152", + "CellId": 10, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bf38e54e-58a5-4c93-8db0-d04ff1d2771f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bf38e54e-58a5-4c93-8db0-d04ff1d2771f", + "Name": null + }, + "072e735e-97cf-4835-abc3-37cfda558744": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "072e735e-97cf-4835-abc3-37cfda558744", + "Name": "W12x152", + "CellId": 11, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7613040a-6d75-42e2-8939-835b7786f804": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7613040a-6d75-42e2-8939-835b7786f804", + "Name": null + }, + "6452829f-e877-40a4-90b7-ca0cfd622257": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6452829f-e877-40a4-90b7-ca0cfd622257", + "Name": "W12x152", + "CellId": 11, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9dc97b70-3fc3-48f2-b69b-9c3b04287c3a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9dc97b70-3fc3-48f2-b69b-9c3b04287c3a", + "Name": null + }, + "55db97f8-49be-48d7-ae39-e4f3046bf020": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "55db97f8-49be-48d7-ae39-e4f3046bf020", + "Name": "W12x152", + "CellId": 12, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9fe0863f-78d5-4d02-bf09-54e101a052d4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fe0863f-78d5-4d02-bf09-54e101a052d4", + "Name": null + }, + "74b73145-d10e-494c-abfa-a1f4b4698f76": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "74b73145-d10e-494c-abfa-a1f4b4698f76", + "Name": "W12x152", + "CellId": 12, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "11170d2d-96d3-4bd4-8606-691d3fcb9ca9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11170d2d-96d3-4bd4-8606-691d3fcb9ca9", + "Name": null + }, + "a14957ee-e204-468a-8e80-821f5ea2eabc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.5246449507100976, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.5246449507100976, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Name": "W12x152" + }, + "eb1ab162-e201-4584-9488-fb3f8f7f8e8a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb1ab162-e201-4584-9488-fb3f8f7f8e8a", + "Name": "W12x152", + "CellId": 12, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "35a21f74-63e3-4b51-935f-da6596ad2349": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "35a21f74-63e3-4b51-935f-da6596ad2349", + "Name": null + }, + "32a38780-bc18-494e-a490-85bf4fd5b42e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "32a38780-bc18-494e-a490-85bf4fd5b42e", + "Name": "W12x152", + "CellId": 13, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b0be2b8a-66fb-447a-b94e-edbe55badf43": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0be2b8a-66fb-447a-b94e-edbe55badf43", + "Name": null + }, + "0a190965-7886-4017-a503-6254f1ce54f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0a190965-7886-4017-a503-6254f1ce54f8", + "Name": "W12x152", + "CellId": 13, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4646d504-8b54-4ce8-bb44-74e79029d746": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4646d504-8b54-4ce8-bb44-74e79029d746", + "Name": null + }, + "45807bf8-4758-46d0-8066-cbf9e1f2e20c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "45807bf8-4758-46d0-8066-cbf9e1f2e20c", + "Name": "W12x152", + "CellId": 13, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5f742c34-556a-4a25-a69e-bba30ef7bbcf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f742c34-556a-4a25-a69e-bba30ef7bbcf", + "Name": null + }, + "9d91550b-1cee-478a-9fe2-e68912aa699b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9d91550b-1cee-478a-9fe2-e68912aa699b", + "Name": "W12x152", + "CellId": 14, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc563825-c1d7-404f-85a9-cc4a1eb00218": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc563825-c1d7-404f-85a9-cc4a1eb00218", + "Name": null + }, + "53140030-acfc-4890-b228-8735aa9202ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "53140030-acfc-4890-b228-8735aa9202ec", + "Name": "W12x152", + "CellId": 14, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0bcd1f7f-852c-4738-8292-f30d29c6bf8e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0bcd1f7f-852c-4738-8292-f30d29c6bf8e", + "Name": null + }, + "537e2b30-223f-4bdb-82df-ad3e63cff89a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "537e2b30-223f-4bdb-82df-ad3e63cff89a", + "Name": "W12x152", + "CellId": 14, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fe87032c-8bc7-43b4-bdef-32ae4125b1fd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe87032c-8bc7-43b4-bdef-32ae4125b1fd", + "Name": null + }, + "6bb90384-e500-40b3-8cda-6dcf66b1e94e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6bb90384-e500-40b3-8cda-6dcf66b1e94e", + "Name": "W12x152", + "CellId": 15, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4c749511-44d6-4af3-9ab5-0d41047a43e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4c749511-44d6-4af3-9ab5-0d41047a43e6", + "Name": null + }, + "8ce4e6fa-3570-4962-a142-ab88971bfefd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8ce4e6fa-3570-4962-a142-ab88971bfefd", + "Name": "W12x152", + "CellId": 15, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8d727634-8a31-48dd-bbd9-2e3b15399bf9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8d727634-8a31-48dd-bbd9-2e3b15399bf9", + "Name": null + }, + "00428e4f-d368-4fa9-9b91-6b35a98db880": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.021913333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.021913333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Name": "W12x152" + }, + "ef687703-9143-444e-b4f2-6fb7a2b587c6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ef687703-9143-444e-b4f2-6fb7a2b587c6", + "Name": "W12x152", + "CellId": 16, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "88421fcd-5d63-45ff-aa16-74c52bd313c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 0.0 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "88421fcd-5d63-45ff-aa16-74c52bd313c5", + "Name": null + }, + "2a51b0ec-7a36-4993-b509-32bf4c52b9b4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.043826666666668, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.043826666666668, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Name": "W12x152" + }, + "41cbe9f7-e93a-4d2b-b79a-1be05425266a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "41cbe9f7-e93a-4d2b-b79a-1be05425266a", + "Name": "W12x152", + "CellId": 16, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "719b7363-b074-4045-9695-22f2ebe87ad8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 0.0 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "719b7363-b074-4045-9695-22f2ebe87ad8", + "Name": null + }, + "096908ac-1df9-4d07-9ac7-a8579865819d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "096908ac-1df9-4d07-9ac7-a8579865819d", + "Name": "W12x152", + "CellId": 17, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "713e84a5-f413-4098-81b8-b6e91f320a34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "713e84a5-f413-4098-81b8-b6e91f320a34", + "Name": null + }, + "7af7feb5-9f26-4d62-87f2-813f0b548bc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7af7feb5-9f26-4d62-87f2-813f0b548bc0", + "Name": "W12x152", + "CellId": 17, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0b367183-5431-4c29-a58c-561b71950836": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b367183-5431-4c29-a58c-561b71950836", + "Name": null + }, + "e382b529-e95d-44ca-acc6-4695c9e303ca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e382b529-e95d-44ca-acc6-4695c9e303ca", + "Name": "W12x152", + "CellId": 17, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "11db4bde-461c-41ee-8193-8281feefa892": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11db4bde-461c-41ee-8193-8281feefa892", + "Name": null + }, + "6ccd0013-a834-4d86-8b2d-84f9ecc9064c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6ccd0013-a834-4d86-8b2d-84f9ecc9064c", + "Name": "W12x152", + "CellId": 18, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "40f48473-8ee9-4897-a3df-83de50094edd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "40f48473-8ee9-4897-a3df-83de50094edd", + "Name": null + }, + "a50a119e-9b36-49b3-9f5f-b63b2b92c8de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a50a119e-9b36-49b3-9f5f-b63b2b92c8de", + "Name": "W12x152", + "CellId": 18, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fbf05b8e-60ae-48f7-b3de-3cf1f5496dc6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbf05b8e-60ae-48f7-b3de-3cf1f5496dc6", + "Name": null + }, + "f995d5db-874c-45e0-9699-c8711fa07656": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f995d5db-874c-45e0-9699-c8711fa07656", + "Name": "W12x152", + "CellId": 18, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "13249f6c-95d8-499a-b1ac-3274f9717251": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "13249f6c-95d8-499a-b1ac-3274f9717251", + "Name": null + }, + "2ec7b373-71f5-46da-b975-3d777eeb50ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2ec7b373-71f5-46da-b975-3d777eeb50ad", + "Name": "W12x152", + "CellId": 19, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c554a074-76b3-4f22-bed8-0ebd8a49da02": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c554a074-76b3-4f22-bed8-0ebd8a49da02", + "Name": null + }, + "26d090e7-433b-41b5-b58b-602168f54dda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "26d090e7-433b-41b5-b58b-602168f54dda", + "Name": "W12x152", + "CellId": 19, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0a922690-2b55-432a-a96c-a79d1c47e25a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a922690-2b55-432a-a96c-a79d1c47e25a", + "Name": null + }, + "70c341b7-d624-420b-bd31-5a7193407a1b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "70c341b7-d624-420b-bd31-5a7193407a1b", + "Name": "W12x152", + "CellId": 19, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0d79f155-a182-4615-b48e-32ee7f6f4e0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0d79f155-a182-4615-b48e-32ee7f6f4e0b", + "Name": null + }, + "7e27aeb9-8dcb-4c6d-80ce-236cf011cb84": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e27aeb9-8dcb-4c6d-80ce-236cf011cb84", + "Name": "W12x152", + "CellId": 20, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "796e4e6e-338b-4c02-a61d-4ed24e10b992": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "796e4e6e-338b-4c02-a61d-4ed24e10b992", + "Name": null + }, + "1adf6423-7aa3-422a-a23f-76a0a8db3419": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1adf6423-7aa3-422a-a23f-76a0a8db3419", + "Name": "W12x152", + "CellId": 20, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ca0c878a-7b20-4085-99c4-b81ce71979f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ca0c878a-7b20-4085-99c4-b81ce71979f9", + "Name": null + }, + "73eddbbd-42c3-458b-9597-f9bd49147a87": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "73eddbbd-42c3-458b-9597-f9bd49147a87", + "Name": "W12x152", + "CellId": 21, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1430d63a-a64c-4fa3-a94d-9419c60e68f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1430d63a-a64c-4fa3-a94d-9419c60e68f5", + "Name": null + }, + "c86c7794-702f-43dc-82a1-ccf5f1b5deea": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.799314197256791, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.799314197256791, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Name": "W12x152" + }, + "ae823504-a480-4343-a424-3f09806bc38f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ae823504-a480-4343-a424-3f09806bc38f", + "Name": "W12x152", + "CellId": 21, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "185a4fc8-23f1-4445-bcec-66e5cfaddde2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "185a4fc8-23f1-4445-bcec-66e5cfaddde2", + "Name": null + }, + "d27c8274-35d1-48e6-a623-33a7ddfb778f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.3996570986283956, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.3996570986283956, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Name": "W12x152" + }, + "150efd5e-2748-42a9-b38a-ff9706c24107": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "150efd5e-2748-42a9-b38a-ff9706c24107", + "Name": "W12x152", + "CellId": 21, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "66270b5d-8823-4729-9e96-635806fbf3c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "66270b5d-8823-4729-9e96-635806fbf3c6", + "Name": null + }, + "8e927082-1213-4ebd-8af8-ea2ede83306b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8e927082-1213-4ebd-8af8-ea2ede83306b", + "Name": "W12x152", + "CellId": 22, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f34a7472-5e0c-4307-994c-7e71c017cd3c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f34a7472-5e0c-4307-994c-7e71c017cd3c", + "Name": null + }, + "d0774240-8e91-4077-afc1-3e240fbaecc4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d0774240-8e91-4077-afc1-3e240fbaecc4", + "Name": "W12x152", + "CellId": 22, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3515422d-9e82-4ee1-a1e1-4afdad29545b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3515422d-9e82-4ee1-a1e1-4afdad29545b", + "Name": null + }, + "9f09a16c-5df6-4c7d-99ee-99d675eb7076": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9f09a16c-5df6-4c7d-99ee-99d675eb7076", + "Name": "W12x152", + "CellId": 22, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "94b2c49f-4aef-4cc6-af8d-418e00dfeab4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "94b2c49f-4aef-4cc6-af8d-418e00dfeab4", + "Name": null + }, + "d978b146-4c91-41ff-80df-b9e8fb255920": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d978b146-4c91-41ff-80df-b9e8fb255920", + "Name": "W12x152", + "CellId": 23, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "da48e726-ed32-4fa7-bb65-6f611857d70a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da48e726-ed32-4fa7-bb65-6f611857d70a", + "Name": null + }, + "11eb21f4-2a54-474c-b3e6-011a117ec662": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "11eb21f4-2a54-474c-b3e6-011a117ec662", + "Name": "W12x152", + "CellId": 23, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cff448d8-9482-47a7-b3c4-77b5cd3ec65a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cff448d8-9482-47a7-b3c4-77b5cd3ec65a", + "Name": null + }, + "32e12537-1518-4d48-992b-517ca6b4f0bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "32e12537-1518-4d48-992b-517ca6b4f0bb", + "Name": "W12x152", + "CellId": 23, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5c897942-8264-49f4-acb2-f0a6a22027ca": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c897942-8264-49f4-acb2-f0a6a22027ca", + "Name": null + }, + "9530151f-c2cb-47f9-9340-8d86fc0ef29c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9530151f-c2cb-47f9-9340-8d86fc0ef29c", + "Name": "W12x152", + "CellId": 24, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5cdfd673-d2f2-44bc-a5bf-ff3e46950256": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5cdfd673-d2f2-44bc-a5bf-ff3e46950256", + "Name": null + }, + "77c43644-dc3c-4c46-b2b4-0a4dcc64ac4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "77c43644-dc3c-4c46-b2b4-0a4dcc64ac4f", + "Name": "W12x152", + "CellId": 24, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "de83349c-f30c-4f37-8d56-ff23d8dcef2f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "de83349c-f30c-4f37-8d56-ff23d8dcef2f", + "Name": null + }, + "a4a12eba-f2ae-40d9-85d4-c66721437e9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a4a12eba-f2ae-40d9-85d4-c66721437e9f", + "Name": "W12x152", + "CellId": 24, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "36c45f6f-10af-4764-a3c9-fb840a7737e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "36c45f6f-10af-4764-a3c9-fb840a7737e6", + "Name": null + }, + "50576bdb-41bc-43f8-964c-af9495e3b331": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "50576bdb-41bc-43f8-964c-af9495e3b331", + "Name": "W12x152", + "CellId": 25, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "507f0f4d-5d6d-485b-9a18-ff81fe18ccc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "507f0f4d-5d6d-485b-9a18-ff81fe18ccc5", + "Name": null + }, + "7b6fd675-912b-4dde-a328-bae204f0ad7a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7b6fd675-912b-4dde-a328-bae204f0ad7a", + "Name": "W12x152", + "CellId": 25, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c038f132-fd60-4f08-bcf5-655d19117733": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c038f132-fd60-4f08-bcf5-655d19117733", + "Name": null + }, + "45494bc0-d354-40a6-9d9d-7933c9e00331": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "45494bc0-d354-40a6-9d9d-7933c9e00331", + "Name": "W12x152", + "CellId": 26, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a7b96791-9e77-4642-98a1-75c87267de1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a7b96791-9e77-4642-98a1-75c87267de1b", + "Name": null + }, + "a208744d-1c3a-4cd2-bb8f-14082699838f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a208744d-1c3a-4cd2-bb8f-14082699838f", + "Name": "W12x152", + "CellId": 26, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dda71185-3ffc-4b4b-b79e-23f4aaa9d3ca": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dda71185-3ffc-4b4b-b79e-23f4aaa9d3ca", + "Name": null + }, + "7e687872-ded4-48cd-8245-51f74404515c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e687872-ded4-48cd-8245-51f74404515c", + "Name": "W12x152", + "CellId": 26, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4e8c14c7-4008-4325-9ee2-ed9dac51efee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e8c14c7-4008-4325-9ee2-ed9dac51efee", + "Name": null + }, + "e4847f09-4b91-4e61-9379-9ee45e62c4e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e4847f09-4b91-4e61-9379-9ee45e62c4e0", + "Name": "W12x152", + "CellId": 27, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a209e7b8-c48d-4454-bc15-6a2401b89116": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a209e7b8-c48d-4454-bc15-6a2401b89116", + "Name": null + }, + "dae3bab9-0df0-473e-8d50-3d82a8d27a46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dae3bab9-0df0-473e-8d50-3d82a8d27a46", + "Name": "W12x152", + "CellId": 27, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1dbee02d-13f2-4056-83eb-966a267a952f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1dbee02d-13f2-4056-83eb-966a267a952f", + "Name": null + }, + "ec8a5c7f-9519-4aca-92e7-b6e58d02338d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec8a5c7f-9519-4aca-92e7-b6e58d02338d", + "Name": "W12x152", + "CellId": 27, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b783f26a-a206-45ed-be60-8a6647df0b2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b783f26a-a206-45ed-be60-8a6647df0b2b", + "Name": null + }, + "09d57c6a-425a-43fb-8316-a0ec9de7ba5c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "09d57c6a-425a-43fb-8316-a0ec9de7ba5c", + "Name": "W12x152", + "CellId": 28, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dae7d621-f7ab-4af7-ae9d-19cee40f808e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dae7d621-f7ab-4af7-ae9d-19cee40f808e", + "Name": null + }, + "bc9b0b17-5573-4b3f-a175-2657ed80643a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bc9b0b17-5573-4b3f-a175-2657ed80643a", + "Name": "W12x152", + "CellId": 28, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d6afdf8a-baa6-4438-8178-23cba308f0a0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d6afdf8a-baa6-4438-8178-23cba308f0a0", + "Name": null + }, + "fcc52638-f388-4d47-bfd0-745b142e0487": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fcc52638-f388-4d47-bfd0-745b142e0487", + "Name": "W12x152", + "CellId": 28, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c60a4a95-abec-478b-a76d-913fc8f0d88f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c60a4a95-abec-478b-a76d-913fc8f0d88f", + "Name": null + }, + "f3ee0cc1-3222-4845-9635-10e63227f319": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f3ee0cc1-3222-4845-9635-10e63227f319", + "Name": "W12x152", + "CellId": 29, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bcef46d8-677a-498f-a089-ea26f710c338": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bcef46d8-677a-498f-a089-ea26f710c338", + "Name": null + }, + "13c74fca-2e25-4b63-b3ad-e821b30b5df8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "13c74fca-2e25-4b63-b3ad-e821b30b5df8", + "Name": "W12x152", + "CellId": 29, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1cf3cc1-be2b-4791-9cf7-3a205ea6cc62": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1cf3cc1-be2b-4791-9cf7-3a205ea6cc62", + "Name": null + }, + "7c3ce826-496f-4c9d-98cb-d33004a59413": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7c3ce826-496f-4c9d-98cb-d33004a59413", + "Name": "W12x152", + "CellId": 29, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "91f7b08a-4c26-4576-aedf-eb76b03f1434": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91f7b08a-4c26-4576-aedf-eb76b03f1434", + "Name": null + }, + "47ed683f-61a5-48f1-9238-7232ab540b4d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "47ed683f-61a5-48f1-9238-7232ab540b4d", + "Name": "W12x152", + "CellId": 30, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ac5b2d66-73b0-441c-b75f-92a4024d5c2e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ac5b2d66-73b0-441c-b75f-92a4024d5c2e", + "Name": null + }, + "75d651b3-962f-4419-ba4b-3ee0ca67d410": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "75d651b3-962f-4419-ba4b-3ee0ca67d410", + "Name": "W12x152", + "CellId": 30, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "6ffa8756-8cc9-4c6f-b853-33672bf04b9f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6ffa8756-8cc9-4c6f-b853-33672bf04b9f", + "Name": null + }, + "51af5325-e2b1-492d-b6f5-40eab780def2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "51af5325-e2b1-492d-b6f5-40eab780def2", + "Name": "W12x152", + "CellId": 31, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bef307c2-51db-4bca-bebb-75ea102175ae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bef307c2-51db-4bca-bebb-75ea102175ae", + "Name": null + }, + "a2d43a20-26aa-43e7-ad44-6603b5475594": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a2d43a20-26aa-43e7-ad44-6603b5475594", + "Name": "W12x152", + "CellId": 31, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c00b4dda-8a7b-4046-b628-8a870e3cc223": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c00b4dda-8a7b-4046-b628-8a870e3cc223", + "Name": null + }, + "4bb5c6c3-bba0-4e94-a5cc-da6a39066226": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4bb5c6c3-bba0-4e94-a5cc-da6a39066226", + "Name": "W12x152", + "CellId": 31, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e71c5e31-532e-425f-8647-fd38007b8fbb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e71c5e31-532e-425f-8647-fd38007b8fbb", + "Name": null + }, + "28f03623-691d-49ed-b8c2-43c1dfcbdac4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28f03623-691d-49ed-b8c2-43c1dfcbdac4", + "Name": "W12x152", + "CellId": 32, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cfc5377f-9b99-4141-86ee-d6d5a8c77d50": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfc5377f-9b99-4141-86ee-d6d5a8c77d50", + "Name": null + }, + "c9231c44-34e0-41f1-bf2c-3eeec2e93c0c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c9231c44-34e0-41f1-bf2c-3eeec2e93c0c", + "Name": "W12x152", + "CellId": 32, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2254ec5c-dd41-4dcc-aaaf-8bfbc0e6f0fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2254ec5c-dd41-4dcc-aaaf-8bfbc0e6f0fc", + "Name": null + }, + "4722a9e0-781a-4ebb-b58a-19ef0fcb05e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4722a9e0-781a-4ebb-b58a-19ef0fcb05e8", + "Name": "W12x152", + "CellId": 32, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "38e0ceb2-e476-49c6-bf4c-2929c5207a39": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38e0ceb2-e476-49c6-bf4c-2929c5207a39", + "Name": null + }, + "521d5f5a-dc9d-4043-9e48-95cae654028c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "521d5f5a-dc9d-4043-9e48-95cae654028c", + "Name": "W12x152", + "CellId": 33, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d4d5f3e5-efe9-46fb-ab40-d41e667d7304": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d4d5f3e5-efe9-46fb-ab40-d41e667d7304", + "Name": null + }, + "8b9b12f9-cead-41a7-b3c8-90d2255ba341": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8b9b12f9-cead-41a7-b3c8-90d2255ba341", + "Name": "W12x152", + "CellId": 33, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2b91a5b9-6445-4500-9683-83bb0229bb29": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b91a5b9-6445-4500-9683-83bb0229bb29", + "Name": null + }, + "1f132686-6a0e-4aa5-a6f6-45e9ec98b930": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1f132686-6a0e-4aa5-a6f6-45e9ec98b930", + "Name": "W12x152", + "CellId": 33, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e21b5238-969f-439e-ac28-be8ed3b6e49b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e21b5238-969f-439e-ac28-be8ed3b6e49b", + "Name": null + }, + "04b9948e-e3a0-45eb-85ca-56a999587e53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "04b9948e-e3a0-45eb-85ca-56a999587e53", + "Name": "W12x152", + "CellId": 34, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "91898d1b-18e3-4992-a53d-7e3f4ac1fa70": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91898d1b-18e3-4992-a53d-7e3f4ac1fa70", + "Name": null + }, + "8ab06ea6-6b32-44d6-a59c-9209015c4cb3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8ab06ea6-6b32-44d6-a59c-9209015c4cb3", + "Name": "W12x152", + "CellId": 34, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "63de46ec-9197-4579-b669-1da517c2386a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63de46ec-9197-4579-b669-1da517c2386a", + "Name": null + }, + "c0397584-a924-4178-bf4a-0c502247ceda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c0397584-a924-4178-bf4a-0c502247ceda", + "Name": "W12x152", + "CellId": 34, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1d2ff49-e219-4efb-affc-0570b81243c7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1d2ff49-e219-4efb-affc-0570b81243c7", + "Name": null + }, + "d7d293f7-27f8-4f57-9d43-e2729fca35b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d7d293f7-27f8-4f57-9d43-e2729fca35b9", + "Name": "W12x152", + "CellId": 35, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "009a3c04-7e3a-48df-8427-f2131f4e144a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "009a3c04-7e3a-48df-8427-f2131f4e144a", + "Name": null + }, + "3b58dd3e-881e-4c7e-ab80-924948ae8c5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3b58dd3e-881e-4c7e-ab80-924948ae8c5a", + "Name": "W12x152", + "CellId": 35, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9983adec-488d-41d1-911a-fca8b52cd676": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9983adec-488d-41d1-911a-fca8b52cd676", + "Name": null + }, + "3978ae7b-3902-4c43-8242-64c8b3f264d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3978ae7b-3902-4c43-8242-64c8b3f264d9", + "Name": "W12x152", + "CellId": 36, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "266377a6-7a7e-435d-b2ce-4975ac80d6bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "266377a6-7a7e-435d-b2ce-4975ac80d6bf", + "Name": null + }, + "eb0f333e-04ed-4fdc-beef-254f0220d5b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb0f333e-04ed-4fdc-beef-254f0220d5b8", + "Name": "W12x152", + "CellId": 36, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e0bc6873-4b72-447d-b94a-6843dcaae93c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0bc6873-4b72-447d-b94a-6843dcaae93c", + "Name": null + }, + "f7beb439-c888-4b32-bd40-ffd4d3de7619": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f7beb439-c888-4b32-bd40-ffd4d3de7619", + "Name": "W12x152", + "CellId": 36, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "209f118b-c488-4497-89be-119d3045cd2f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "209f118b-c488-4497-89be-119d3045cd2f", + "Name": null + }, + "d0abd2c8-0137-4538-bce9-a3dc40cc61ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d0abd2c8-0137-4538-bce9-a3dc40cc61ec", + "Name": "W12x152", + "CellId": 37, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d02220a4-0bc3-4822-9bab-36ddeaf63fdc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d02220a4-0bc3-4822-9bab-36ddeaf63fdc", + "Name": null + }, + "11b1b5d6-6d4d-4044-8b42-b4a172675f42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "11b1b5d6-6d4d-4044-8b42-b4a172675f42", + "Name": "W12x152", + "CellId": 37, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dc8b3c26-dcaa-4bf3-824f-377fe4e2be72": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc8b3c26-dcaa-4bf3-824f-377fe4e2be72", + "Name": null + }, + "5bdd093c-be6f-4798-8e7e-50509a1d1027": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5bdd093c-be6f-4798-8e7e-50509a1d1027", + "Name": "W12x152", + "CellId": 37, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ae2d289f-ecdb-437b-9d79-5143b76fdbe4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae2d289f-ecdb-437b-9d79-5143b76fdbe4", + "Name": null + }, + "4dbaf034-8676-4d42-86b8-f5b58808dd1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4dbaf034-8676-4d42-86b8-f5b58808dd1d", + "Name": "W12x152", + "CellId": 38, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6a1595bf-5327-4d63-a808-b5df7d121c6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a1595bf-5327-4d63-a808-b5df7d121c6c", + "Name": null + }, + "401032fd-300d-4c1f-bb88-08004f58c78d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "401032fd-300d-4c1f-bb88-08004f58c78d", + "Name": "W12x152", + "CellId": 38, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "46aeb8af-ce91-458f-bb17-5d061dddf5ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "46aeb8af-ce91-458f-bb17-5d061dddf5ab", + "Name": null + }, + "f02a3449-c4ba-42d1-a80b-3f60d2ae4cac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f02a3449-c4ba-42d1-a80b-3f60d2ae4cac", + "Name": "W12x152", + "CellId": 38, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e5fbb417-902c-4ab9-9d0a-4ea91b5a9d72": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5fbb417-902c-4ab9-9d0a-4ea91b5a9d72", + "Name": null + }, + "28d80df9-8635-4aea-8858-f6688917c042": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28d80df9-8635-4aea-8858-f6688917c042", + "Name": "W12x152", + "CellId": 39, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "153b177f-7a25-464d-9c35-477e6a21b3b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "153b177f-7a25-464d-9c35-477e6a21b3b5", + "Name": null + }, + "9aa11d96-4c02-4bd6-a9f5-cb0ff1ae89e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9aa11d96-4c02-4bd6-a9f5-cb0ff1ae89e7", + "Name": "W12x152", + "CellId": 39, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "23f6302f-4943-4e3c-9e45-285e356f7b54": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23f6302f-4943-4e3c-9e45-285e356f7b54", + "Name": null + }, + "a0c519ce-9505-4648-aa29-ba28fc934e97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a0c519ce-9505-4648-aa29-ba28fc934e97", + "Name": "W12x152", + "CellId": 39, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "982d1253-9520-48bd-826f-85768f2746e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "982d1253-9520-48bd-826f-85768f2746e4", + "Name": null + }, + "6633755c-74a8-4b81-8a27-4bed972fe486": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6633755c-74a8-4b81-8a27-4bed972fe486", + "Name": "W12x152", + "CellId": 40, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9bd702cb-06a2-4907-9034-d1e2cb291833": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9bd702cb-06a2-4907-9034-d1e2cb291833", + "Name": null + }, + "5f1fc8d2-a4cd-4006-b093-f5b3f99acb01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5f1fc8d2-a4cd-4006-b093-f5b3f99acb01", + "Name": "W12x152", + "CellId": 40, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b62aef0d-663c-45d6-a596-bfb9efb82f3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b62aef0d-663c-45d6-a596-bfb9efb82f3f", + "Name": null + }, + "81ffe3d7-70c4-4c07-8a34-6fba513036d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "81ffe3d7-70c4-4c07-8a34-6fba513036d6", + "Name": "W12x152", + "CellId": 41, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "35261318-f9b4-4d2e-b7b9-e6586a0d5a5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "35261318-f9b4-4d2e-b7b9-e6586a0d5a5a", + "Name": null + }, + "f2a916d8-7814-4ad7-9a88-1f96d580a2a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f2a916d8-7814-4ad7-9a88-1f96d580a2a5", + "Name": "W12x152", + "CellId": 41, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dbf78bea-0448-4edf-86ed-668d1c2f6d7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dbf78bea-0448-4edf-86ed-668d1c2f6d7a", + "Name": null + }, + "84d82613-1663-47ed-b854-d61149a1ba45": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "84d82613-1663-47ed-b854-d61149a1ba45", + "Name": "W12x152", + "CellId": 41, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ffa65e98-279b-4838-bd1d-b61819892491": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ffa65e98-279b-4838-bd1d-b61819892491", + "Name": null + }, + "1defd089-935e-4a24-b99e-c13d0502a09d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1defd089-935e-4a24-b99e-c13d0502a09d", + "Name": "W12x152", + "CellId": 42, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3dda4dbd-8b8d-4638-b874-e8221e9f45ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3dda4dbd-8b8d-4638-b874-e8221e9f45ba", + "Name": null + }, + "8149523d-6285-4cd6-97fd-ad49a05bf490": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8149523d-6285-4cd6-97fd-ad49a05bf490", + "Name": "W12x152", + "CellId": 42, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0312cd53-fa86-4ac4-980b-e10998643044": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0312cd53-fa86-4ac4-980b-e10998643044", + "Name": null + }, + "25c866f6-b7be-4109-a373-06f2ad031549": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "25c866f6-b7be-4109-a373-06f2ad031549", + "Name": "W12x152", + "CellId": 42, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4a9110d6-0d5f-4f9d-9e82-218c1c256689": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a9110d6-0d5f-4f9d-9e82-218c1c256689", + "Name": null + }, + "6397a936-d1b9-48b0-91ce-7bc44c5f4f78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6397a936-d1b9-48b0-91ce-7bc44c5f4f78", + "Name": "W12x152", + "CellId": 43, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "538cc0e5-6b6f-4595-9f77-cd6478003329": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "538cc0e5-6b6f-4595-9f77-cd6478003329", + "Name": null + }, + "85bdf280-2915-4ad7-9914-188f075856c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "85bdf280-2915-4ad7-9914-188f075856c9", + "Name": "W12x152", + "CellId": 43, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ec630cc5-ff39-4cdc-bbbd-f587ca9bf7ad": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec630cc5-ff39-4cdc-bbbd-f587ca9bf7ad", + "Name": null + }, + "56752b61-d7a6-47b6-8072-47dc61e93793": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "56752b61-d7a6-47b6-8072-47dc61e93793", + "Name": "W12x152", + "CellId": 43, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "82d39ff1-998f-4a17-84e4-331393f50f34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "82d39ff1-998f-4a17-84e4-331393f50f34", + "Name": null + }, + "33b52d2b-f8a0-492b-8968-4ed518d6eee9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "33b52d2b-f8a0-492b-8968-4ed518d6eee9", + "Name": "W12x152", + "CellId": 44, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6a55ae0-7c22-425e-9ae8-595ba5d2803b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6a55ae0-7c22-425e-9ae8-595ba5d2803b", + "Name": null + }, + "1d409dbd-5056-42d8-aa40-2973d3e2d7c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1d409dbd-5056-42d8-aa40-2973d3e2d7c3", + "Name": "W12x152", + "CellId": 44, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "faf54d56-b8f3-4b07-b94b-604c1324f65c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "faf54d56-b8f3-4b07-b94b-604c1324f65c", + "Name": null + }, + "ec96e27f-b66b-445a-82cb-85bf8bc44063": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec96e27f-b66b-445a-82cb-85bf8bc44063", + "Name": "W12x152", + "CellId": 44, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b9441968-fa3c-4b93-aa8a-c22fd1a00435": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9441968-fa3c-4b93-aa8a-c22fd1a00435", + "Name": null + }, + "3048093c-84ba-4cdd-a861-f3fe3bf174ea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3048093c-84ba-4cdd-a861-f3fe3bf174ea", + "Name": "W12x152", + "CellId": 45, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b2990e62-17ab-4dcb-9238-910a7e181b75": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b2990e62-17ab-4dcb-9238-910a7e181b75", + "Name": null + }, + "5186e40a-234f-43c7-9df7-b18b53944bf3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5186e40a-234f-43c7-9df7-b18b53944bf3", + "Name": "W12x152", + "CellId": 45, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "faa6d2dc-4712-4f6c-8ed5-f08d0b9f9990": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "faa6d2dc-4712-4f6c-8ed5-f08d0b9f9990", + "Name": null + }, + "ff7a015a-8459-44a6-a363-543bb7a0ad23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ff7a015a-8459-44a6-a363-543bb7a0ad23", + "Name": "W12x152", + "CellId": 46, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15cdca0f-25aa-4287-9e32-85d1d91cfff8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15cdca0f-25aa-4287-9e32-85d1d91cfff8", + "Name": null + }, + "fab6a8d3-4942-4112-9ba7-ed958b4bbc2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fab6a8d3-4942-4112-9ba7-ed958b4bbc2b", + "Name": "W12x152", + "CellId": 46, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9a11745d-ed4c-4caf-84e0-8284a1a3e7ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a11745d-ed4c-4caf-84e0-8284a1a3e7ac", + "Name": null + }, + "0bce3971-c00b-4adc-8b73-e1b5881300a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0bce3971-c00b-4adc-8b73-e1b5881300a0", + "Name": "W12x152", + "CellId": 46, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "47151969-1411-4cd4-a8e7-0b12a144292c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47151969-1411-4cd4-a8e7-0b12a144292c", + "Name": null + }, + "54b14074-d71e-438e-81e2-ab436c2ff359": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "54b14074-d71e-438e-81e2-ab436c2ff359", + "Name": "W12x152", + "CellId": 47, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "feb5ef92-59c7-410b-99f9-00b0fca9415f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "feb5ef92-59c7-410b-99f9-00b0fca9415f", + "Name": null + }, + "d2705ada-62cf-4c15-b9e7-89039d07dcfe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d2705ada-62cf-4c15-b9e7-89039d07dcfe", + "Name": "W12x152", + "CellId": 47, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0041a7fe-72f5-4b49-a8ef-c6fa9da5136f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0041a7fe-72f5-4b49-a8ef-c6fa9da5136f", + "Name": null + }, + "d097b48a-7968-4c68-bfa5-888badba72a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d097b48a-7968-4c68-bfa5-888badba72a6", + "Name": "W12x152", + "CellId": 47, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d0c5af5f-1bd1-467a-affd-30d78ae2a10f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d0c5af5f-1bd1-467a-affd-30d78ae2a10f", + "Name": null + }, + "258b3022-b11f-4961-b5a2-6fff2538d5e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "258b3022-b11f-4961-b5a2-6fff2538d5e2", + "Name": "W12x152", + "CellId": 48, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e5334086-20d8-43d8-afcd-779e88da33a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5334086-20d8-43d8-afcd-779e88da33a9", + "Name": null + }, + "6e6b024b-64ed-471e-ac9b-008ac3d24ba1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6e6b024b-64ed-471e-ac9b-008ac3d24ba1", + "Name": "W12x152", + "CellId": 48, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dc7eb616-2236-4d18-9e2d-7c882556ee97": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc7eb616-2236-4d18-9e2d-7c882556ee97", + "Name": null + }, + "4bb67059-5567-471b-beb3-db6ca779f84e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4bb67059-5567-471b-beb3-db6ca779f84e", + "Name": "W12x152", + "CellId": 48, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "001a6dce-2246-4e22-83d1-73feb574d55f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "001a6dce-2246-4e22-83d1-73feb574d55f", + "Name": null + }, + "06fdb599-0bc9-43d3-9017-f88c3bc7fd88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "06fdb599-0bc9-43d3-9017-f88c3bc7fd88", + "Name": "W12x152", + "CellId": 49, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "341ac4e5-c785-4871-905d-a558945e0340": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "341ac4e5-c785-4871-905d-a558945e0340", + "Name": null + }, + "6fd0dcd2-2419-4329-80b7-e20af2dfdb74": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6fd0dcd2-2419-4329-80b7-e20af2dfdb74", + "Name": "W12x152", + "CellId": 49, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ea4d4086-ba12-4519-bbb5-8a9000e2ab82": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea4d4086-ba12-4519-bbb5-8a9000e2ab82", + "Name": null + }, + "7701b0d6-8e86-4a06-a93a-8acdc7941c8b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7701b0d6-8e86-4a06-a93a-8acdc7941c8b", + "Name": "W12x152", + "CellId": 49, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4fa85be3-f0a4-48f6-8852-742df1089b7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4fa85be3-f0a4-48f6-8852-742df1089b7a", + "Name": null + }, + "1f90d02b-8571-4f67-afe2-24a28461f9dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1f90d02b-8571-4f67-afe2-24a28461f9dc", + "Name": "W12x152", + "CellId": 50, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "87fe4c99-5d96-4e17-bfc0-049056f687e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87fe4c99-5d96-4e17-bfc0-049056f687e3", + "Name": null + }, + "32ad6738-92e1-4538-a30b-635baf62844e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "32ad6738-92e1-4538-a30b-635baf62844e", + "Name": "W12x152", + "CellId": 50, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b2080833-e891-4dd1-9754-20b1fbdaf1f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b2080833-e891-4dd1-9754-20b1fbdaf1f3", + "Name": null + }, + "e8935f23-dd81-4ea7-bf7d-f5e2ad573662": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e8935f23-dd81-4ea7-bf7d-f5e2ad573662", + "Name": "W12x152", + "CellId": 51, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e8125461-d3f9-4b89-a188-46993d6aa68d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8125461-d3f9-4b89-a188-46993d6aa68d", + "Name": null + }, + "c7863400-3b54-493a-8faa-38df573f3405": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c7863400-3b54-493a-8faa-38df573f3405", + "Name": "W12x152", + "CellId": 51, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c77bcd6b-6571-4605-b316-fe4d1f5e2486": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c77bcd6b-6571-4605-b316-fe4d1f5e2486", + "Name": null + }, + "0455ce8d-663f-4318-aad5-0273f391f0de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0455ce8d-663f-4318-aad5-0273f391f0de", + "Name": "W12x152", + "CellId": 51, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "36cb2c1d-0483-40d4-8cb0-a5761f913dac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "36cb2c1d-0483-40d4-8cb0-a5761f913dac", + "Name": null + }, + "7600ab4a-8e78-4509-bb27-31e149b89521": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7600ab4a-8e78-4509-bb27-31e149b89521", + "Name": "W12x152", + "CellId": 52, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb4ca93f-0a6e-425d-8c4a-6636016e8459": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb4ca93f-0a6e-425d-8c4a-6636016e8459", + "Name": null + }, + "00d95ddf-1c46-4185-a929-a31e677bf546": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "00d95ddf-1c46-4185-a929-a31e677bf546", + "Name": "W12x152", + "CellId": 52, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e7e849a6-dac6-478e-a435-adfa132a5cf5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e7e849a6-dac6-478e-a435-adfa132a5cf5", + "Name": null + }, + "690009a1-6505-410a-bc6c-9868cdb0666e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "690009a1-6505-410a-bc6c-9868cdb0666e", + "Name": "W12x152", + "CellId": 52, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b625663c-6efb-4989-80f1-38e0519fab1f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b625663c-6efb-4989-80f1-38e0519fab1f", + "Name": null + }, + "15100931-1975-43c6-991b-5d63b38d6121": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "15100931-1975-43c6-991b-5d63b38d6121", + "Name": "W12x152", + "CellId": 53, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "17961a87-10bc-4933-affc-e5b725a2b2b9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "17961a87-10bc-4933-affc-e5b725a2b2b9", + "Name": null + }, + "d8243927-456e-40f2-8664-99435be45590": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d8243927-456e-40f2-8664-99435be45590", + "Name": "W12x152", + "CellId": 53, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "70dccfe1-19d9-446c-ba4c-e407b7665f98": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "70dccfe1-19d9-446c-ba4c-e407b7665f98", + "Name": null + }, + "075ba440-62c6-4b8b-a21c-82e3cb321e5f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "075ba440-62c6-4b8b-a21c-82e3cb321e5f", + "Name": "W12x152", + "CellId": 53, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "465388dd-8bb2-49f9-83ee-5e5c40dc351c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "465388dd-8bb2-49f9-83ee-5e5c40dc351c", + "Name": null + }, + "637a75a3-2d39-4442-930e-18f572fcdab2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "637a75a3-2d39-4442-930e-18f572fcdab2", + "Name": "W12x152", + "CellId": 54, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f1f386b-a948-493b-aaa5-f520eda392de": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f1f386b-a948-493b-aaa5-f520eda392de", + "Name": null + }, + "0964864d-4de1-4504-a3f3-f1be62322303": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0964864d-4de1-4504-a3f3-f1be62322303", + "Name": "W12x152", + "CellId": 54, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "788cc98b-c790-4090-a5b3-2cf6d735d915": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "788cc98b-c790-4090-a5b3-2cf6d735d915", + "Name": null + }, + "f0a1ec0a-34d1-4cf0-aeb2-55e6775acdbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f0a1ec0a-34d1-4cf0-aeb2-55e6775acdbb", + "Name": "W12x152", + "CellId": 54, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5c2ba50c-d268-407a-b3fa-424a3aff5b4e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c2ba50c-d268-407a-b3fa-424a3aff5b4e", + "Name": null + }, + "968f45da-4b94-4439-8f65-786a8c2c82bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "968f45da-4b94-4439-8f65-786a8c2c82bc", + "Name": "W12x152", + "CellId": 55, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9a769399-8a56-49d8-9dc7-7a28897dd8eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a769399-8a56-49d8-9dc7-7a28897dd8eb", + "Name": null + }, + "80d4719d-16d2-4c85-abc7-2c9bf1c9062f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80d4719d-16d2-4c85-abc7-2c9bf1c9062f", + "Name": "W12x152", + "CellId": 55, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e0227426-93d4-4c10-9641-ba01a1b25013": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0227426-93d4-4c10-9641-ba01a1b25013", + "Name": null + }, + "6701434d-0f43-4246-8fc0-421add9c4114": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6701434d-0f43-4246-8fc0-421add9c4114", + "Name": "W12x152", + "CellId": 56, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "fa62210f-3d65-4b42-90bc-d2c9550d00a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 4.5 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa62210f-3d65-4b42-90bc-d2c9550d00a2", + "Name": null + }, + "55b9bef1-cc8f-4fc0-8160-e9c175b12363": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "55b9bef1-cc8f-4fc0-8160-e9c175b12363", + "Name": "W12x152", + "CellId": 56, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "fa279c34-e83f-48c1-89ad-f82b855a07a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 4.5 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa279c34-e83f-48c1-89ad-f82b855a07a3", + "Name": null + }, + "b261ade4-365e-4274-a1b2-bb9f2e4399ea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b261ade4-365e-4274-a1b2-bb9f2e4399ea", + "Name": "W12x152", + "CellId": 57, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3c028b52-430a-4892-911a-df5bd0dc4492": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c028b52-430a-4892-911a-df5bd0dc4492", + "Name": null + }, + "2ad7ec5a-6b8f-49bc-a1f4-592ecfe3d430": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2ad7ec5a-6b8f-49bc-a1f4-592ecfe3d430", + "Name": "W12x152", + "CellId": 57, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ed853a84-b441-4419-9c02-38391678d16c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed853a84-b441-4419-9c02-38391678d16c", + "Name": null + }, + "c5616dd2-01d9-455a-8dae-bf1a3e1df618": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c5616dd2-01d9-455a-8dae-bf1a3e1df618", + "Name": "W12x152", + "CellId": 57, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dd32bd8f-19ae-46f3-a1d4-69931b5fab33": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd32bd8f-19ae-46f3-a1d4-69931b5fab33", + "Name": null + }, + "ce6c1c76-0402-40ec-a4a6-5739e5bebdb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ce6c1c76-0402-40ec-a4a6-5739e5bebdb0", + "Name": "W12x152", + "CellId": 58, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0cbe0dc7-9d97-46f9-9aab-85b721d12dea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0cbe0dc7-9d97-46f9-9aab-85b721d12dea", + "Name": null + }, + "396986ce-fdd9-4e55-9803-3f40f334b605": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "396986ce-fdd9-4e55-9803-3f40f334b605", + "Name": "W12x152", + "CellId": 58, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a5f9b05d-6042-44a6-81dd-fd14baa81b26": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a5f9b05d-6042-44a6-81dd-fd14baa81b26", + "Name": null + }, + "b3f3256f-e85a-4c39-8456-7f7db0909cbd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b3f3256f-e85a-4c39-8456-7f7db0909cbd", + "Name": "W12x152", + "CellId": 60, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a93f0007-a3c0-4bdd-8602-5b81f4ee15b9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a93f0007-a3c0-4bdd-8602-5b81f4ee15b9", + "Name": null + }, + "619afdb1-6256-4100-a479-e72b85ddb8d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "619afdb1-6256-4100-a479-e72b85ddb8d7", + "Name": "W12x152", + "CellId": 60, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "09cb8cd4-ee2b-4010-8d00-fddb0bb2c0dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09cb8cd4-ee2b-4010-8d00-fddb0bb2c0dd", + "Name": null + }, + "83bc39ab-b84a-4605-b9d1-7bd340157ecb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "83bc39ab-b84a-4605-b9d1-7bd340157ecb", + "Name": "W12x152", + "CellId": 60, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7bcc7b5f-a821-4961-842e-1d49d2bd924b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7bcc7b5f-a821-4961-842e-1d49d2bd924b", + "Name": null + }, + "fb504016-2527-4dad-b430-898193a2a808": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fb504016-2527-4dad-b430-898193a2a808", + "Name": "W12x152", + "CellId": 61, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c26c2b26-077b-4fa3-96b3-f8d0772adf48": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c26c2b26-077b-4fa3-96b3-f8d0772adf48", + "Name": null + }, + "1dedd239-f930-4799-a4a2-3ec4dc482d0f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1dedd239-f930-4799-a4a2-3ec4dc482d0f", + "Name": "W12x152", + "CellId": 61, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "68869671-7da9-43c6-ad06-fd254e03bd04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "68869671-7da9-43c6-ad06-fd254e03bd04", + "Name": null + }, + "a507e084-1bbf-40e5-9008-5a244321c8c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a507e084-1bbf-40e5-9008-5a244321c8c9", + "Name": "W12x152", + "CellId": 61, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3e7a6f04-3b8d-4752-89b7-2d65a9b8c63d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3e7a6f04-3b8d-4752-89b7-2d65a9b8c63d", + "Name": null + }, + "561a7c11-8eb7-414e-93b3-064e99c27024": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "561a7c11-8eb7-414e-93b3-064e99c27024", + "Name": "W12x152", + "CellId": 62, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0f07076a-f4c8-46ff-8c75-14c538502b11": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0f07076a-f4c8-46ff-8c75-14c538502b11", + "Name": null + }, + "593ac25c-f4cd-4f0c-bc54-1286d139fef4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "593ac25c-f4cd-4f0c-bc54-1286d139fef4", + "Name": "W12x152", + "CellId": 62, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3c0330fb-e6fd-4ea6-9a94-72f074c3d0be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c0330fb-e6fd-4ea6-9a94-72f074c3d0be", + "Name": null + }, + "d5e236ee-8fd5-4394-9ec2-963c2d7d7dc2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d5e236ee-8fd5-4394-9ec2-963c2d7d7dc2", + "Name": "W12x152", + "CellId": 63, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "1c829662-b34d-48e2-827f-b944f894d46c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 4.5 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c829662-b34d-48e2-827f-b944f894d46c", + "Name": null + }, + "0a3921b5-8260-4ec0-9e21-5d23d7706107": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0a3921b5-8260-4ec0-9e21-5d23d7706107", + "Name": "W12x152", + "CellId": 63, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a0dbc267-3a59-44e9-bda6-9a3c40211482": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a0dbc267-3a59-44e9-bda6-9a3c40211482", + "Name": null + }, + "b44d84ab-0c0c-4ff5-816a-237a24954bf0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b44d84ab-0c0c-4ff5-816a-237a24954bf0", + "Name": "W12x152", + "CellId": 64, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0c0ac027-58cc-4653-a763-f0a6ad80eab1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c0ac027-58cc-4653-a763-f0a6ad80eab1", + "Name": null + }, + "f3e2deb1-5266-4012-a2fe-6b3980208a9d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f3e2deb1-5266-4012-a2fe-6b3980208a9d", + "Name": "W12x152", + "CellId": 64, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "187270af-2998-465d-8803-c94142b6b374": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "187270af-2998-465d-8803-c94142b6b374", + "Name": null + }, + "f4ae489d-2ea4-49ef-89e1-daf21f599be7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f4ae489d-2ea4-49ef-89e1-daf21f599be7", + "Name": "W12x152", + "CellId": 64, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b558d81-2d62-45ba-8fa8-ae6848d3cfa9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b558d81-2d62-45ba-8fa8-ae6848d3cfa9", + "Name": null + }, + "d4cf8946-a98d-4965-b70e-c621562d9bdc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d4cf8946-a98d-4965-b70e-c621562d9bdc", + "Name": "W12x152", + "CellId": 65, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "384a95c6-4953-46fa-b771-6f672153c731": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "384a95c6-4953-46fa-b771-6f672153c731", + "Name": null + }, + "aa4f7acd-cdd7-4fb9-819e-f790b6c87622": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "aa4f7acd-cdd7-4fb9-819e-f790b6c87622", + "Name": "W12x152", + "CellId": 65, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fd91afa9-d003-4d87-8299-b62124f26285": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fd91afa9-d003-4d87-8299-b62124f26285", + "Name": null + }, + "f13cb1cc-45eb-46d7-a1ad-ca7ac1c0f613": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f13cb1cc-45eb-46d7-a1ad-ca7ac1c0f613", + "Name": "W12x152", + "CellId": 65, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97199b05-25d4-4f57-92a1-a5d55f0bde36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97199b05-25d4-4f57-92a1-a5d55f0bde36", + "Name": null + }, + "16ad6ad7-fe6d-4074-a6d5-253d3d759b79": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "16ad6ad7-fe6d-4074-a6d5-253d3d759b79", + "Name": "W12x152", + "CellId": 66, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "dd9cf534-54ef-4b97-af2a-e5dd0d4bb853": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd9cf534-54ef-4b97-af2a-e5dd0d4bb853", + "Name": null + }, + "cf08ea34-f3d6-47dc-9502-1089b294828b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cf08ea34-f3d6-47dc-9502-1089b294828b", + "Name": "W12x152", + "CellId": 66, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b1bb3b10-90d7-48f2-8318-1bfb91b6dfce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1bb3b10-90d7-48f2-8318-1bfb91b6dfce", + "Name": null + }, + "5387c4d5-641f-4bac-a9c6-6259305d7787": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5387c4d5-641f-4bac-a9c6-6259305d7787", + "Name": "W12x152", + "CellId": 67, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7413e4a7-ed66-467c-a440-73d9e3be0b4a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7413e4a7-ed66-467c-a440-73d9e3be0b4a", + "Name": null + }, + "31670057-d19b-4857-a81f-584a52e80a4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "31670057-d19b-4857-a81f-584a52e80a4c", + "Name": "W12x152", + "CellId": 67, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0e3b7d71-85cb-47c2-9179-bd4fc7d4b2b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e3b7d71-85cb-47c2-9179-bd4fc7d4b2b0", + "Name": null + }, + "0c33af87-2d2c-4039-aafe-fd070c760e90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0c33af87-2d2c-4039-aafe-fd070c760e90", + "Name": "W12x152", + "CellId": 67, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c8e64bc-97f7-4e16-a58d-4e930eebfc62": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c8e64bc-97f7-4e16-a58d-4e930eebfc62", + "Name": null + }, + "84b99e41-0bd6-49f2-a31f-345b4c7fe62a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "84b99e41-0bd6-49f2-a31f-345b4c7fe62a", + "Name": "W12x152", + "CellId": 68, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3aec494c-22f6-4806-8e62-dac0f8956738": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3aec494c-22f6-4806-8e62-dac0f8956738", + "Name": null + }, + "5c4364fd-a54d-467e-b4ea-a977a7f455fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5c4364fd-a54d-467e-b4ea-a977a7f455fa", + "Name": "W12x152", + "CellId": 68, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8b4af1e4-d2e0-4f47-ae08-a058ecebfab1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8b4af1e4-d2e0-4f47-ae08-a058ecebfab1", + "Name": null + }, + "584198b5-38c5-4905-b375-cd8c3bb74cd3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "584198b5-38c5-4905-b375-cd8c3bb74cd3", + "Name": "W12x152", + "CellId": 68, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c921e919-9129-413d-8167-6436911aab30": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c921e919-9129-413d-8167-6436911aab30", + "Name": null + }, + "0f977749-1e6a-4b94-8dd5-92cd801508e6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0f977749-1e6a-4b94-8dd5-92cd801508e6", + "Name": "W12x152", + "CellId": 69, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9fbc3ea3-67b6-4638-a3e8-a0607df86e16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fbc3ea3-67b6-4638-a3e8-a0607df86e16", + "Name": null + }, + "c99b9077-2dfb-4357-aeb8-88c50b2e28df": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c99b9077-2dfb-4357-aeb8-88c50b2e28df", + "Name": "W12x152", + "CellId": 69, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "96b4ac7e-0c48-46cb-a449-71956a0b00d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "96b4ac7e-0c48-46cb-a449-71956a0b00d3", + "Name": null + }, + "6143794a-f527-4389-8969-2288540ddb06": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6143794a-f527-4389-8969-2288540ddb06", + "Name": "W12x152", + "CellId": 69, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3d5cfaf9-d5f3-493f-9a1f-77de7f77a3d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3d5cfaf9-d5f3-493f-9a1f-77de7f77a3d7", + "Name": null + }, + "e9a53ced-f7fd-4c27-97df-0659dcec6f5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e9a53ced-f7fd-4c27-97df-0659dcec6f5a", + "Name": "W12x152", + "CellId": 70, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e0ec27ac-bfc3-4d43-bbde-234a262529f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0ec27ac-bfc3-4d43-bbde-234a262529f9", + "Name": null + }, + "e67e7c2f-4f6c-4888-a0dd-1b5a87c0f1d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e67e7c2f-4f6c-4888-a0dd-1b5a87c0f1d7", + "Name": "W12x152", + "CellId": 70, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "16379624-1663-4e12-aee8-04fb723bc2c3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "16379624-1663-4e12-aee8-04fb723bc2c3", + "Name": null + }, + "de17ad04-469e-42a8-89a6-68b273095909": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "de17ad04-469e-42a8-89a6-68b273095909", + "Name": "W12x152", + "CellId": 71, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "80a77184-39e3-4051-9413-677980823a6d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 4.5 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80a77184-39e3-4051-9413-677980823a6d", + "Name": null + }, + "455c663c-ba94-4218-b4f9-f751b931fb58": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "455c663c-ba94-4218-b4f9-f751b931fb58", + "Name": "W12x152", + "CellId": 71, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "784cd6a2-5278-451e-a627-8b0de0665249": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 4.5 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "784cd6a2-5278-451e-a627-8b0de0665249", + "Name": null + }, + "a46a60c9-261c-4731-b26f-83039fec692b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a46a60c9-261c-4731-b26f-83039fec692b", + "Name": "W12x152", + "CellId": 72, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "39e5e052-ac85-4db4-9af2-3dcaa6ec765f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "39e5e052-ac85-4db4-9af2-3dcaa6ec765f", + "Name": null + }, + "1e202d8a-3a21-49e2-bf9d-e4b6c177e437": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1e202d8a-3a21-49e2-bf9d-e4b6c177e437", + "Name": "W12x152", + "CellId": 72, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2a1f2e64-9736-4479-9325-f622a3b7c674": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2a1f2e64-9736-4479-9325-f622a3b7c674", + "Name": null + }, + "ee069bf7-c16f-4d4e-91b5-054a7aff4278": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ee069bf7-c16f-4d4e-91b5-054a7aff4278", + "Name": "W12x152", + "CellId": 72, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8f04c1d6-b90d-49ee-b10f-63bea865cbcc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8f04c1d6-b90d-49ee-b10f-63bea865cbcc", + "Name": null + }, + "7297ec1a-8930-4e06-a866-31fb8d94d186": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7297ec1a-8930-4e06-a866-31fb8d94d186", + "Name": "W12x152", + "CellId": 73, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f0cf8f2d-73e9-4b97-b838-24fdcbec3068": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f0cf8f2d-73e9-4b97-b838-24fdcbec3068", + "Name": null + }, + "e26b9d77-9456-4938-94fe-278794ddfae2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e26b9d77-9456-4938-94fe-278794ddfae2", + "Name": "W12x152", + "CellId": 73, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "87873f2a-a7ba-459d-b78c-eb877ee54129": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87873f2a-a7ba-459d-b78c-eb877ee54129", + "Name": null + }, + "cb2520cf-e040-4f08-91b8-7dea1e8aaa3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cb2520cf-e040-4f08-91b8-7dea1e8aaa3f", + "Name": "W12x152", + "CellId": 73, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bb053993-6d3b-4807-abef-6536a0c9f798": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bb053993-6d3b-4807-abef-6536a0c9f798", + "Name": null + }, + "c2bc8e95-3dac-4fd9-b50d-0fb57ff6ccef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2bc8e95-3dac-4fd9-b50d-0fb57ff6ccef", + "Name": "W12x152", + "CellId": 74, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9fddaf8e-3717-4e3b-b29d-7ec212ddf88d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fddaf8e-3717-4e3b-b29d-7ec212ddf88d", + "Name": null + }, + "1ba5e032-d676-418d-bc69-d1b8f5ea05c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1ba5e032-d676-418d-bc69-d1b8f5ea05c3", + "Name": "W12x152", + "CellId": 74, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a43995ae-ab4a-4b6b-9696-8e32bd8d7da7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a43995ae-ab4a-4b6b-9696-8e32bd8d7da7", + "Name": null + }, + "650bbc29-361f-48d5-bb33-3a53b6523c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "650bbc29-361f-48d5-bb33-3a53b6523c70", + "Name": "W12x152", + "CellId": 74, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1ad125a4-d6ba-420e-b4d1-ebc91ef566aa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ad125a4-d6ba-420e-b4d1-ebc91ef566aa", + "Name": null + }, + "db6462b2-4ec0-4687-82a4-8048e8dee909": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "db6462b2-4ec0-4687-82a4-8048e8dee909", + "Name": "W12x152", + "CellId": 75, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e0f35987-516b-402b-9745-8f25b8cad172": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0f35987-516b-402b-9745-8f25b8cad172", + "Name": null + }, + "49307561-c298-4bab-bf15-d6b5b8cb24c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "49307561-c298-4bab-bf15-d6b5b8cb24c1", + "Name": "W12x152", + "CellId": 75, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "d80a7e53-a017-4385-a070-826b0c263816": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d80a7e53-a017-4385-a070-826b0c263816", + "Name": null + }, + "7ed98e55-424b-4007-95bd-766d79b88516": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7ed98e55-424b-4007-95bd-766d79b88516", + "Name": "W12x152", + "CellId": 76, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d5f29363-2a98-460c-9ff9-4a17d2469386": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d5f29363-2a98-460c-9ff9-4a17d2469386", + "Name": null + }, + "d784f63f-d237-4ecc-9d75-d482131f64af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d784f63f-d237-4ecc-9d75-d482131f64af", + "Name": "W12x152", + "CellId": 76, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b0484559-5740-4c9c-ada2-0b2be1cd57ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0484559-5740-4c9c-ada2-0b2be1cd57ed", + "Name": null + }, + "cedf693a-2b2b-4779-acd4-09643f472bb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cedf693a-2b2b-4779-acd4-09643f472bb8", + "Name": "W12x152", + "CellId": 76, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "24e17091-89e4-4c6f-9814-563b4ef3b4c7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "24e17091-89e4-4c6f-9814-563b4ef3b4c7", + "Name": null + }, + "091fb905-c39f-4a71-ab72-6977e34a1b01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "091fb905-c39f-4a71-ab72-6977e34a1b01", + "Name": "W12x152", + "CellId": 77, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "da578b44-6d47-47bb-a5cf-a809ea3c76b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da578b44-6d47-47bb-a5cf-a809ea3c76b0", + "Name": null + }, + "08ac7b3a-7dcd-4196-a189-9ac2f093982c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "08ac7b3a-7dcd-4196-a189-9ac2f093982c", + "Name": "W12x152", + "CellId": 77, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7fe6c584-2a56-4aa0-8e62-7af19e04bf5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7fe6c584-2a56-4aa0-8e62-7af19e04bf5a", + "Name": null + }, + "530a41da-cf00-4aed-ad4c-040f592a9739": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "530a41da-cf00-4aed-ad4c-040f592a9739", + "Name": "W12x152", + "CellId": 77, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9506b85e-fbd5-49b8-8582-332db31df0d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9506b85e-fbd5-49b8-8582-332db31df0d3", + "Name": null + }, + "e96bea8b-8554-452d-b3eb-1254958e5cfc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e96bea8b-8554-452d-b3eb-1254958e5cfc", + "Name": "W12x152", + "CellId": 78, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97e39633-5e59-4689-8edb-0d00d60a345f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97e39633-5e59-4689-8edb-0d00d60a345f", + "Name": null + }, + "ac4cf273-fb35-4567-9aaf-935618c9861d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ac4cf273-fb35-4567-9aaf-935618c9861d", + "Name": "W12x152", + "CellId": 78, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "414482aa-3ada-467e-923b-1e5128b5ae1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "414482aa-3ada-467e-923b-1e5128b5ae1b", + "Name": null + }, + "7d4edaec-5a71-43a4-b59c-225ff1c9d24b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7d4edaec-5a71-43a4-b59c-225ff1c9d24b", + "Name": "W12x152", + "CellId": 78, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9ff6e2dc-6e80-4c26-b47a-36ba5fd395d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ff6e2dc-6e80-4c26-b47a-36ba5fd395d9", + "Name": null + }, + "e25a8f0b-0e07-4280-9447-23cf0348081c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e25a8f0b-0e07-4280-9447-23cf0348081c", + "Name": "W12x152", + "CellId": 79, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f0e254c4-1ed7-4afd-9601-7baf69ff1d59": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f0e254c4-1ed7-4afd-9601-7baf69ff1d59", + "Name": null + }, + "80552cf6-b8f4-4f21-a3e4-1444243061c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "80552cf6-b8f4-4f21-a3e4-1444243061c1", + "Name": "W12x152", + "CellId": 79, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f7734bf-68d8-404b-a87d-d410ef575ff4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f7734bf-68d8-404b-a87d-d410ef575ff4", + "Name": null + }, + "f189330e-e564-4a61-82e5-0c962217dc42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f189330e-e564-4a61-82e5-0c962217dc42", + "Name": "W12x152", + "CellId": 79, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ea8a0107-23da-46a5-9b38-5f482d4d34ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea8a0107-23da-46a5-9b38-5f482d4d34ab", + "Name": null + }, + "a62fbb4f-299f-409b-9b9a-3559f8211089": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a62fbb4f-299f-409b-9b9a-3559f8211089", + "Name": "W12x152", + "CellId": 80, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3753f0c9-bab2-4580-97b7-aad88b9e4c9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3753f0c9-bab2-4580-97b7-aad88b9e4c9a", + "Name": null + }, + "8cd88dc3-de4b-464f-9945-1c99751c5bce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8cd88dc3-de4b-464f-9945-1c99751c5bce", + "Name": "W12x152", + "CellId": 80, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9bf0167c-0909-4b79-ba21-accb7302dd0e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9bf0167c-0909-4b79-ba21-accb7302dd0e", + "Name": null + }, + "8a87f8ff-be8a-45ba-b196-dc0146b1c551": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8a87f8ff-be8a-45ba-b196-dc0146b1c551", + "Name": "W12x152", + "CellId": 81, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1adbd266-7dda-4d9d-9bf9-90bb07d57701": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1adbd266-7dda-4d9d-9bf9-90bb07d57701", + "Name": null + }, + "472e5628-0755-4f92-8813-b55e66c28c8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "472e5628-0755-4f92-8813-b55e66c28c8e", + "Name": "W12x152", + "CellId": 81, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "854a4e3b-cefd-4249-b29b-353a925154fe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "854a4e3b-cefd-4249-b29b-353a925154fe", + "Name": null + }, + "4b004e60-701e-4c19-9fb2-128459ab6123": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4b004e60-701e-4c19-9fb2-128459ab6123", + "Name": "W12x152", + "CellId": 81, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d9c2cf32-d0c9-43cb-97fe-0c4fd300acd4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9c2cf32-d0c9-43cb-97fe-0c4fd300acd4", + "Name": null + }, + "ca675512-8c0d-4db3-a211-7136c759c266": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ca675512-8c0d-4db3-a211-7136c759c266", + "Name": "W12x152", + "CellId": 82, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b62f0523-7bbb-43b5-9f51-e52e45719a9b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b62f0523-7bbb-43b5-9f51-e52e45719a9b", + "Name": null + }, + "57a4d532-95d8-40d8-8a3c-dadb9b91a0da": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "57a4d532-95d8-40d8-8a3c-dadb9b91a0da", + "Name": "W12x152", + "CellId": 82, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "99a9443c-366b-4fe3-a162-03568add5f0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "99a9443c-366b-4fe3-a162-03568add5f0a", + "Name": null + }, + "72084327-e840-4655-a77f-2871e994016a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "72084327-e840-4655-a77f-2871e994016a", + "Name": "W12x152", + "CellId": 82, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f7f1f50-1aaa-4ef9-9927-767dda547f45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f7f1f50-1aaa-4ef9-9927-767dda547f45", + "Name": null + }, + "985fa069-73da-4cd4-ac80-e591de4cf05c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "985fa069-73da-4cd4-ac80-e591de4cf05c", + "Name": "W12x152", + "CellId": 83, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ec420055-0334-45c8-98f1-6779c70b378a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec420055-0334-45c8-98f1-6779c70b378a", + "Name": null + }, + "2f9f55e3-94c9-48ce-a437-c01fb86bd48b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2f9f55e3-94c9-48ce-a437-c01fb86bd48b", + "Name": "W12x152", + "CellId": 83, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b51973f-d6eb-4581-a6d4-268af1870004": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b51973f-d6eb-4581-a6d4-268af1870004", + "Name": null + }, + "fb5d3aeb-b06a-4636-a922-83aed27a3387": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fb5d3aeb-b06a-4636-a922-83aed27a3387", + "Name": "W12x152", + "CellId": 83, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b4ab9755-d182-4c52-adcd-cc613b4a06f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4ab9755-d182-4c52-adcd-cc613b4a06f2", + "Name": null + }, + "868f23f3-1290-4469-a2f6-910b831a8d60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "868f23f3-1290-4469-a2f6-910b831a8d60", + "Name": "W12x152", + "CellId": 84, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41291649-1152-4e1a-8409-e383dfcbe338": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41291649-1152-4e1a-8409-e383dfcbe338", + "Name": null + }, + "ebf92b45-666c-4324-b75b-2c14136d32e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ebf92b45-666c-4324-b75b-2c14136d32e1", + "Name": "W12x152", + "CellId": 84, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "abe68cd4-6bae-40e9-8abc-6c2abc977f11": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "abe68cd4-6bae-40e9-8abc-6c2abc977f11", + "Name": null + }, + "8f10cee7-dd74-4dd6-aad3-df3c4c03397c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8f10cee7-dd74-4dd6-aad3-df3c4c03397c", + "Name": "W12x152", + "CellId": 84, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b00d8de5-3502-4844-bcd0-344594843576": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b00d8de5-3502-4844-bcd0-344594843576", + "Name": null + }, + "9445e30c-847e-4c80-97e7-64c8054fe149": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9445e30c-847e-4c80-97e7-64c8054fe149", + "Name": "W12x152", + "CellId": 85, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4d4ba358-61a9-4350-9730-fa258ddfbefe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d4ba358-61a9-4350-9730-fa258ddfbefe", + "Name": null + }, + "db87897e-ef58-4f5e-b0fd-4c151c2ba0c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "db87897e-ef58-4f5e-b0fd-4c151c2ba0c8", + "Name": "W12x152", + "CellId": 85, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7c93273e-adca-4a6e-a724-7f9675976203": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c93273e-adca-4a6e-a724-7f9675976203", + "Name": null + }, + "7fa620a2-b6dc-45ae-9342-cfd6795811a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7fa620a2-b6dc-45ae-9342-cfd6795811a5", + "Name": "W12x152", + "CellId": 86, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4f1a4b96-9ad9-4a15-bee8-89590395f206": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f1a4b96-9ad9-4a15-bee8-89590395f206", + "Name": null + }, + "ba1080b3-b4df-4de2-9a4a-a6a663b76798": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ba1080b3-b4df-4de2-9a4a-a6a663b76798", + "Name": "W12x152", + "CellId": 86, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "20559687-8984-4eb1-8f25-a8b3ad56688d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20559687-8984-4eb1-8f25-a8b3ad56688d", + "Name": null + }, + "b15a372d-354a-475a-b958-e163e1d920e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b15a372d-354a-475a-b958-e163e1d920e2", + "Name": "W12x152", + "CellId": 86, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5e4bd655-1f7d-474e-b876-8dc2a249a7d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e4bd655-1f7d-474e-b876-8dc2a249a7d9", + "Name": null + }, + "23f16ac2-62c4-48e6-a50c-960b7d2f6751": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "23f16ac2-62c4-48e6-a50c-960b7d2f6751", + "Name": "W12x152", + "CellId": 87, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bda08893-2a23-4f30-9da6-0a4ffb947f7b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bda08893-2a23-4f30-9da6-0a4ffb947f7b", + "Name": null + }, + "f176bd91-c733-492b-ac66-7bb438e3c090": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f176bd91-c733-492b-ac66-7bb438e3c090", + "Name": "W12x152", + "CellId": 87, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cdfc1ab5-6e50-40a0-9c45-e7722fbc3933": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cdfc1ab5-6e50-40a0-9c45-e7722fbc3933", + "Name": null + }, + "09112f5d-ef48-49ba-b91b-04c03d22594f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "09112f5d-ef48-49ba-b91b-04c03d22594f", + "Name": "W12x152", + "CellId": 87, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "89010543-17ad-4758-848d-c8d4877595ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "89010543-17ad-4758-848d-c8d4877595ac", + "Name": null + }, + "94363c3e-a4b8-46da-b129-cb0507f73066": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "94363c3e-a4b8-46da-b129-cb0507f73066", + "Name": "W12x152", + "CellId": 88, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "019d2053-f00f-458a-bb0f-8948b7de9a57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "019d2053-f00f-458a-bb0f-8948b7de9a57", + "Name": null + }, + "b8125327-c8fc-4a48-a65b-a3f7c36e64ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b8125327-c8fc-4a48-a65b-a3f7c36e64ed", + "Name": "W12x152", + "CellId": 88, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b3cc45b-0ed4-40b4-81c4-1b3234085cc7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b3cc45b-0ed4-40b4-81c4-1b3234085cc7", + "Name": null + }, + "81f26160-5a66-4a2f-922d-1b6684694155": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "81f26160-5a66-4a2f-922d-1b6684694155", + "Name": "W12x152", + "CellId": 88, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ae112366-a67d-490a-bd3e-55ed10c9f41e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae112366-a67d-490a-bd3e-55ed10c9f41e", + "Name": null + }, + "d543905f-9bb0-44eb-8362-b7069bdd7f88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d543905f-9bb0-44eb-8362-b7069bdd7f88", + "Name": "W12x152", + "CellId": 89, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "26a09e4b-04c5-4ec8-9c67-60854b917bfe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "26a09e4b-04c5-4ec8-9c67-60854b917bfe", + "Name": null + }, + "d56f7076-a85d-40da-8d05-a52a58172ebf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d56f7076-a85d-40da-8d05-a52a58172ebf", + "Name": "W12x152", + "CellId": 89, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a774e18b-b2a0-4b07-ab44-6035a8264e3d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a774e18b-b2a0-4b07-ab44-6035a8264e3d", + "Name": null + }, + "eeee4bb5-f8e7-4dc0-ac5d-292f8378964b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "eeee4bb5-f8e7-4dc0-ac5d-292f8378964b", + "Name": "W12x152", + "CellId": 89, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7c118b03-7249-497b-9f90-c6041a4a383d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c118b03-7249-497b-9f90-c6041a4a383d", + "Name": null + }, + "f68066ec-1877-4e38-b50c-36448a79bc89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f68066ec-1877-4e38-b50c-36448a79bc89", + "Name": "W12x152", + "CellId": 90, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7caa3bbb-62c5-4a11-83a6-dd57eb0a4bd4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7caa3bbb-62c5-4a11-83a6-dd57eb0a4bd4", + "Name": null + }, + "20ac14d8-b8e8-4dd2-b07b-ce446884fee7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "20ac14d8-b8e8-4dd2-b07b-ce446884fee7", + "Name": "W12x152", + "CellId": 90, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3a4b5ec0-3a25-4002-b48f-a4be5102b9c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3a4b5ec0-3a25-4002-b48f-a4be5102b9c6", + "Name": null + }, + "38138424-49fb-44e8-9777-235820e76b22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "38138424-49fb-44e8-9777-235820e76b22", + "Name": "W12x152", + "CellId": 91, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b1c0296f-0f88-47e2-b6ae-a6af15dded0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1c0296f-0f88-47e2-b6ae-a6af15dded0a", + "Name": null + }, + "2fad153e-9477-40fd-a125-7e6376368ae2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2fad153e-9477-40fd-a125-7e6376368ae2", + "Name": "W12x152", + "CellId": 91, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5c6b6dd4-f899-436b-a5b6-a9c46fdce0d2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c6b6dd4-f899-436b-a5b6-a9c46fdce0d2", + "Name": null + }, + "a8a2c8da-7f0c-41f0-9af6-436eda3f16c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a8a2c8da-7f0c-41f0-9af6-436eda3f16c1", + "Name": "W12x152", + "CellId": 91, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c45e9c45-30a2-4a97-9263-3ae640d8372d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c45e9c45-30a2-4a97-9263-3ae640d8372d", + "Name": null + }, + "7cf524c8-fc77-4f27-bca7-473b36d12b1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7cf524c8-fc77-4f27-bca7-473b36d12b1d", + "Name": "W12x152", + "CellId": 92, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c0ac59dd-60c0-45a5-9ac3-40ffac5b2917": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0ac59dd-60c0-45a5-9ac3-40ffac5b2917", + "Name": null + }, + "ff8a7d3d-6f6c-4fe3-98b8-5a50b5e87068": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ff8a7d3d-6f6c-4fe3-98b8-5a50b5e87068", + "Name": "W12x152", + "CellId": 92, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a83824af-3cc6-488f-84d1-28f7d6216a57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a83824af-3cc6-488f-84d1-28f7d6216a57", + "Name": null + }, + "6a82be05-61ec-4069-b8a4-de89ae3fda0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6a82be05-61ec-4069-b8a4-de89ae3fda0a", + "Name": "W12x152", + "CellId": 92, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4fb0d988-92dd-4e1b-a4f9-03a336a74fd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4fb0d988-92dd-4e1b-a4f9-03a336a74fd3", + "Name": null + }, + "d7e8efdd-a6ee-4635-9b8c-647d93363dc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d7e8efdd-a6ee-4635-9b8c-647d93363dc5", + "Name": "W12x152", + "CellId": 93, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7a959eb8-c56a-4b41-9f28-654a87af8109": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7a959eb8-c56a-4b41-9f28-654a87af8109", + "Name": null + }, + "c17fb3d7-9c48-43cc-94b3-bfd7ba0f27d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c17fb3d7-9c48-43cc-94b3-bfd7ba0f27d9", + "Name": "W12x152", + "CellId": 93, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f8a5c277-d7da-47e9-b14c-dec597c481c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8a5c277-d7da-47e9-b14c-dec597c481c5", + "Name": null + }, + "6dd32a3f-72b4-4bb6-8d13-f3d524d3bd66": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6dd32a3f-72b4-4bb6-8d13-f3d524d3bd66", + "Name": "W12x152", + "CellId": 93, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "09bffa52-dfc0-4b59-9df7-7d176961036c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09bffa52-dfc0-4b59-9df7-7d176961036c", + "Name": null + }, + "61a79c6e-e17d-4f13-aedc-72f8b9e015be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "61a79c6e-e17d-4f13-aedc-72f8b9e015be", + "Name": "W12x152", + "CellId": 94, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "12d365b6-514a-438c-bc3e-8c202b3e99d4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12d365b6-514a-438c-bc3e-8c202b3e99d4", + "Name": null + }, + "bdd92973-7732-41bb-a80d-a014af1261d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "bdd92973-7732-41bb-a80d-a014af1261d7", + "Name": "W12x152", + "CellId": 94, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a33203aa-e6f9-4a0b-ad0b-42b98347fba7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a33203aa-e6f9-4a0b-ad0b-42b98347fba7", + "Name": null + }, + "fd0237e9-c517-4181-b5f7-8417a7076732": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fd0237e9-c517-4181-b5f7-8417a7076732", + "Name": "W12x152", + "CellId": 94, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "11b132e1-f8f5-4ecd-9797-1e651bc3506e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11b132e1-f8f5-4ecd-9797-1e651bc3506e", + "Name": null + }, + "88c0bce7-14e9-41f8-a83f-e4e0f1094500": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "88c0bce7-14e9-41f8-a83f-e4e0f1094500", + "Name": "W12x152", + "CellId": 95, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "50ed8ef2-9b42-416e-b21d-47f4ea876549": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "50ed8ef2-9b42-416e-b21d-47f4ea876549", + "Name": null + }, + "06e6dcb7-08ef-4fec-8a5d-c6713d48a875": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "06e6dcb7-08ef-4fec-8a5d-c6713d48a875", + "Name": "W12x152", + "CellId": 95, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e97f2ad6-2970-41dd-a919-28efba655418": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e97f2ad6-2970-41dd-a919-28efba655418", + "Name": null + }, + "dbde0c7d-fced-4a97-af72-7f94e2924fae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dbde0c7d-fced-4a97-af72-7f94e2924fae", + "Name": "W12x152", + "CellId": 96, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "301e84bb-be71-41d9-81ea-f571b7394ae3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "301e84bb-be71-41d9-81ea-f571b7394ae3", + "Name": null + }, + "c809277a-ba5f-464a-b7bf-d048b82ab525": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c809277a-ba5f-464a-b7bf-d048b82ab525", + "Name": "W12x152", + "CellId": 96, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3122c236-62ac-4a60-92cb-95e4f4e70970": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3122c236-62ac-4a60-92cb-95e4f4e70970", + "Name": null + }, + "8751bfbc-a4f5-48a4-b6a5-c2ed184cb1a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8751bfbc-a4f5-48a4-b6a5-c2ed184cb1a1", + "Name": "W12x152", + "CellId": 96, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bdd2b692-5881-4c1a-af43-e655599a9f44": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bdd2b692-5881-4c1a-af43-e655599a9f44", + "Name": null + }, + "a74b840c-153b-4020-bdb7-9f759e19c8f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a74b840c-153b-4020-bdb7-9f759e19c8f3", + "Name": "W12x152", + "CellId": 97, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "244ad100-5f95-4498-ba8f-333fe0c58bd5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "244ad100-5f95-4498-ba8f-333fe0c58bd5", + "Name": null + }, + "2575bbc0-9b83-4291-ae23-20c037d2ee36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2575bbc0-9b83-4291-ae23-20c037d2ee36", + "Name": "W12x152", + "CellId": 97, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "837e1ce8-893c-401a-85d4-889df3853395": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "837e1ce8-893c-401a-85d4-889df3853395", + "Name": null + }, + "587a874e-df36-47f7-8635-7987ac97e02d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "587a874e-df36-47f7-8635-7987ac97e02d", + "Name": "W12x152", + "CellId": 97, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44b647e6-c7d6-4b75-aaee-59abc10fb6fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44b647e6-c7d6-4b75-aaee-59abc10fb6fa", + "Name": null + }, + "9c084920-181e-41a4-9ad7-c799fa151ad0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9c084920-181e-41a4-9ad7-c799fa151ad0", + "Name": "W12x152", + "CellId": 98, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "48e1b4c6-e8e1-4372-88b2-40b185215f1e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "48e1b4c6-e8e1-4372-88b2-40b185215f1e", + "Name": null + }, + "94db9086-a9aa-4033-9d5b-169625df35d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "94db9086-a9aa-4033-9d5b-169625df35d1", + "Name": "W12x152", + "CellId": 98, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1283e5e3-a934-4884-b3aa-b490828f6a71": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1283e5e3-a934-4884-b3aa-b490828f6a71", + "Name": null + }, + "a3b42194-d84a-417e-b15c-fb4bc8b51172": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a3b42194-d84a-417e-b15c-fb4bc8b51172", + "Name": "W12x152", + "CellId": 98, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d06b1a55-4a6f-43a9-88f1-def7e9245cc1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d06b1a55-4a6f-43a9-88f1-def7e9245cc1", + "Name": null + }, + "12534ec3-e53c-4e63-87ee-c0e95681540e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "12534ec3-e53c-4e63-87ee-c0e95681540e", + "Name": "W12x152", + "CellId": 99, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1e55747-a38f-454a-a77e-7c275dc8c5a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1e55747-a38f-454a-a77e-7c275dc8c5a6", + "Name": null + }, + "7323d451-4b4a-490a-bb76-5095e26e7339": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7323d451-4b4a-490a-bb76-5095e26e7339", + "Name": "W12x152", + "CellId": 99, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5a07d18e-75d2-4595-a2a7-431a9779534a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a07d18e-75d2-4595-a2a7-431a9779534a", + "Name": null + }, + "c13167f9-cf5f-4b2b-94cf-fcee1f813e84": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c13167f9-cf5f-4b2b-94cf-fcee1f813e84", + "Name": "W12x152", + "CellId": 99, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8caca0eb-72e4-4b43-9770-59cb5a5a0eba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8caca0eb-72e4-4b43-9770-59cb5a5a0eba", + "Name": null + }, + "41497c5d-0a8f-4378-a1ae-1a37cfc72681": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "41497c5d-0a8f-4378-a1ae-1a37cfc72681", + "Name": "W12x152", + "CellId": 100, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "94298309-a51a-4a9d-b1b8-d8061f7dc00f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "94298309-a51a-4a9d-b1b8-d8061f7dc00f", + "Name": null + }, + "837d20c4-4135-4375-a81c-becb22b2a525": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "837d20c4-4135-4375-a81c-becb22b2a525", + "Name": "W12x152", + "CellId": 100, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "340ced0e-99c1-4c32-ac13-86ff3b8edc1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "340ced0e-99c1-4c32-ac13-86ff3b8edc1b", + "Name": null + }, + "c32f35f1-02c5-435d-aa77-702076dd9f5e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c32f35f1-02c5-435d-aa77-702076dd9f5e", + "Name": "W12x152", + "CellId": 101, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "38358a67-2305-43fd-bdd4-430cc4e7d185": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38358a67-2305-43fd-bdd4-430cc4e7d185", + "Name": null + }, + "dde3e699-9b9b-4bb6-8fb2-36efc017f185": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dde3e699-9b9b-4bb6-8fb2-36efc017f185", + "Name": "W12x152", + "CellId": 101, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ffd2a201-49f3-4313-b03a-0d3fcf53f692": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ffd2a201-49f3-4313-b03a-0d3fcf53f692", + "Name": null + }, + "fa768417-3f39-4dd0-9ef7-a5abfd9cad8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa768417-3f39-4dd0-9ef7-a5abfd9cad8d", + "Name": "W12x152", + "CellId": 101, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "715abb32-aa67-4fa5-9a71-3a0e2c9cc34d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "715abb32-aa67-4fa5-9a71-3a0e2c9cc34d", + "Name": null + }, + "fcfc3fdc-cc09-4bb0-9301-3107b2ec09b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fcfc3fdc-cc09-4bb0-9301-3107b2ec09b5", + "Name": "W12x152", + "CellId": 102, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b12350f1-93ae-4b4e-aef9-a9d11f1cc70b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b12350f1-93ae-4b4e-aef9-a9d11f1cc70b", + "Name": null + }, + "1c3e85bc-eaf8-4789-917d-ebaacc3e04ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1c3e85bc-eaf8-4789-917d-ebaacc3e04ed", + "Name": "W12x152", + "CellId": 102, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7c3fa944-3bca-4553-bb3d-3540c4ef9c3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c3fa944-3bca-4553-bb3d-3540c4ef9c3f", + "Name": null + }, + "c2bb8067-8ce2-4716-b0ea-9e51c0de32bf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2bb8067-8ce2-4716-b0ea-9e51c0de32bf", + "Name": "W12x152", + "CellId": 102, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f47c0ba6-5258-4b98-9fc9-d55fe50ca776": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f47c0ba6-5258-4b98-9fc9-d55fe50ca776", + "Name": null + }, + "5e1921c2-f48e-46f3-b70a-9f96018cdef6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5e1921c2-f48e-46f3-b70a-9f96018cdef6", + "Name": "W12x152", + "CellId": 103, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "249e9edd-f462-4649-a02d-c0b800b5fba0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "249e9edd-f462-4649-a02d-c0b800b5fba0", + "Name": null + }, + "907e0a99-3385-4927-9c5c-c8f4c2cc8f99": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "907e0a99-3385-4927-9c5c-c8f4c2cc8f99", + "Name": "W12x152", + "CellId": 103, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "12109cc3-adb8-4d14-9c58-9f277a41a3d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12109cc3-adb8-4d14-9c58-9f277a41a3d6", + "Name": null + }, + "66065b78-d1bd-4579-ae78-8fc8846db8b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "66065b78-d1bd-4579-ae78-8fc8846db8b9", + "Name": "W12x152", + "CellId": 103, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dd464f5c-3bbc-4f04-8ebb-5662c92e7145": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd464f5c-3bbc-4f04-8ebb-5662c92e7145", + "Name": null + }, + "e4a57ee6-905f-4152-89f9-0fff0df94503": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e4a57ee6-905f-4152-89f9-0fff0df94503", + "Name": "W12x152", + "CellId": 104, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7a0b6646-0627-438a-a68c-f0a10ec10b23": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7a0b6646-0627-438a-a68c-f0a10ec10b23", + "Name": null + }, + "dd6302d9-223a-4ec1-811b-0f230ed02c6d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dd6302d9-223a-4ec1-811b-0f230ed02c6d", + "Name": "W12x152", + "CellId": 104, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8777b188-5cd0-4d77-a99d-173aa1fd47a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8777b188-5cd0-4d77-a99d-173aa1fd47a9", + "Name": null + }, + "742a562b-b1a4-41ae-89aa-0de5910f5980": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "742a562b-b1a4-41ae-89aa-0de5910f5980", + "Name": "W12x152", + "CellId": 104, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b77f177f-e06c-4639-8871-a97868414849": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b77f177f-e06c-4639-8871-a97868414849", + "Name": null + }, + "b8427b4d-8d2d-420a-bd4d-67a336b332c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b8427b4d-8d2d-420a-bd4d-67a336b332c3", + "Name": "W12x152", + "CellId": 105, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5c3a9963-457b-4660-a69a-f04b7b11a6c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c3a9963-457b-4660-a69a-f04b7b11a6c1", + "Name": null + }, + "b0a9d90f-95e7-4ec6-8a95-624982f903ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b0a9d90f-95e7-4ec6-8a95-624982f903ad", + "Name": "W12x152", + "CellId": 105, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "64f6e482-c578-447d-be9c-dfae36efde83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64f6e482-c578-447d-be9c-dfae36efde83", + "Name": null + }, + "718c13ae-c1f6-4e2f-8cbb-a846a5c63b64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "718c13ae-c1f6-4e2f-8cbb-a846a5c63b64", + "Name": "W12x152", + "CellId": 106, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "285a7451-1c3a-4da8-871b-ca1247e01a71": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "285a7451-1c3a-4da8-871b-ca1247e01a71", + "Name": null + }, + "f5f480e6-4e53-4f6b-8960-1e30935b2952": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f5f480e6-4e53-4f6b-8960-1e30935b2952", + "Name": "W12x152", + "CellId": 106, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "25911c27-fb94-440e-b11c-e9d134dd2812": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25911c27-fb94-440e-b11c-e9d134dd2812", + "Name": null + }, + "e3302218-aba3-4732-a59c-97854f2f5e90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e3302218-aba3-4732-a59c-97854f2f5e90", + "Name": "W12x152", + "CellId": 106, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9f9777f8-e27d-454c-8e3a-b836d0bef3f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f9777f8-e27d-454c-8e3a-b836d0bef3f3", + "Name": null + }, + "e5704250-dbbd-4aec-b4c1-94fbc6d26a58": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e5704250-dbbd-4aec-b4c1-94fbc6d26a58", + "Name": "W12x152", + "CellId": 107, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8127a497-ec7e-4bbb-aff7-98b5a59f5ae3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8127a497-ec7e-4bbb-aff7-98b5a59f5ae3", + "Name": null + }, + "98193cfe-efc4-4104-907b-c312a5e30327": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "98193cfe-efc4-4104-907b-c312a5e30327", + "Name": "W12x152", + "CellId": 107, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b825108-6ce9-46a7-b339-0496bf4a68c4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b825108-6ce9-46a7-b339-0496bf4a68c4", + "Name": null + }, + "e2ebe55b-e2c2-485b-9bd5-9e0163ccfce0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e2ebe55b-e2c2-485b-9bd5-9e0163ccfce0", + "Name": "W12x152", + "CellId": 107, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "360e5e74-6dc8-439b-9c96-13b80f97ae57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "360e5e74-6dc8-439b-9c96-13b80f97ae57", + "Name": null + }, + "279ee5d6-8a43-42a0-98d0-70ac7620039d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "279ee5d6-8a43-42a0-98d0-70ac7620039d", + "Name": "W12x152", + "CellId": 108, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f18dd89-bdeb-4b7f-980f-49827657515a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f18dd89-bdeb-4b7f-980f-49827657515a", + "Name": null + }, + "015619c5-7b42-48e9-93f5-bd19057da6f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "015619c5-7b42-48e9-93f5-bd19057da6f3", + "Name": "W12x152", + "CellId": 108, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7e58e126-ccfb-40d1-b0ac-9552db9f183a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e58e126-ccfb-40d1-b0ac-9552db9f183a", + "Name": null + }, + "1276a214-acd2-414c-aa82-bc21279c3894": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1276a214-acd2-414c-aa82-bc21279c3894", + "Name": "W12x152", + "CellId": 108, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fbc84c78-b486-4653-85af-48fe69677590": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbc84c78-b486-4653-85af-48fe69677590", + "Name": null + }, + "946cd615-5389-4aa3-b4f5-2594e713a89b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "946cd615-5389-4aa3-b4f5-2594e713a89b", + "Name": "W12x152", + "CellId": 109, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "46635043-5e75-4a5e-81da-d8ce4b515cfb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "46635043-5e75-4a5e-81da-d8ce4b515cfb", + "Name": null + }, + "27b4d720-f992-4be6-bec2-6bda611f469b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "27b4d720-f992-4be6-bec2-6bda611f469b", + "Name": "W12x152", + "CellId": 109, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "254316b8-8cdf-45ef-83b8-a156764589a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "254316b8-8cdf-45ef-83b8-a156764589a2", + "Name": null + }, + "1e5253b9-9805-4b4d-903f-e5ed051330eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1e5253b9-9805-4b4d-903f-e5ed051330eb", + "Name": "W12x152", + "CellId": 109, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e603e264-3157-4c44-a587-f888c3b9546c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e603e264-3157-4c44-a587-f888c3b9546c", + "Name": null + }, + "1528be08-697e-43ca-984e-1ebb3b76422d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1528be08-697e-43ca-984e-1ebb3b76422d", + "Name": "W12x152", + "CellId": 110, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9ab84336-afb3-4b62-9bf3-8ef5e7bbe326": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ab84336-afb3-4b62-9bf3-8ef5e7bbe326", + "Name": null + }, + "ab875dfb-e8ab-4334-94f3-a5a14abe9807": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ab875dfb-e8ab-4334-94f3-a5a14abe9807", + "Name": "W12x152", + "CellId": 110, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4f30ea0b-dc40-44f6-a292-dc8e1c1a8db3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f30ea0b-dc40-44f6-a292-dc8e1c1a8db3", + "Name": null + }, + "a423ed06-99e1-42d6-beae-b17bcf5ea424": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a423ed06-99e1-42d6-beae-b17bcf5ea424", + "Name": "W12x152", + "CellId": 111, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "bc7f89f0-a791-464a-8d07-4cfa1a1234e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 8.35 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bc7f89f0-a791-464a-8d07-4cfa1a1234e4", + "Name": null + }, + "56361388-1c04-4e09-80df-543d9114ac7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "56361388-1c04-4e09-80df-543d9114ac7c", + "Name": "W12x152", + "CellId": 111, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5f18ee85-cf99-4e38-ae9c-b6851302dcb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 8.35 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f18ee85-cf99-4e38-ae9c-b6851302dcb4", + "Name": null + }, + "8733f127-cbf9-4a15-ab26-7c5576271c6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8733f127-cbf9-4a15-ab26-7c5576271c6f", + "Name": "W12x152", + "CellId": 112, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d37e4e08-4442-48a5-88df-545e985e24eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d37e4e08-4442-48a5-88df-545e985e24eb", + "Name": null + }, + "02ba687d-8d23-4da1-bb0d-be8eb763ef39": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "02ba687d-8d23-4da1-bb0d-be8eb763ef39", + "Name": "W12x152", + "CellId": 112, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1e460d51-baf0-4571-b9d1-13aa2a764cea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1e460d51-baf0-4571-b9d1-13aa2a764cea", + "Name": null + }, + "90b5932e-9f38-4068-8c56-54950b80f167": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "90b5932e-9f38-4068-8c56-54950b80f167", + "Name": "W12x152", + "CellId": 112, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f20d27b7-4f3b-4e4b-929c-24f59f38d9aa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f20d27b7-4f3b-4e4b-929c-24f59f38d9aa", + "Name": null + }, + "857df830-8fdb-4c52-962d-e57805ed1d2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "857df830-8fdb-4c52-962d-e57805ed1d2a", + "Name": "W12x152", + "CellId": 113, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "611cb493-a385-40c7-9c17-76298ee9168e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "611cb493-a385-40c7-9c17-76298ee9168e", + "Name": null + }, + "896a4e50-0e0b-4f5a-9ae3-5bb67c7f1d10": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "896a4e50-0e0b-4f5a-9ae3-5bb67c7f1d10", + "Name": "W12x152", + "CellId": 113, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5500c2e2-9089-4836-9f66-1dbb7455e0b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5500c2e2-9089-4836-9f66-1dbb7455e0b5", + "Name": null + }, + "f65580f7-7b51-45ac-ba5b-0323f2f670a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f65580f7-7b51-45ac-ba5b-0323f2f670a9", + "Name": "W12x152", + "CellId": 115, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "be3474d4-d8d1-42b5-bc87-8d940f84d0a7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "be3474d4-d8d1-42b5-bc87-8d940f84d0a7", + "Name": null + }, + "d0c9953e-29bb-446c-b923-08a4a5ca451c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d0c9953e-29bb-446c-b923-08a4a5ca451c", + "Name": "W12x152", + "CellId": 115, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "32d0097b-7d5f-4ae4-8247-591467691595": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32d0097b-7d5f-4ae4-8247-591467691595", + "Name": null + }, + "2f1f85e0-8f06-417d-bae2-2d0f9eb275fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2f1f85e0-8f06-417d-bae2-2d0f9eb275fd", + "Name": "W12x152", + "CellId": 115, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44016be7-320a-45c1-be39-517e8733d20e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44016be7-320a-45c1-be39-517e8733d20e", + "Name": null + }, + "0c593906-6b4d-4f14-a928-bdf550b68c15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0c593906-6b4d-4f14-a928-bdf550b68c15", + "Name": "W12x152", + "CellId": 116, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "69bfc7b5-9ce3-4291-bf16-640e28e08e16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "69bfc7b5-9ce3-4291-bf16-640e28e08e16", + "Name": null + }, + "e8f3540b-64ed-495c-bd88-4a61d2ae72ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e8f3540b-64ed-495c-bd88-4a61d2ae72ee", + "Name": "W12x152", + "CellId": 116, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "77edd577-d772-4e3f-8c66-bd827b65b59c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "77edd577-d772-4e3f-8c66-bd827b65b59c", + "Name": null + }, + "d82c5d2b-1601-4074-8f11-0e34b3a86249": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d82c5d2b-1601-4074-8f11-0e34b3a86249", + "Name": "W12x152", + "CellId": 116, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f8c8f74a-8be1-46ff-8852-d45af7b79009": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8c8f74a-8be1-46ff-8852-d45af7b79009", + "Name": null + }, + "fce5fbc7-0e51-4781-97ba-841e5675134c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fce5fbc7-0e51-4781-97ba-841e5675134c", + "Name": "W12x152", + "CellId": 117, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "518cef14-f36c-48dc-b139-62d5ed69d4dc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "518cef14-f36c-48dc-b139-62d5ed69d4dc", + "Name": null + }, + "1d951d35-eac0-4da8-8036-1af34ad0a51b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1d951d35-eac0-4da8-8036-1af34ad0a51b", + "Name": "W12x152", + "CellId": 117, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b643fb07-f8e8-48b2-bf9d-558ef2651f0f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b643fb07-f8e8-48b2-bf9d-558ef2651f0f", + "Name": null + }, + "8c26ad90-e73c-4392-ae50-38dddecad8e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8c26ad90-e73c-4392-ae50-38dddecad8e8", + "Name": "W12x152", + "CellId": 118, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "6f7c5bf8-783c-47fe-8774-1c748bf4cf8a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 8.35 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6f7c5bf8-783c-47fe-8774-1c748bf4cf8a", + "Name": null + }, + "28c391f2-cd87-4fe8-b2e9-a03fa237d9d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "28c391f2-cd87-4fe8-b2e9-a03fa237d9d7", + "Name": "W12x152", + "CellId": 118, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "6c4ea472-e246-4e45-a818-de1bd5ae8ea7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c4ea472-e246-4e45-a818-de1bd5ae8ea7", + "Name": null + }, + "d5df4dff-9864-4d1a-a9d9-091075c341fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d5df4dff-9864-4d1a-a9d9-091075c341fb", + "Name": "W12x152", + "CellId": 119, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "eee6ec5c-aa20-462d-9060-25b949d8a67d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eee6ec5c-aa20-462d-9060-25b949d8a67d", + "Name": null + }, + "a82f0c68-8977-4ba1-b4e2-7ff7a9140e13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a82f0c68-8977-4ba1-b4e2-7ff7a9140e13", + "Name": "W12x152", + "CellId": 119, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "833ad1f7-130a-44bd-bc9a-8edb55d458f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "833ad1f7-130a-44bd-bc9a-8edb55d458f5", + "Name": null + }, + "71694e7d-8a93-4ff5-a2de-47f6ad610dc2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "71694e7d-8a93-4ff5-a2de-47f6ad610dc2", + "Name": "W12x152", + "CellId": 119, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "695d93e5-1ab5-41a3-b3f7-7df8dc9c0885": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "695d93e5-1ab5-41a3-b3f7-7df8dc9c0885", + "Name": null + }, + "6237770a-e419-4c62-a951-5665545981bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6237770a-e419-4c62-a951-5665545981bc", + "Name": "W12x152", + "CellId": 120, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b3b2a92f-6c75-4da6-b20f-5ec0dab40003": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b3b2a92f-6c75-4da6-b20f-5ec0dab40003", + "Name": null + }, + "191d0038-cfaa-44f4-ba51-4c09f362a85f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "191d0038-cfaa-44f4-ba51-4c09f362a85f", + "Name": "W12x152", + "CellId": 120, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dea82b25-e735-46cf-afac-123dbc3aef09": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dea82b25-e735-46cf-afac-123dbc3aef09", + "Name": null + }, + "e827cbb4-f386-47d5-88cc-69811d46dffc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e827cbb4-f386-47d5-88cc-69811d46dffc", + "Name": "W12x152", + "CellId": 120, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2e3e9650-0b65-44c0-b7fb-f4e7e43078f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e3e9650-0b65-44c0-b7fb-f4e7e43078f1", + "Name": null + }, + "fb82c9c8-7ee1-4d1f-b9aa-8b97b0a9ee63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fb82c9c8-7ee1-4d1f-b9aa-8b97b0a9ee63", + "Name": "W12x152", + "CellId": 121, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5cb3b8e4-0eae-4a4d-8843-c09ec0f6ff66": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5cb3b8e4-0eae-4a4d-8843-c09ec0f6ff66", + "Name": null + }, + "0516e687-2a69-4d01-bd53-e363f229b0d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0516e687-2a69-4d01-bd53-e363f229b0d8", + "Name": "W12x152", + "CellId": 121, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "fbc450c9-551e-4bde-b3f5-90f8e8541139": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbc450c9-551e-4bde-b3f5-90f8e8541139", + "Name": null + }, + "9c7c4f27-b4b4-4462-9dc4-e1c2194abb4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9c7c4f27-b4b4-4462-9dc4-e1c2194abb4e", + "Name": "W12x152", + "CellId": 122, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9a80b62b-e8ef-450d-8d0c-f69949cae202": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a80b62b-e8ef-450d-8d0c-f69949cae202", + "Name": null + }, + "aa2ddbf3-8985-43cb-8057-8cff39962960": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "aa2ddbf3-8985-43cb-8057-8cff39962960", + "Name": "W12x152", + "CellId": 122, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4db49f8a-46fa-4566-99bb-f8723e1459b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4db49f8a-46fa-4566-99bb-f8723e1459b0", + "Name": null + }, + "b0bb395b-2713-460c-b1ec-0928fc5553fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b0bb395b-2713-460c-b1ec-0928fc5553fb", + "Name": "W12x152", + "CellId": 122, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "409a40e0-0936-44bb-b832-f400573122f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "409a40e0-0936-44bb-b832-f400573122f2", + "Name": null + }, + "bf1c6115-21dd-4602-a869-4f7fec9867eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bf1c6115-21dd-4602-a869-4f7fec9867eb", + "Name": "W12x152", + "CellId": 123, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ae89ef64-85ab-4085-b80b-ed39a51cb81c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae89ef64-85ab-4085-b80b-ed39a51cb81c", + "Name": null + }, + "273fa14f-8b08-4881-825e-5c4afef3faf3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "273fa14f-8b08-4881-825e-5c4afef3faf3", + "Name": "W12x152", + "CellId": 123, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "33bc06ed-a28d-4bea-b8c4-fa1a635e8bb1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33bc06ed-a28d-4bea-b8c4-fa1a635e8bb1", + "Name": null + }, + "5331748d-3b27-4f5e-953f-d6609ec8347c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5331748d-3b27-4f5e-953f-d6609ec8347c", + "Name": "W12x152", + "CellId": 123, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9de88070-18c3-4b09-a7b1-9a98c800825b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9de88070-18c3-4b09-a7b1-9a98c800825b", + "Name": null + }, + "4d6c5141-cf5d-4474-9637-532c7c5f840c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4d6c5141-cf5d-4474-9637-532c7c5f840c", + "Name": "W12x152", + "CellId": 124, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b9226a64-566b-46b7-983d-f83b96df4180": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9226a64-566b-46b7-983d-f83b96df4180", + "Name": null + }, + "b5ced065-40f8-4663-8e94-14db58298dd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b5ced065-40f8-4663-8e94-14db58298dd9", + "Name": "W12x152", + "CellId": 124, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44a4cf96-66c1-41a4-95e1-3e69772bb66f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44a4cf96-66c1-41a4-95e1-3e69772bb66f", + "Name": null + }, + "97959b76-12a3-45fc-aa7d-d60065afc3a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "97959b76-12a3-45fc-aa7d-d60065afc3a6", + "Name": "W12x152", + "CellId": 124, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9677c504-046b-4cf0-b4f0-8f2d57af8d27": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9677c504-046b-4cf0-b4f0-8f2d57af8d27", + "Name": null + }, + "48347742-67d1-40b6-b50c-dbd95a6cf6bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "48347742-67d1-40b6-b50c-dbd95a6cf6bc", + "Name": "W12x152", + "CellId": 125, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a8514b31-e653-4814-801b-c53ebfc222be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a8514b31-e653-4814-801b-c53ebfc222be", + "Name": null + }, + "4223af6b-0754-427e-afa4-b5a1305e1c2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4223af6b-0754-427e-afa4-b5a1305e1c2e", + "Name": "W12x152", + "CellId": 125, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3550462a-652f-4130-a17b-db4ca57be8b1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3550462a-652f-4130-a17b-db4ca57be8b1", + "Name": null + }, + "b1aacd16-71ab-4ff3-9b4c-1dbb543b9b40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b1aacd16-71ab-4ff3-9b4c-1dbb543b9b40", + "Name": "W12x152", + "CellId": 126, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e6d78656-1e3b-45a3-be8a-9a5ad0418714": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 8.35 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6d78656-1e3b-45a3-be8a-9a5ad0418714", + "Name": null + }, + "79beb561-f861-4c6b-99e8-fb9533aed615": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "79beb561-f861-4c6b-99e8-fb9533aed615", + "Name": "W12x152", + "CellId": 126, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "51a1d733-53b6-4897-a648-e378cf7f42c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 8.35 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "51a1d733-53b6-4897-a648-e378cf7f42c5", + "Name": null + }, + "314aa189-d8f3-4d1f-a844-f385f987cd1c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "314aa189-d8f3-4d1f-a844-f385f987cd1c", + "Name": "W12x152", + "CellId": 127, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c00e9684-ec4c-49f7-91c4-fc8af7b5ccb5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c00e9684-ec4c-49f7-91c4-fc8af7b5ccb5", + "Name": null + }, + "deef9925-79d2-4c07-bbe0-0d0646b64498": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "deef9925-79d2-4c07-bbe0-0d0646b64498", + "Name": "W12x152", + "CellId": 127, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e4466be5-257d-456e-94ba-e8a1e58ad314": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4466be5-257d-456e-94ba-e8a1e58ad314", + "Name": null + }, + "d54c94ea-3cf3-4582-93fa-13f93901f01e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d54c94ea-3cf3-4582-93fa-13f93901f01e", + "Name": "W12x152", + "CellId": 127, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "47ceae02-c01c-4bec-815e-007b3f52912c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47ceae02-c01c-4bec-815e-007b3f52912c", + "Name": null + }, + "e1e4db56-cb24-443d-afcd-7172365b03c0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e1e4db56-cb24-443d-afcd-7172365b03c0", + "Name": "W12x152", + "CellId": 128, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dee1ee2f-07aa-41f9-9bea-33192597af42": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dee1ee2f-07aa-41f9-9bea-33192597af42", + "Name": null + }, + "e6b2d3e7-eb42-43b5-8358-0fbb780ad9d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e6b2d3e7-eb42-43b5-8358-0fbb780ad9d8", + "Name": "W12x152", + "CellId": 128, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a40e3de5-84e5-4d16-88ab-f0bbfd7d638c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a40e3de5-84e5-4d16-88ab-f0bbfd7d638c", + "Name": null + }, + "b92465d3-94f9-48b9-86df-cd0e69c5d11c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b92465d3-94f9-48b9-86df-cd0e69c5d11c", + "Name": "W12x152", + "CellId": 128, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a99b78b9-1a53-4298-a83d-ecdc224d6896": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a99b78b9-1a53-4298-a83d-ecdc224d6896", + "Name": null + }, + "80edf25f-40f1-4da4-842b-ddafbd72ba07": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "80edf25f-40f1-4da4-842b-ddafbd72ba07", + "Name": "W12x152", + "CellId": 129, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15442d84-5cd2-4573-a4e1-8640a0c7a685": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15442d84-5cd2-4573-a4e1-8640a0c7a685", + "Name": null + }, + "d0fd8fcc-22e2-46b5-8a2a-bad5dafbfa6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d0fd8fcc-22e2-46b5-8a2a-bad5dafbfa6f", + "Name": "W12x152", + "CellId": 129, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1d2e163-4b56-45e0-a2df-4a3b842cbb75": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1d2e163-4b56-45e0-a2df-4a3b842cbb75", + "Name": null + }, + "dee68dad-8c4b-40b8-8937-3b236cb92879": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "dee68dad-8c4b-40b8-8937-3b236cb92879", + "Name": "W12x152", + "CellId": 129, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3c38fafc-0ba4-46ae-a608-1bbb1118917f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c38fafc-0ba4-46ae-a608-1bbb1118917f", + "Name": null + }, + "e012fa67-1ed0-4853-a1ed-24d472b3bcc8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e012fa67-1ed0-4853-a1ed-24d472b3bcc8", + "Name": "W12x152", + "CellId": 130, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "113811da-2a7c-4a87-91d0-d1716b0832d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "113811da-2a7c-4a87-91d0-d1716b0832d9", + "Name": null + }, + "e2355a3d-bb3b-4f99-807b-d252ae117df9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e2355a3d-bb3b-4f99-807b-d252ae117df9", + "Name": "W12x152", + "CellId": 130, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "08462a57-829e-46c2-96d9-d744b9346d2c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "08462a57-829e-46c2-96d9-d744b9346d2c", + "Name": null + }, + "f18e6cac-b014-4a2e-8a6b-be7be4625497": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f18e6cac-b014-4a2e-8a6b-be7be4625497", + "Name": "W12x152", + "CellId": 131, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "31820af5-195c-4604-8874-d121d7800c4a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "31820af5-195c-4604-8874-d121d7800c4a", + "Name": null + }, + "9ce09f8c-9cd5-4051-a30a-06e7f696e29b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9ce09f8c-9cd5-4051-a30a-06e7f696e29b", + "Name": "W12x152", + "CellId": 131, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "57a9a5ad-f8c2-41eb-bcee-a92268194699": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "57a9a5ad-f8c2-41eb-bcee-a92268194699", + "Name": null + }, + "443ebff2-6f6a-49ea-9a47-20679ac56570": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "443ebff2-6f6a-49ea-9a47-20679ac56570", + "Name": "W12x152", + "CellId": 131, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4ce9179d-e337-41f3-8260-5ab28efc75e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ce9179d-e337-41f3-8260-5ab28efc75e9", + "Name": null + }, + "fd3a4bc1-791b-4368-b0dc-8f1f3e33c805": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fd3a4bc1-791b-4368-b0dc-8f1f3e33c805", + "Name": "W12x152", + "CellId": 132, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1fab71e0-db8c-4a85-a8ff-e2ade6df39c8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1fab71e0-db8c-4a85-a8ff-e2ade6df39c8", + "Name": null + }, + "6bf0e4ac-daec-4d78-98a2-5af9de6ca547": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6bf0e4ac-daec-4d78-98a2-5af9de6ca547", + "Name": "W12x152", + "CellId": 132, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "965e6ec5-8f58-4e92-a29f-96525af40a5e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "965e6ec5-8f58-4e92-a29f-96525af40a5e", + "Name": null + }, + "7aab72f0-9bbd-4acd-8e3f-b2a213d91372": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "7aab72f0-9bbd-4acd-8e3f-b2a213d91372", + "Name": "W12x152", + "CellId": 132, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3c200b98-5a8e-4aeb-85c4-ce00089a4fda": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c200b98-5a8e-4aeb-85c4-ce00089a4fda", + "Name": null + }, + "b189e315-3852-4b8e-8d53-655974713495": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b189e315-3852-4b8e-8d53-655974713495", + "Name": "W12x152", + "CellId": 133, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f64bc09a-fb38-43a9-8d5c-cf6789e4d70a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f64bc09a-fb38-43a9-8d5c-cf6789e4d70a", + "Name": null + }, + "c653d702-89cb-4da0-8c97-245e855ce740": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c653d702-89cb-4da0-8c97-245e855ce740", + "Name": "W12x152", + "CellId": 133, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "55f502f9-f8c7-487e-b1f7-365362fa5b89": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55f502f9-f8c7-487e-b1f7-365362fa5b89", + "Name": null + }, + "f1a71c3c-44f4-4a34-9da7-dea9271fb18b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f1a71c3c-44f4-4a34-9da7-dea9271fb18b", + "Name": "W12x152", + "CellId": 133, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "14054fed-e391-42a6-89b4-70b58d1198a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14054fed-e391-42a6-89b4-70b58d1198a9", + "Name": null + }, + "2db75b9a-e385-4d91-ad5d-718e0928d9ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2db75b9a-e385-4d91-ad5d-718e0928d9ff", + "Name": "W12x152", + "CellId": 134, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ea4498c0-85a0-4acb-992b-c841920caf6f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea4498c0-85a0-4acb-992b-c841920caf6f", + "Name": null + }, + "4109e616-84cd-437b-90ed-8e0321fc42cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4109e616-84cd-437b-90ed-8e0321fc42cd", + "Name": "W12x152", + "CellId": 134, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e8abdc9e-e865-465d-bd76-f24da225b216": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8abdc9e-e865-465d-bd76-f24da225b216", + "Name": null + }, + "ba9f3b69-ff77-49a3-b6a6-7bcd39f39db4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ba9f3b69-ff77-49a3-b6a6-7bcd39f39db4", + "Name": "W12x152", + "CellId": 134, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "267b785c-f9b1-4e46-90d8-3d799cfa9f01": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "267b785c-f9b1-4e46-90d8-3d799cfa9f01", + "Name": null + }, + "b15a1f9f-8b18-460b-b5cb-45cd7691b98b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b15a1f9f-8b18-460b-b5cb-45cd7691b98b", + "Name": "W12x152", + "CellId": 135, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c15b9fae-76b9-42eb-91e1-4156b4845187": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c15b9fae-76b9-42eb-91e1-4156b4845187", + "Name": null + }, + "65b61764-95e8-430f-af44-9b70989925f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "65b61764-95e8-430f-af44-9b70989925f1", + "Name": "W12x152", + "CellId": 135, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "dfcb6340-3553-481b-95bd-c589823ec345": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dfcb6340-3553-481b-95bd-c589823ec345", + "Name": null + }, + "44d835f6-abd6-4f56-a3af-61120c80a4e9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "44d835f6-abd6-4f56-a3af-61120c80a4e9", + "Name": "W12x152", + "CellId": 136, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2ff8c2de-88a9-4ec8-b727-b92d9c8684f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2ff8c2de-88a9-4ec8-b727-b92d9c8684f1", + "Name": null + }, + "111a317d-c187-433c-bcdf-cf38e0c0919f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "111a317d-c187-433c-bcdf-cf38e0c0919f", + "Name": "W12x152", + "CellId": 136, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7615eab2-f3da-4815-b0c0-b599f22aa45b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7615eab2-f3da-4815-b0c0-b599f22aa45b", + "Name": null + }, + "03daab14-9d3e-4386-99be-6a7fa5766238": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "03daab14-9d3e-4386-99be-6a7fa5766238", + "Name": "W12x152", + "CellId": 136, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3dcd3860-a44d-45eb-8294-8e7e98d07f36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3dcd3860-a44d-45eb-8294-8e7e98d07f36", + "Name": null + }, + "8a75167e-4761-4ad5-93da-4120eee527d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8a75167e-4761-4ad5-93da-4120eee527d6", + "Name": "W12x152", + "CellId": 137, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e706466f-854f-4c22-973c-bdfcbad92e3b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e706466f-854f-4c22-973c-bdfcbad92e3b", + "Name": null + }, + "00b06eba-24c6-44ef-b7c6-8f0321a98f60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "00b06eba-24c6-44ef-b7c6-8f0321a98f60", + "Name": "W12x152", + "CellId": 137, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1dcbf458-0422-4b0b-b07b-53a18da7dd40": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1dcbf458-0422-4b0b-b07b-53a18da7dd40", + "Name": null + }, + "107a10af-fb72-4b65-be6b-96b2419d20a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "107a10af-fb72-4b65-be6b-96b2419d20a3", + "Name": "W12x152", + "CellId": 137, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "038a057e-b7ea-421c-84cc-989b494856e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "038a057e-b7ea-421c-84cc-989b494856e3", + "Name": null + }, + "71190757-c4a9-444c-97e7-d13e4413485a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "71190757-c4a9-444c-97e7-d13e4413485a", + "Name": "W12x152", + "CellId": 138, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e288d513-4e46-412a-8ce0-c1bf7c475cc2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e288d513-4e46-412a-8ce0-c1bf7c475cc2", + "Name": null + }, + "f6c92f22-e259-4aea-954c-87f508dac334": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f6c92f22-e259-4aea-954c-87f508dac334", + "Name": "W12x152", + "CellId": 138, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9c2d0aea-4464-4f8b-972f-12d28278eed0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c2d0aea-4464-4f8b-972f-12d28278eed0", + "Name": null + }, + "124446a4-6f2e-407a-95b1-5bb37ef70ce9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "124446a4-6f2e-407a-95b1-5bb37ef70ce9", + "Name": "W12x152", + "CellId": 138, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c093c49-36b9-4f76-acb5-93b83e9b063d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c093c49-36b9-4f76-acb5-93b83e9b063d", + "Name": null + }, + "c9d70166-8075-4d93-8c3e-52fdcf30465d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c9d70166-8075-4d93-8c3e-52fdcf30465d", + "Name": "W12x152", + "CellId": 139, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e0419874-3f7c-4e0b-8dd2-06cf5de9a0bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0419874-3f7c-4e0b-8dd2-06cf5de9a0bf", + "Name": null + }, + "11663140-d2a1-4f0d-8d3b-bd1da352d26f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "11663140-d2a1-4f0d-8d3b-bd1da352d26f", + "Name": "W12x152", + "CellId": 139, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dfc121e2-1189-44b3-b494-ff2adf6ece37": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dfc121e2-1189-44b3-b494-ff2adf6ece37", + "Name": null + }, + "6ef3d237-535d-40c0-a379-b5a9be6c8c4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6ef3d237-535d-40c0-a379-b5a9be6c8c4b", + "Name": "W12x152", + "CellId": 139, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a2c49997-8de7-4a17-8472-f4e189334b18": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a2c49997-8de7-4a17-8472-f4e189334b18", + "Name": null + }, + "01cd4ad2-88ea-48c8-96aa-f8aef45d289b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "01cd4ad2-88ea-48c8-96aa-f8aef45d289b", + "Name": "W12x152", + "CellId": 140, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "955cf3c3-e560-4058-9412-09694f3b711c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "955cf3c3-e560-4058-9412-09694f3b711c", + "Name": null + }, + "d8926a33-84d2-46af-9118-87c1f296cf49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d8926a33-84d2-46af-9118-87c1f296cf49", + "Name": "W12x152", + "CellId": 140, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ba47c0e9-b9ff-440a-a811-e514f2a55726": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba47c0e9-b9ff-440a-a811-e514f2a55726", + "Name": null + }, + "0fffbcde-e93e-495f-9e24-cb28148d14fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0fffbcde-e93e-495f-9e24-cb28148d14fa", + "Name": "W12x152", + "CellId": 141, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9e055710-192c-4993-aed5-d09db0473a27": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9e055710-192c-4993-aed5-d09db0473a27", + "Name": null + }, + "5feb5b94-fc0d-46b7-878e-1762c3550963": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5feb5b94-fc0d-46b7-878e-1762c3550963", + "Name": "W12x152", + "CellId": 141, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4bd8fa70-1fea-4106-84ee-abd34049fa0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4bd8fa70-1fea-4106-84ee-abd34049fa0b", + "Name": null + }, + "68e84e78-a5f3-4ab5-a9de-d1da36ea5e6c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "68e84e78-a5f3-4ab5-a9de-d1da36ea5e6c", + "Name": "W12x152", + "CellId": 141, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "195851ae-ec6d-4908-b29d-fa59b08f00e7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "195851ae-ec6d-4908-b29d-fa59b08f00e7", + "Name": null + }, + "01fdc5db-ba5d-4c4a-9122-9faa4a6856b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "01fdc5db-ba5d-4c4a-9122-9faa4a6856b3", + "Name": "W12x152", + "CellId": 142, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "115e2243-6a71-47e3-a158-200ed78e0198": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "115e2243-6a71-47e3-a158-200ed78e0198", + "Name": null + }, + "fa722ee5-1016-4c3c-89a8-0556afdaae2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fa722ee5-1016-4c3c-89a8-0556afdaae2f", + "Name": "W12x152", + "CellId": 142, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c88aefd7-3824-4879-bd65-f06be40d5121": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c88aefd7-3824-4879-bd65-f06be40d5121", + "Name": null + }, + "904588f5-994f-47ec-b3d4-aa0e6f045819": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "904588f5-994f-47ec-b3d4-aa0e6f045819", + "Name": "W12x152", + "CellId": 142, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cf2140d0-c668-4c77-9435-ab6b76c4bf9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf2140d0-c668-4c77-9435-ab6b76c4bf9a", + "Name": null + }, + "99eaca0d-c7c5-486b-acd6-17cb9339388d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "99eaca0d-c7c5-486b-acd6-17cb9339388d", + "Name": "W12x152", + "CellId": 143, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c35e8989-d6f6-4f63-89c8-750e6e5f689b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c35e8989-d6f6-4f63-89c8-750e6e5f689b", + "Name": null + }, + "a8253de2-3dff-48fa-ab7d-836d03c632ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a8253de2-3dff-48fa-ab7d-836d03c632ef", + "Name": "W12x152", + "CellId": 143, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "980eb774-e2c2-4468-9a59-dc2b64473345": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "980eb774-e2c2-4468-9a59-dc2b64473345", + "Name": null + }, + "8260c836-3a75-4a32-9344-ebb8ddb807f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8260c836-3a75-4a32-9344-ebb8ddb807f4", + "Name": "W12x152", + "CellId": 143, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f8e7c515-6f47-44e6-9682-c621514db6a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8e7c515-6f47-44e6-9682-c621514db6a8", + "Name": null + }, + "5a4710d8-10e7-4ed8-8da8-0f410a310a0c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5a4710d8-10e7-4ed8-8da8-0f410a310a0c", + "Name": "W12x152", + "CellId": 144, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6d0d107-0d88-42b3-a8e3-9363931cfa21": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6d0d107-0d88-42b3-a8e3-9363931cfa21", + "Name": null + }, + "02c34d52-6494-4258-ab36-e6397f629ea7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "02c34d52-6494-4258-ab36-e6397f629ea7", + "Name": "W12x152", + "CellId": 144, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ebe14b50-a00c-4821-a50c-72f4f310406f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ebe14b50-a00c-4821-a50c-72f4f310406f", + "Name": null + }, + "14e99bf6-b932-4483-b3b9-3e0e61c9d181": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "14e99bf6-b932-4483-b3b9-3e0e61c9d181", + "Name": "W12x152", + "CellId": 144, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b05b22d-21fb-40e6-a8c4-a078e30e8adc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b05b22d-21fb-40e6-a8c4-a078e30e8adc", + "Name": null + }, + "ce0d6c02-aa7e-43e6-b3a9-461f7128f2e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ce0d6c02-aa7e-43e6-b3a9-461f7128f2e2", + "Name": "W12x152", + "CellId": 145, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ed564d3a-0c40-4486-a4ab-51a2d4a93069": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed564d3a-0c40-4486-a4ab-51a2d4a93069", + "Name": null + }, + "c9a74174-9119-4e43-8eec-e97fe5c52b18": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c9a74174-9119-4e43-8eec-e97fe5c52b18", + "Name": "W12x152", + "CellId": 145, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "1e1e6558-76fd-40bc-9333-0cfa5204d330": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1e1e6558-76fd-40bc-9333-0cfa5204d330", + "Name": null + }, + "2142ebca-3c21-497e-9609-59a25f70cdb4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2142ebca-3c21-497e-9609-59a25f70cdb4", + "Name": "W12x152", + "CellId": 146, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2e4e5409-7ab6-4fef-af59-61e3be57f08d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e4e5409-7ab6-4fef-af59-61e3be57f08d", + "Name": null + }, + "347f0c3b-f24b-4fa3-a426-49d79b9e9bdc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "347f0c3b-f24b-4fa3-a426-49d79b9e9bdc", + "Name": "W12x152", + "CellId": 146, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9821b949-03f9-4d04-aad7-1e9303ec545e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9821b949-03f9-4d04-aad7-1e9303ec545e", + "Name": null + }, + "70f7b738-433f-4df5-96b2-a9131400293f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "70f7b738-433f-4df5-96b2-a9131400293f", + "Name": "W12x152", + "CellId": 146, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8ff74b24-56f8-4fdc-9bd1-20cb96b41967": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8ff74b24-56f8-4fdc-9bd1-20cb96b41967", + "Name": null + }, + "e4432fa8-92f6-49cc-b1a1-bbf356edcb1b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e4432fa8-92f6-49cc-b1a1-bbf356edcb1b", + "Name": "W12x152", + "CellId": 147, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a76592f3-8131-40a0-9c5d-1504a70a01c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a76592f3-8131-40a0-9c5d-1504a70a01c5", + "Name": null + }, + "88e68ac3-1ab5-40da-b29c-ac914b2d96e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "88e68ac3-1ab5-40da-b29c-ac914b2d96e1", + "Name": "W12x152", + "CellId": 147, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44a14673-329f-4fdf-a4b0-2221d4dddd5c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44a14673-329f-4fdf-a4b0-2221d4dddd5c", + "Name": null + }, + "cb03cd3b-2e3d-4c78-9b9a-7cac8298d674": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cb03cd3b-2e3d-4c78-9b9a-7cac8298d674", + "Name": "W12x152", + "CellId": 147, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "47d964f1-6a70-4406-bbc1-5a3f35bce76d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47d964f1-6a70-4406-bbc1-5a3f35bce76d", + "Name": null + }, + "ef5acfea-143e-4678-9ebe-aff8993f2aa7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ef5acfea-143e-4678-9ebe-aff8993f2aa7", + "Name": "W12x152", + "CellId": 148, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ddb5f93b-698e-4b57-874d-4b4e660e0219": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ddb5f93b-698e-4b57-874d-4b4e660e0219", + "Name": null + }, + "ccdaebdb-633a-44f0-aa19-41f747ffddf2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ccdaebdb-633a-44f0-aa19-41f747ffddf2", + "Name": "W12x152", + "CellId": 148, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "64e1257e-01f3-485a-ae6e-dcf8d535e426": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64e1257e-01f3-485a-ae6e-dcf8d535e426", + "Name": null + }, + "bc24f565-1a11-4b7f-a7f4-15cdab75cf55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bc24f565-1a11-4b7f-a7f4-15cdab75cf55", + "Name": "W12x152", + "CellId": 148, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cca8c72e-6c97-4790-8998-bae6bacd8343": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cca8c72e-6c97-4790-8998-bae6bacd8343", + "Name": null + }, + "5eee5b7d-e4bd-4092-af64-b3a623e6de4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5eee5b7d-e4bd-4092-af64-b3a623e6de4f", + "Name": "W12x152", + "CellId": 149, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "aff7bd80-a1e7-46f8-8af8-a4beae6b71e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aff7bd80-a1e7-46f8-8af8-a4beae6b71e3", + "Name": null + }, + "a7e9574a-31e0-4f34-bb5a-137f59929a28": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a7e9574a-31e0-4f34-bb5a-137f59929a28", + "Name": "W12x152", + "CellId": 149, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e380a03a-4417-49a6-bd4c-8fabd9a71222": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e380a03a-4417-49a6-bd4c-8fabd9a71222", + "Name": null + }, + "df3100f6-94e1-45e6-8359-d528b366ff71": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "df3100f6-94e1-45e6-8359-d528b366ff71", + "Name": "W12x152", + "CellId": 149, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0e4e7eef-56ed-4eac-bc7d-5951164bfa9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e4e7eef-56ed-4eac-bc7d-5951164bfa9a", + "Name": null + }, + "9c24d1aa-cbee-4bdc-a33a-7894b0d24bf2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9c24d1aa-cbee-4bdc-a33a-7894b0d24bf2", + "Name": "W12x152", + "CellId": 150, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7c87ee2a-6a23-4cd3-9eac-c6257749faee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c87ee2a-6a23-4cd3-9eac-c6257749faee", + "Name": null + }, + "a69a2334-feb7-4734-b36d-a7a2908fb10c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a69a2334-feb7-4734-b36d-a7a2908fb10c", + "Name": "W12x152", + "CellId": 150, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "cad570f5-d050-49e9-a41a-053830e4d3c9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cad570f5-d050-49e9-a41a-053830e4d3c9", + "Name": null + }, + "9ceeec99-a948-41d7-952a-de6b077d7dde": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9ceeec99-a948-41d7-952a-de6b077d7dde", + "Name": "W12x152", + "CellId": 151, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fa7abb7c-2c84-4980-8e9c-2349ede0d5fb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa7abb7c-2c84-4980-8e9c-2349ede0d5fb", + "Name": null + }, + "16b9e9c9-27c3-421c-8e23-1673d97291c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "16b9e9c9-27c3-421c-8e23-1673d97291c5", + "Name": "W12x152", + "CellId": 151, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "07c19924-5df4-4c83-9b31-9a3115e1bd01": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "07c19924-5df4-4c83-9b31-9a3115e1bd01", + "Name": null + }, + "3e1b2f51-25b2-4888-8dd2-ad8249172097": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3e1b2f51-25b2-4888-8dd2-ad8249172097", + "Name": "W12x152", + "CellId": 151, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d62ef690-9226-4125-b3d6-5f496211c9ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d62ef690-9226-4125-b3d6-5f496211c9ac", + "Name": null + }, + "816d26d1-fa60-471e-99f3-573438a17351": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "816d26d1-fa60-471e-99f3-573438a17351", + "Name": "W12x152", + "CellId": 152, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1ddffee6-9e67-471d-881e-01ee8c2a03db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ddffee6-9e67-471d-881e-01ee8c2a03db", + "Name": null + }, + "279d8968-2b89-46aa-be33-a115a2cc81ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "279d8968-2b89-46aa-be33-a115a2cc81ab", + "Name": "W12x152", + "CellId": 152, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9f1a700c-b32a-447d-b9e0-af9e9da751a5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f1a700c-b32a-447d-b9e0-af9e9da751a5", + "Name": null + }, + "133d4b7c-1c55-462a-bc1e-2f5477f69037": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "133d4b7c-1c55-462a-bc1e-2f5477f69037", + "Name": "W12x152", + "CellId": 152, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "32ebc887-88e3-44cd-9792-29fca5927025": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32ebc887-88e3-44cd-9792-29fca5927025", + "Name": null + }, + "540067dc-7a46-4bf1-a270-8e7d033d05b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "540067dc-7a46-4bf1-a270-8e7d033d05b3", + "Name": "W12x152", + "CellId": 153, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d1c40869-50cf-4f9f-84b7-79a0eeb0d49a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1c40869-50cf-4f9f-84b7-79a0eeb0d49a", + "Name": null + }, + "d78b8175-a450-4ada-977e-58df17871fb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d78b8175-a450-4ada-977e-58df17871fb7", + "Name": "W12x152", + "CellId": 153, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "53062684-81b4-4cf9-b521-fc06ffddde3a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53062684-81b4-4cf9-b521-fc06ffddde3a", + "Name": null + }, + "d01e3d5e-4c36-474f-bc44-713efec62aeb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d01e3d5e-4c36-474f-bc44-713efec62aeb", + "Name": "W12x152", + "CellId": 153, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "10692b6c-4c42-4291-81ff-633ea040ae0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10692b6c-4c42-4291-81ff-633ea040ae0b", + "Name": null + }, + "0d756bc5-5678-45aa-bd91-2270099f79e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0d756bc5-5678-45aa-bd91-2270099f79e4", + "Name": "W12x152", + "CellId": 154, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "10b9b980-2932-4f68-8e53-633edfe18e32": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10b9b980-2932-4f68-8e53-633edfe18e32", + "Name": null + }, + "9bcb2a21-a75c-464d-9418-29b9c4219b2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9bcb2a21-a75c-464d-9418-29b9c4219b2f", + "Name": "W12x152", + "CellId": 154, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b5ecc0d-47f7-4d2c-a27c-c64a7871b900": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b5ecc0d-47f7-4d2c-a27c-c64a7871b900", + "Name": null + }, + "24f0a58b-1e34-47aa-90c9-4f23a76e02f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "24f0a58b-1e34-47aa-90c9-4f23a76e02f2", + "Name": "W12x152", + "CellId": 154, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "49ebe05d-1c4e-47c5-b079-797917b3e8fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49ebe05d-1c4e-47c5-b079-797917b3e8fc", + "Name": null + }, + "51a11f9e-ec12-4f95-87e4-06cdd72b8533": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "51a11f9e-ec12-4f95-87e4-06cdd72b8533", + "Name": "W12x152", + "CellId": 155, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "f9f400f9-d4ef-45c7-bd99-1cababf36542": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f9f400f9-d4ef-45c7-bd99-1cababf36542", + "Name": null + }, + "b6b0ff09-24a8-43d9-8b5c-094a3dd18f6d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b6b0ff09-24a8-43d9-8b5c-094a3dd18f6d", + "Name": "W12x152", + "CellId": 155, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9c9e5ad5-2d9b-41e5-b893-e669fadb81f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c9e5ad5-2d9b-41e5-b893-e669fadb81f5", + "Name": null + }, + "b27a551d-22de-4219-860e-fcc014915556": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b27a551d-22de-4219-860e-fcc014915556", + "Name": "W12x152", + "CellId": 156, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fce653f6-5e01-41f4-9d8d-52d54c4332d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fce653f6-5e01-41f4-9d8d-52d54c4332d0", + "Name": null + }, + "51ae1991-6e92-4d38-8b9f-e15a50ec6281": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "51ae1991-6e92-4d38-8b9f-e15a50ec6281", + "Name": "W12x152", + "CellId": 156, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7bd146c0-867f-4966-834e-ed39c254a4b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7bd146c0-867f-4966-834e-ed39c254a4b5", + "Name": null + }, + "f46806fa-2238-41a4-8352-06475f834eca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f46806fa-2238-41a4-8352-06475f834eca", + "Name": "W12x152", + "CellId": 156, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "486e1191-3f72-4940-a410-6259f864747a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "486e1191-3f72-4940-a410-6259f864747a", + "Name": null + }, + "fa96713a-211a-468f-a330-bdade2343a0f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fa96713a-211a-468f-a330-bdade2343a0f", + "Name": "W12x152", + "CellId": 157, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "49751d31-477a-4f77-bd5f-7156092f1c49": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49751d31-477a-4f77-bd5f-7156092f1c49", + "Name": null + }, + "1d25c174-bdc2-4b22-bdcc-1dfedccac0a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1d25c174-bdc2-4b22-bdcc-1dfedccac0a6", + "Name": "W12x152", + "CellId": 157, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3fe3e6fe-edb1-4600-8131-6898c47ac457": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3fe3e6fe-edb1-4600-8131-6898c47ac457", + "Name": null + }, + "20b6e150-e315-40ea-9a33-58435bbbf525": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "20b6e150-e315-40ea-9a33-58435bbbf525", + "Name": "W12x152", + "CellId": 157, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9c5cf233-1337-47c3-9c33-4c6b64e6e8ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c5cf233-1337-47c3-9c33-4c6b64e6e8ed", + "Name": null + }, + "ba05ed80-509b-4a21-9334-83b9eab3f5cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ba05ed80-509b-4a21-9334-83b9eab3f5cd", + "Name": "W12x152", + "CellId": 158, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "80703c97-7d41-490a-9fb6-641545c18701": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80703c97-7d41-490a-9fb6-641545c18701", + "Name": null + }, + "a3303247-51d8-4dc6-863c-276ad9c53b10": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a3303247-51d8-4dc6-863c-276ad9c53b10", + "Name": "W12x152", + "CellId": 158, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7f131c91-5984-4621-a19b-fd41302d8f7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7f131c91-5984-4621-a19b-fd41302d8f7a", + "Name": null + }, + "ea05ea04-97ec-4ef4-849d-5d25fa89d3e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ea05ea04-97ec-4ef4-849d-5d25fa89d3e8", + "Name": "W12x152", + "CellId": 158, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9a9e03bb-d329-4021-aef5-f0c1124ec604": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a9e03bb-d329-4021-aef5-f0c1124ec604", + "Name": null + }, + "64f66117-2ee5-4d8c-8913-04d3686d8b36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "64f66117-2ee5-4d8c-8913-04d3686d8b36", + "Name": "W12x152", + "CellId": 159, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f78632e7-7490-471c-9924-e77359eeb9a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f78632e7-7490-471c-9924-e77359eeb9a2", + "Name": null + }, + "8c3895b5-7536-4b11-aaae-17a904510532": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8c3895b5-7536-4b11-aaae-17a904510532", + "Name": "W12x152", + "CellId": 159, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "761ad38e-b6c9-4878-b9ee-1c347435c611": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "761ad38e-b6c9-4878-b9ee-1c347435c611", + "Name": null + }, + "95869294-87d4-4e2c-9433-bd5cd525fc71": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "95869294-87d4-4e2c-9433-bd5cd525fc71", + "Name": "W12x152", + "CellId": 159, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0544ced9-d1a9-43d9-9814-2588b1f45274": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0544ced9-d1a9-43d9-9814-2588b1f45274", + "Name": null + }, + "d4754413-96c6-4217-ac64-07ceb86139bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d4754413-96c6-4217-ac64-07ceb86139bb", + "Name": "W12x152", + "CellId": 160, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b8b74c9a-8e0f-4cd9-a9cc-c72193f7c8ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b8b74c9a-8e0f-4cd9-a9cc-c72193f7c8ed", + "Name": null + }, + "2e9a581a-4ecf-467f-b271-16fe8d38b979": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2e9a581a-4ecf-467f-b271-16fe8d38b979", + "Name": "W12x152", + "CellId": 160, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8389a62a-e511-4483-93c0-dd61dd272d43": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8389a62a-e511-4483-93c0-dd61dd272d43", + "Name": null + }, + "91a80d94-3ee7-4457-9587-6903c814a970": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "91a80d94-3ee7-4457-9587-6903c814a970", + "Name": "W12x152", + "CellId": 161, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "134d8208-4aba-4460-b89f-8729c56dff53": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "134d8208-4aba-4460-b89f-8729c56dff53", + "Name": null + }, + "9739d31c-abcc-4e29-b195-7214b7b4553f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9739d31c-abcc-4e29-b195-7214b7b4553f", + "Name": "W12x152", + "CellId": 161, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "294283d2-9d25-4827-8f42-af3d66f6c056": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "294283d2-9d25-4827-8f42-af3d66f6c056", + "Name": null + }, + "2ff192d8-990d-4020-8008-38dffb686d2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2ff192d8-990d-4020-8008-38dffb686d2a", + "Name": "W12x152", + "CellId": 161, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15c1a361-0a63-4c18-8033-391cf48f11f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15c1a361-0a63-4c18-8033-391cf48f11f2", + "Name": null + }, + "3ad2730e-3f76-49ad-be41-dedafbb6cc75": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3ad2730e-3f76-49ad-be41-dedafbb6cc75", + "Name": "W12x152", + "CellId": 162, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "148790d0-4444-4030-a748-2e9813eb71eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "148790d0-4444-4030-a748-2e9813eb71eb", + "Name": null + }, + "205a6c33-1c3d-4d33-8c9d-9e921e97dcca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "205a6c33-1c3d-4d33-8c9d-9e921e97dcca", + "Name": "W12x152", + "CellId": 162, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3d6a606f-e487-4b59-9b45-110c71bc0b86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3d6a606f-e487-4b59-9b45-110c71bc0b86", + "Name": null + }, + "819c7c12-8ed0-47a7-86fb-7404d9b4adf5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "819c7c12-8ed0-47a7-86fb-7404d9b4adf5", + "Name": "W12x152", + "CellId": 162, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4624841d-7093-4269-b9f7-3dfd217d5ba2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4624841d-7093-4269-b9f7-3dfd217d5ba2", + "Name": null + }, + "abd69d33-fd83-49e2-91f1-0b8fcdc33b26": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "abd69d33-fd83-49e2-91f1-0b8fcdc33b26", + "Name": "W12x152", + "CellId": 163, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f05dc298-d720-4a03-9067-3cb94bf85bef": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f05dc298-d720-4a03-9067-3cb94bf85bef", + "Name": null + }, + "9b9bb570-57dd-4c3e-817b-4b9d03c36c08": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9b9bb570-57dd-4c3e-817b-4b9d03c36c08", + "Name": "W12x152", + "CellId": 163, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3a0ad797-6c81-488c-887e-16b5f4814c9e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3a0ad797-6c81-488c-887e-16b5f4814c9e", + "Name": null + }, + "b0bdd28c-3e3a-4f05-8ef6-2a6f9839cf22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b0bdd28c-3e3a-4f05-8ef6-2a6f9839cf22", + "Name": "W12x152", + "CellId": 163, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "083368c1-07fd-4845-8f85-c66792dea379": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "083368c1-07fd-4845-8f85-c66792dea379", + "Name": null + }, + "c7adc3e0-b641-49c9-867a-22b1913055b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c7adc3e0-b641-49c9-867a-22b1913055b7", + "Name": "W12x152", + "CellId": 164, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bf518c02-83fa-463d-9845-4d0dc3678cf6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bf518c02-83fa-463d-9845-4d0dc3678cf6", + "Name": null + }, + "e4e01a5b-b7ca-4450-a30b-586787147f31": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e4e01a5b-b7ca-4450-a30b-586787147f31", + "Name": "W12x152", + "CellId": 164, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7cb42a51-3be4-48e2-b853-bd599c11f9ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7cb42a51-3be4-48e2-b853-bd599c11f9ab", + "Name": null + }, + "cb34c68d-1ca1-4cd3-b0fd-c55dd6e57bbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cb34c68d-1ca1-4cd3-b0fd-c55dd6e57bbb", + "Name": "W12x152", + "CellId": 164, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2b8c9a87-4a5d-4f78-abc2-732119cb03d1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b8c9a87-4a5d-4f78-abc2-732119cb03d1", + "Name": null + }, + "a5b85343-2322-41ef-a285-b12fb36a9279": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a5b85343-2322-41ef-a285-b12fb36a9279", + "Name": "W12x152", + "CellId": 165, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "bbc7e0ea-0e5a-4320-8374-066799f01ff9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bbc7e0ea-0e5a-4320-8374-066799f01ff9", + "Name": null + }, + "f719e3f8-74a3-4620-a7b0-1e7ab2b7603e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f719e3f8-74a3-4620-a7b0-1e7ab2b7603e", + "Name": "W12x152", + "CellId": 165, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4ecb11ff-6f24-496e-a495-f12b929d5cc1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ecb11ff-6f24-496e-a495-f12b929d5cc1", + "Name": null + }, + "456a00e5-0976-4cff-a80f-dba13079602a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "456a00e5-0976-4cff-a80f-dba13079602a", + "Name": "W12x152", + "CellId": 166, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e9bc7c87-f4a0-4520-a7e3-a01caa45ece7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 12.2 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e9bc7c87-f4a0-4520-a7e3-a01caa45ece7", + "Name": null + }, + "478b906b-c233-46a2-bea9-5591a6d37bba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "478b906b-c233-46a2-bea9-5591a6d37bba", + "Name": "W12x152", + "CellId": 166, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "04ece645-f181-4bc3-a06b-ac931f7feef8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 12.2 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04ece645-f181-4bc3-a06b-ac931f7feef8", + "Name": null + }, + "399465e3-a9e7-425c-bbc4-a02f40696fb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "399465e3-a9e7-425c-bbc4-a02f40696fb8", + "Name": "W12x152", + "CellId": 167, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "119afa48-4722-4939-aeb7-d1aaa8a4f672": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 20.0 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "119afa48-4722-4939-aeb7-d1aaa8a4f672", + "Name": null + }, + "7910d5f6-9bb4-407e-bf75-6e49457f7a34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7910d5f6-9bb4-407e-bf75-6e49457f7a34", + "Name": "W12x152", + "CellId": 167, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9c9b0aaa-0b94-4ed3-b95e-4e24bde94398": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 20.0 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c9b0aaa-0b94-4ed3-b95e-4e24bde94398", + "Name": null + }, + "62976abb-e91c-4cb9-89e7-55992fb709c6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "62976abb-e91c-4cb9-89e7-55992fb709c6", + "Name": "W12x152", + "CellId": 168, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7a1fc0dc-28fd-46e5-8bdb-4eaf2110b422": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7a1fc0dc-28fd-46e5-8bdb-4eaf2110b422", + "Name": null + }, + "7a91d33e-b882-4552-9f14-f0073b7bd896": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7a91d33e-b882-4552-9f14-f0073b7bd896", + "Name": "W12x152", + "CellId": 168, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "420fdfee-4264-429e-954b-b400aff6dfa8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "420fdfee-4264-429e-954b-b400aff6dfa8", + "Name": null + }, + "7328d769-5ee3-47ea-8d0f-5576319940d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7328d769-5ee3-47ea-8d0f-5576319940d3", + "Name": "W12x152", + "CellId": 168, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "af0a62a1-5100-4c40-a804-9a63157c004b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "af0a62a1-5100-4c40-a804-9a63157c004b", + "Name": null + }, + "2ba2b496-922a-496e-a7b9-31b4803df00f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2ba2b496-922a-496e-a7b9-31b4803df00f", + "Name": "W12x152", + "CellId": 169, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "72b9f740-af7e-4fa4-a80f-b55d3df028dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72b9f740-af7e-4fa4-a80f-b55d3df028dd", + "Name": null + }, + "8d2d9125-05de-4bec-be44-a6138b6e46f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8d2d9125-05de-4bec-be44-a6138b6e46f7", + "Name": "W12x152", + "CellId": 169, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4de065a2-c3c4-4bb7-bed6-cf4a6145b8a1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4de065a2-c3c4-4bb7-bed6-cf4a6145b8a1", + "Name": null + }, + "81a83a1a-c188-4937-b133-74ffbe83e3d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "81a83a1a-c188-4937-b133-74ffbe83e3d1", + "Name": "W12x152", + "CellId": 169, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "de0f69d3-ae3d-4676-bf9a-ae7c75c4f673": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "de0f69d3-ae3d-4676-bf9a-ae7c75c4f673", + "Name": null + }, + "77b92ad6-ff9f-4efa-9089-1ad62eca1232": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "77b92ad6-ff9f-4efa-9089-1ad62eca1232", + "Name": "W12x152", + "CellId": 170, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "30ea848a-0294-49fa-bcbd-f7d93b21e581": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30ea848a-0294-49fa-bcbd-f7d93b21e581", + "Name": null + }, + "06ff9abd-95ac-4a77-ae34-090c45ebde46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "06ff9abd-95ac-4a77-ae34-090c45ebde46", + "Name": "W12x152", + "CellId": 170, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "57a8abaa-7900-411a-a85f-b3589c824777": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "57a8abaa-7900-411a-a85f-b3589c824777", + "Name": null + }, + "7d708dab-d00b-4fa7-8f87-ddabb39ac0e9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7d708dab-d00b-4fa7-8f87-ddabb39ac0e9", + "Name": "W12x152", + "CellId": 171, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a5d6bffc-2f9c-4269-816b-ab51cdce0df3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a5d6bffc-2f9c-4269-816b-ab51cdce0df3", + "Name": null + }, + "79996cda-4a35-4db8-9e25-b11da6aa130e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "79996cda-4a35-4db8-9e25-b11da6aa130e", + "Name": "W12x152", + "CellId": 171, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5c285561-8617-4345-9d86-6a5f394128d2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c285561-8617-4345-9d86-6a5f394128d2", + "Name": null + }, + "2d7f011c-35bd-42a5-bc69-83762623e85d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2d7f011c-35bd-42a5-bc69-83762623e85d", + "Name": "W12x152", + "CellId": 174, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "93b37eb9-a9ef-4910-8e0f-f5465225bcff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "93b37eb9-a9ef-4910-8e0f-f5465225bcff", + "Name": null + }, + "40f4c3d8-30cb-47c4-ac28-fef115d569ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "40f4c3d8-30cb-47c4-ac28-fef115d569ba", + "Name": "W12x152", + "CellId": 174, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6879c94b-58c8-4011-9bd9-a71a2a4f42bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6879c94b-58c8-4011-9bd9-a71a2a4f42bf", + "Name": null + }, + "21a1607d-4014-4161-8a0e-51df56470c58": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "21a1607d-4014-4161-8a0e-51df56470c58", + "Name": "W12x152", + "CellId": 174, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bd9ec718-38c5-49ac-9902-16a3fbda3e33": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bd9ec718-38c5-49ac-9902-16a3fbda3e33", + "Name": null + }, + "47f2ad8c-5585-4716-9f7a-061e73e1c8c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "47f2ad8c-5585-4716-9f7a-061e73e1c8c3", + "Name": "W12x152", + "CellId": 175, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4179a531-3079-4091-a35e-695079ee2681": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4179a531-3079-4091-a35e-695079ee2681", + "Name": null + }, + "23b8d252-b18e-4a18-a9a9-a9c0f0ff91a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "23b8d252-b18e-4a18-a9a9-a9c0f0ff91a4", + "Name": "W12x152", + "CellId": 175, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "83d1ade6-c290-4cc4-983b-f1bc2010b7f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83d1ade6-c290-4cc4-983b-f1bc2010b7f4", + "Name": null + }, + "6b7c48d4-ede3-4835-a771-d80a328dee34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6b7c48d4-ede3-4835-a771-d80a328dee34", + "Name": "W12x152", + "CellId": 175, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e33fffa7-2387-42b6-85cc-665fa1ac6488": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e33fffa7-2387-42b6-85cc-665fa1ac6488", + "Name": null + }, + "1693234c-f4e6-4b74-9066-9679c53f91e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1693234c-f4e6-4b74-9066-9679c53f91e7", + "Name": "W12x152", + "CellId": 176, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ecfd40b5-e776-488b-b434-32878669781a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ecfd40b5-e776-488b-b434-32878669781a", + "Name": null + }, + "5fb9067e-4be9-4cfc-ad91-195c692a7a96": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5fb9067e-4be9-4cfc-ad91-195c692a7a96", + "Name": "W12x152", + "CellId": 176, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b8a941b6-c188-4e4f-9e7a-227357badaf9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b8a941b6-c188-4e4f-9e7a-227357badaf9", + "Name": null + }, + "55555272-46ce-45c1-b859-7cec136715ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "55555272-46ce-45c1-b859-7cec136715ab", + "Name": "W12x152", + "CellId": 176, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4a289917-06b0-4e1e-8b52-77d5b3c060e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a289917-06b0-4e1e-8b52-77d5b3c060e3", + "Name": null + }, + "7eb13d2c-6d9f-49b1-bb1a-6b1a686dfbc8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7eb13d2c-6d9f-49b1-bb1a-6b1a686dfbc8", + "Name": "W12x152", + "CellId": 177, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "08dacb74-8e09-47a6-b26f-1ef4667b60f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "08dacb74-8e09-47a6-b26f-1ef4667b60f3", + "Name": null + }, + "c4424000-6d32-46df-b2be-46fc77bc3c77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c4424000-6d32-46df-b2be-46fc77bc3c77", + "Name": "W12x152", + "CellId": 177, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "da556733-cae6-47fb-b974-9e71a569628a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da556733-cae6-47fb-b974-9e71a569628a", + "Name": null + }, + "45070934-7cc0-40d7-bd4c-f0ee4c154a36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "45070934-7cc0-40d7-bd4c-f0ee4c154a36", + "Name": "W12x152", + "CellId": 177, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cc17786a-59d5-426b-ab95-a1b1d4495e61": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc17786a-59d5-426b-ab95-a1b1d4495e61", + "Name": null + }, + "1a8f205c-78a9-44f7-b5b0-3fbf277da1ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1a8f205c-78a9-44f7-b5b0-3fbf277da1ce", + "Name": "W12x152", + "CellId": 178, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c8c2b44e-68bd-4ab3-b7e6-12637334bf62": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c8c2b44e-68bd-4ab3-b7e6-12637334bf62", + "Name": null + }, + "acfe23ec-1a98-43f6-9a18-6f40f7f0a67f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "acfe23ec-1a98-43f6-9a18-6f40f7f0a67f", + "Name": "W12x152", + "CellId": 178, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "138580b3-43d0-415c-9ac7-aa856541739b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "138580b3-43d0-415c-9ac7-aa856541739b", + "Name": null + }, + "4677d8f0-10b1-482f-9216-438977be98fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4677d8f0-10b1-482f-9216-438977be98fe", + "Name": "W12x152", + "CellId": 179, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "48f760e8-6bcd-49fa-96bf-bff52eafa2dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "48f760e8-6bcd-49fa-96bf-bff52eafa2dd", + "Name": null + }, + "4509346a-4565-41c8-8216-62e7a9f9d6f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4509346a-4565-41c8-8216-62e7a9f9d6f5", + "Name": "W12x152", + "CellId": 179, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "375765f1-658d-4257-8c8b-4413fa8847ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "375765f1-658d-4257-8c8b-4413fa8847ac", + "Name": null + }, + "678e7bf6-d340-435b-9325-dff86003541d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "678e7bf6-d340-435b-9325-dff86003541d", + "Name": "W12x152", + "CellId": 180, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4de736fd-1caa-41ef-b639-22116450ad86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 12.2 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4de736fd-1caa-41ef-b639-22116450ad86", + "Name": null + }, + "efc32026-72ac-4dcf-a090-28f1022f2915": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "efc32026-72ac-4dcf-a090-28f1022f2915", + "Name": "W12x152", + "CellId": 180, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8a108595-59e9-4078-b917-a5856b804ef7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8a108595-59e9-4078-b917-a5856b804ef7", + "Name": null + }, + "45fe2d51-5eb7-4801-a5e2-e33c28a1a853": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "45fe2d51-5eb7-4801-a5e2-e33c28a1a853", + "Name": "W12x152", + "CellId": 181, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0a6bfffb-2ec8-48c0-a31e-e92f20a066b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 20.0 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a6bfffb-2ec8-48c0-a31e-e92f20a066b5", + "Name": null + }, + "8416c996-4b82-434e-9a32-5ef860f1d831": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8416c996-4b82-434e-9a32-5ef860f1d831", + "Name": "W12x152", + "CellId": 181, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4a627c3a-cea9-4c41-a10e-04be43fe5b8b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a627c3a-cea9-4c41-a10e-04be43fe5b8b", + "Name": null + }, + "78a00951-be91-4ea4-a0e6-2033075b0a40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "78a00951-be91-4ea4-a0e6-2033075b0a40", + "Name": "W12x152", + "CellId": 182, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "91dbec9a-ec5c-472d-bd6b-594c8234eba6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91dbec9a-ec5c-472d-bd6b-594c8234eba6", + "Name": null + }, + "c3bff4e7-f635-4bee-882c-cb66c50a1220": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c3bff4e7-f635-4bee-882c-cb66c50a1220", + "Name": "W12x152", + "CellId": 182, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9d073786-1864-4a00-95fa-d1aa2b9fd691": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9d073786-1864-4a00-95fa-d1aa2b9fd691", + "Name": null + }, + "e014e074-8376-4cf6-816c-2be7b099fe6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e014e074-8376-4cf6-816c-2be7b099fe6b", + "Name": "W12x152", + "CellId": 182, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d89539a7-fd59-4c55-b67c-802085e4688b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d89539a7-fd59-4c55-b67c-802085e4688b", + "Name": null + }, + "6c202453-3870-4e84-ad4b-59cd4364334d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6c202453-3870-4e84-ad4b-59cd4364334d", + "Name": "W12x152", + "CellId": 183, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1a8fa706-a1bb-4f26-b7af-7db964862c16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1a8fa706-a1bb-4f26-b7af-7db964862c16", + "Name": null + }, + "84dc1b5c-ca3c-4aa3-ab1d-68514d3400a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "84dc1b5c-ca3c-4aa3-ab1d-68514d3400a1", + "Name": "W12x152", + "CellId": 183, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b1dd924c-2c03-4a38-97a5-4c5bebaee529": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1dd924c-2c03-4a38-97a5-4c5bebaee529", + "Name": null + }, + "2315a225-027f-4c02-a69e-964ce5fd0fdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2315a225-027f-4c02-a69e-964ce5fd0fdf", + "Name": "W12x152", + "CellId": 183, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "32cc37b7-9233-45a0-b0ac-72e15f7bcaed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32cc37b7-9233-45a0-b0ac-72e15f7bcaed", + "Name": null + }, + "ce7736be-1028-4430-8471-743ac284ccb6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ce7736be-1028-4430-8471-743ac284ccb6", + "Name": "W12x152", + "CellId": 184, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1635a1c4-18a0-494a-ba33-907c1d0c71d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1635a1c4-18a0-494a-ba33-907c1d0c71d0", + "Name": null + }, + "0436140c-409e-4844-aed9-9329f5218859": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0436140c-409e-4844-aed9-9329f5218859", + "Name": "W12x152", + "CellId": 184, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4d423244-1fb9-4f61-ab07-754733e6cab3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d423244-1fb9-4f61-ab07-754733e6cab3", + "Name": null + }, + "7302abfd-c537-4c63-aed5-41da2dae2807": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7302abfd-c537-4c63-aed5-41da2dae2807", + "Name": "W12x152", + "CellId": 184, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dd84f3a4-b7e1-4656-88f7-f98f2fc83da5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd84f3a4-b7e1-4656-88f7-f98f2fc83da5", + "Name": null + }, + "a8c4ff3d-dafe-44a9-9252-a250f9a3d23c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a8c4ff3d-dafe-44a9-9252-a250f9a3d23c", + "Name": "W12x152", + "CellId": 185, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2517f473-0911-4989-998f-6bd1af7d15fb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2517f473-0911-4989-998f-6bd1af7d15fb", + "Name": null + }, + "89fb5b8b-220d-4912-9a51-6fc9d38af9db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "89fb5b8b-220d-4912-9a51-6fc9d38af9db", + "Name": "W12x152", + "CellId": 185, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e871beb2-c8b8-4007-a9f4-11257761e8f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e871beb2-c8b8-4007-a9f4-11257761e8f3", + "Name": null + }, + "c582815b-73dc-4bf4-b8ff-dfd0bc226bb9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c582815b-73dc-4bf4-b8ff-dfd0bc226bb9", + "Name": "W12x152", + "CellId": 185, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "352be2b2-3f40-4621-b889-3c0ce0094922": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "352be2b2-3f40-4621-b889-3c0ce0094922", + "Name": null + }, + "9bb7fb56-f02f-4c86-8d3a-077a3e8febbd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9bb7fb56-f02f-4c86-8d3a-077a3e8febbd", + "Name": "W12x152", + "CellId": 186, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a31192a9-673e-453c-8638-03f1630df8bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a31192a9-673e-453c-8638-03f1630df8bf", + "Name": null + }, + "02e0cd86-d09b-45a8-a8b4-b43b55be9f19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "02e0cd86-d09b-45a8-a8b4-b43b55be9f19", + "Name": "W12x152", + "CellId": 186, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8564dc1d-768d-49bb-a8c9-dd19f7e5d4b7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8564dc1d-768d-49bb-a8c9-dd19f7e5d4b7", + "Name": null + }, + "175586ad-3d2d-49ee-aeb5-bfaf26ae185d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "175586ad-3d2d-49ee-aeb5-bfaf26ae185d", + "Name": "W12x152", + "CellId": 187, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b9881d29-6912-40bb-ab1b-b64f38877d5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9881d29-6912-40bb-ab1b-b64f38877d5a", + "Name": null + }, + "918e1d1a-2e53-474b-91c7-74fe5fa4c1df": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "918e1d1a-2e53-474b-91c7-74fe5fa4c1df", + "Name": "W12x152", + "CellId": 187, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3ca80ce3-22d4-4e14-9b5e-3c62b2373e35": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3ca80ce3-22d4-4e14-9b5e-3c62b2373e35", + "Name": null + }, + "5fa5d14c-6910-4d25-a7c2-44b95c9b0861": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5fa5d14c-6910-4d25-a7c2-44b95c9b0861", + "Name": "W12x152", + "CellId": 188, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8b7d4c7c-c0af-4bd1-860c-9d11e3f004d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8b7d4c7c-c0af-4bd1-860c-9d11e3f004d7", + "Name": null + }, + "e9062f1b-62a2-4cbf-aa2d-568fe572b438": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e9062f1b-62a2-4cbf-aa2d-568fe572b438", + "Name": "W12x152", + "CellId": 188, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6a55be65-fd71-4675-bb07-2cd35418905b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a55be65-fd71-4675-bb07-2cd35418905b", + "Name": null + }, + "4a42f77d-9df3-422b-b4c9-d7f315b94213": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4a42f77d-9df3-422b-b4c9-d7f315b94213", + "Name": "W12x152", + "CellId": 188, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "49381491-2759-4463-9512-3bd29c63d5d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49381491-2759-4463-9512-3bd29c63d5d0", + "Name": null + }, + "a45341b9-79ed-44b4-818e-3586c236a657": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a45341b9-79ed-44b4-818e-3586c236a657", + "Name": "W12x152", + "CellId": 189, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "04f85841-5018-4b22-8845-115b359254cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04f85841-5018-4b22-8845-115b359254cf", + "Name": null + }, + "657315a3-33c4-4894-80c0-a7ce29e98756": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "657315a3-33c4-4894-80c0-a7ce29e98756", + "Name": "W12x152", + "CellId": 189, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d9e5b18e-bda2-4c25-a88a-2c779d557839": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9e5b18e-bda2-4c25-a88a-2c779d557839", + "Name": null + }, + "803350bd-d04d-4acf-b263-c13f7cde8db7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "803350bd-d04d-4acf-b263-c13f7cde8db7", + "Name": "W12x152", + "CellId": 189, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "780b1b40-dfe9-415c-8baf-c2e727a55eba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "780b1b40-dfe9-415c-8baf-c2e727a55eba", + "Name": null + }, + "5208aee4-a370-4b00-b81d-2a8d1208cc64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5208aee4-a370-4b00-b81d-2a8d1208cc64", + "Name": "W12x152", + "CellId": 190, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6fa2d040-bdd8-44da-93a2-9259698904b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6fa2d040-bdd8-44da-93a2-9259698904b4", + "Name": null + }, + "806cf697-e31e-4887-935f-7987920c5433": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "806cf697-e31e-4887-935f-7987920c5433", + "Name": "W12x152", + "CellId": 190, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0a636e3c-8750-4775-8cef-3259815aa117": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a636e3c-8750-4775-8cef-3259815aa117", + "Name": null + }, + "9feb53d5-7151-447e-a797-a56b43122e6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9feb53d5-7151-447e-a797-a56b43122e6f", + "Name": "W12x152", + "CellId": 190, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a38793d8-4d83-456c-a232-95d4562ac063": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a38793d8-4d83-456c-a232-95d4562ac063", + "Name": null + }, + "dcdff75d-e2b8-4965-942f-a8db5356e5b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "dcdff75d-e2b8-4965-942f-a8db5356e5b8", + "Name": "W12x152", + "CellId": 191, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "00e0e333-9e2d-4413-a9f3-899b413e8d83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "00e0e333-9e2d-4413-a9f3-899b413e8d83", + "Name": null + }, + "fec41a59-2d7f-40fe-8be6-578364312850": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fec41a59-2d7f-40fe-8be6-578364312850", + "Name": "W12x152", + "CellId": 191, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7e8e07bf-0499-47d8-b942-3e1e4ea6ebd8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e8e07bf-0499-47d8-b942-3e1e4ea6ebd8", + "Name": null + }, + "b2c09cf3-987a-4054-845f-ad7d9e5705a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b2c09cf3-987a-4054-845f-ad7d9e5705a9", + "Name": "W12x152", + "CellId": 191, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "072d60e9-bcd3-4262-a3c3-009491b6aeb6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "072d60e9-bcd3-4262-a3c3-009491b6aeb6", + "Name": null + }, + "dbd44ba8-c286-4648-9b24-32adf723eb72": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "dbd44ba8-c286-4648-9b24-32adf723eb72", + "Name": "W12x152", + "CellId": 192, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e1bf0b72-8971-44a9-9362-a2b74e24535e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e1bf0b72-8971-44a9-9362-a2b74e24535e", + "Name": null + }, + "869a235e-0bd5-4d79-8580-f1c610b267aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "869a235e-0bd5-4d79-8580-f1c610b267aa", + "Name": "W12x152", + "CellId": 192, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb7b6147-28cd-48f2-8008-0e5216590695": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb7b6147-28cd-48f2-8008-0e5216590695", + "Name": null + }, + "6abd1bc6-caf1-4941-a087-bdd9651a363c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6abd1bc6-caf1-4941-a087-bdd9651a363c", + "Name": "W12x152", + "CellId": 192, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c0dd109e-dd8d-4ccb-b386-85be046920c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0dd109e-dd8d-4ccb-b386-85be046920c6", + "Name": null + }, + "45dcd078-3cd9-48d9-89c4-21e22cdbf8e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "45dcd078-3cd9-48d9-89c4-21e22cdbf8e1", + "Name": "W12x152", + "CellId": 193, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e1f08dfe-02e2-40d5-81c3-8b023ea4123f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e1f08dfe-02e2-40d5-81c3-8b023ea4123f", + "Name": null + }, + "926659b7-5457-4518-9acb-b3883bec4bed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "926659b7-5457-4518-9acb-b3883bec4bed", + "Name": "W12x152", + "CellId": 193, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5fe6d622-1c95-4afa-923a-362031a12f94": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5fe6d622-1c95-4afa-923a-362031a12f94", + "Name": null + }, + "babb4564-0b8f-4b9b-ad73-6acbafebe585": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "babb4564-0b8f-4b9b-ad73-6acbafebe585", + "Name": "W12x152", + "CellId": 193, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8ae6e5a9-acab-42b5-a3ba-b09d0f091919": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8ae6e5a9-acab-42b5-a3ba-b09d0f091919", + "Name": null + }, + "2f9b1433-430f-43e5-bddb-99084832c977": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2f9b1433-430f-43e5-bddb-99084832c977", + "Name": "W12x152", + "CellId": 194, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "07ebd760-e8cf-4966-bb33-226ec140ae04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "07ebd760-e8cf-4966-bb33-226ec140ae04", + "Name": null + }, + "455dff05-37ba-4c8e-af56-fd7619fc0d06": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "455dff05-37ba-4c8e-af56-fd7619fc0d06", + "Name": "W12x152", + "CellId": 194, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "092b1a88-f60e-4241-b8bc-cf3503111eab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "092b1a88-f60e-4241-b8bc-cf3503111eab", + "Name": null + }, + "68abaf05-12ef-4aeb-a598-6ea43759b67f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "68abaf05-12ef-4aeb-a598-6ea43759b67f", + "Name": "W12x152", + "CellId": 195, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3d34fba3-24a6-437e-ae07-5c36c6153f22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3d34fba3-24a6-437e-ae07-5c36c6153f22", + "Name": null + }, + "37ff2700-6f59-4206-bff8-7e191867381e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "37ff2700-6f59-4206-bff8-7e191867381e", + "Name": "W12x152", + "CellId": 195, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "59ee5752-6dfa-4418-bc62-8a0b4bae932e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "59ee5752-6dfa-4418-bc62-8a0b4bae932e", + "Name": null + }, + "6b8d7332-dfc3-4156-980d-aaf94f145927": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6b8d7332-dfc3-4156-980d-aaf94f145927", + "Name": "W12x152", + "CellId": 196, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0821665f-6a7e-411e-9cae-f53615a35b76": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 12.2 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0821665f-6a7e-411e-9cae-f53615a35b76", + "Name": null + }, + "a1c1fd95-bc25-49b5-a185-f833b95ae324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a1c1fd95-bc25-49b5-a185-f833b95ae324", + "Name": "W12x152", + "CellId": 196, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c7111c59-5113-4c7c-9d5f-aab2104319f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 12.2 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c7111c59-5113-4c7c-9d5f-aab2104319f2", + "Name": null + }, + "3fc54c2f-e338-492f-a4c2-2dab38aba237": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3fc54c2f-e338-492f-a4c2-2dab38aba237", + "Name": "W12x152", + "CellId": 197, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7d4e0492-ce01-4131-8be4-34204a9103da": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 20.0 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d4e0492-ce01-4131-8be4-34204a9103da", + "Name": null + }, + "4f4c0a1c-529d-40ec-b3d0-45ddc0fc55e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4f4c0a1c-529d-40ec-b3d0-45ddc0fc55e1", + "Name": "W12x152", + "CellId": 197, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9efb49e1-5574-49ef-a9e7-8617888beb1f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 20.0 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9efb49e1-5574-49ef-a9e7-8617888beb1f", + "Name": null + }, + "f21b6af8-29eb-4a5c-8a13-d452b569abf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f21b6af8-29eb-4a5c-8a13-d452b569abf8", + "Name": "W12x152", + "CellId": 198, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8c80997b-0327-446d-bfa2-569022693147": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8c80997b-0327-446d-bfa2-569022693147", + "Name": null + }, + "d445ba24-0ec4-4f2c-ac03-60a81876ce2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d445ba24-0ec4-4f2c-ac03-60a81876ce2e", + "Name": "W12x152", + "CellId": 198, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "22e8f68f-b6a3-4d84-bbbe-719868d2e9a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22e8f68f-b6a3-4d84-bbbe-719868d2e9a8", + "Name": null + }, + "768a6187-ea5e-48f0-9b3e-bd6b1738760b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "768a6187-ea5e-48f0-9b3e-bd6b1738760b", + "Name": "W12x152", + "CellId": 198, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fbbf3977-ae7f-4d34-8a1d-fae2d128d998": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbbf3977-ae7f-4d34-8a1d-fae2d128d998", + "Name": null + }, + "08974404-c81a-499e-8100-df78b963755a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "08974404-c81a-499e-8100-df78b963755a", + "Name": "W12x152", + "CellId": 199, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "caa28c24-6f72-42e0-8fc8-95b30a8523ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "caa28c24-6f72-42e0-8fc8-95b30a8523ba", + "Name": null + }, + "6bbb3cc0-b123-4deb-ae11-b9b62a62f534": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6bbb3cc0-b123-4deb-ae11-b9b62a62f534", + "Name": "W12x152", + "CellId": 199, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "85f97a5a-c575-48d0-8a7e-b51a8dae04f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "85f97a5a-c575-48d0-8a7e-b51a8dae04f1", + "Name": null + }, + "cd45d1dc-11ad-4790-a8a1-f097edc3e41c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cd45d1dc-11ad-4790-a8a1-f097edc3e41c", + "Name": "W12x152", + "CellId": 199, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b6b09ae8-10cb-4c53-9beb-885b784e3475": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b6b09ae8-10cb-4c53-9beb-885b784e3475", + "Name": null + }, + "069b8c79-6db9-4469-90b1-5ed49999c6cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "069b8c79-6db9-4469-90b1-5ed49999c6cc", + "Name": "W12x152", + "CellId": 200, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6a5f16db-984e-42a9-9ba0-3f35d63b826e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a5f16db-984e-42a9-9ba0-3f35d63b826e", + "Name": null + }, + "832beff2-8eba-4891-a099-3fd7e276aa78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "832beff2-8eba-4891-a099-3fd7e276aa78", + "Name": "W12x152", + "CellId": 200, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ba10ece4-35a6-4c76-9a0d-6be6d16250cc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba10ece4-35a6-4c76-9a0d-6be6d16250cc", + "Name": null + }, + "c2d66f60-1d4c-4668-8c4e-20d8bef1c9ae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c2d66f60-1d4c-4668-8c4e-20d8bef1c9ae", + "Name": "W12x152", + "CellId": 200, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8f80c72e-a275-4b00-b29c-f085c75ea30f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8f80c72e-a275-4b00-b29c-f085c75ea30f", + "Name": null + }, + "a1ce30db-7058-4874-a2be-09fcad3027a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a1ce30db-7058-4874-a2be-09fcad3027a1", + "Name": "W12x152", + "CellId": 201, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "561735c1-a7e7-4782-ac62-19dade6b0a44": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "561735c1-a7e7-4782-ac62-19dade6b0a44", + "Name": null + }, + "277280b3-9009-41a8-9e9a-074f384d7408": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "277280b3-9009-41a8-9e9a-074f384d7408", + "Name": "W12x152", + "CellId": 201, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "167cc197-981b-4be2-9429-2273e5124e68": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "167cc197-981b-4be2-9429-2273e5124e68", + "Name": null + }, + "6563640a-3792-468c-80d1-6def1cb2b385": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6563640a-3792-468c-80d1-6def1cb2b385", + "Name": "W12x152", + "CellId": 201, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "37ae3b49-0a75-4ec9-9c7d-e6266e74d65b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "37ae3b49-0a75-4ec9-9c7d-e6266e74d65b", + "Name": null + }, + "c743df53-7060-4bb4-b0f0-89438144e9e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c743df53-7060-4bb4-b0f0-89438144e9e4", + "Name": "W12x152", + "CellId": 202, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e11612f5-fc25-47eb-a6de-67df8675ec68": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e11612f5-fc25-47eb-a6de-67df8675ec68", + "Name": null + }, + "8b963dd1-70e7-4a73-b210-00e3fd777c0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8b963dd1-70e7-4a73-b210-00e3fd777c0e", + "Name": "W12x152", + "CellId": 202, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b67dbff7-7b0f-4bd2-952b-dcdc26f339f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b67dbff7-7b0f-4bd2-952b-dcdc26f339f9", + "Name": null + }, + "21833bb5-487c-4794-adfb-c3692418eca2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "21833bb5-487c-4794-adfb-c3692418eca2", + "Name": "W12x152", + "CellId": 202, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3df052d5-c394-43f6-b606-319ac6f4dabf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3df052d5-c394-43f6-b606-319ac6f4dabf", + "Name": null + }, + "ed1d9837-e33a-4282-a104-6afe5769b750": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ed1d9837-e33a-4282-a104-6afe5769b750", + "Name": "W12x152", + "CellId": 203, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cc84f90b-31c6-419f-adf6-3a9fa5ffb2c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc84f90b-31c6-419f-adf6-3a9fa5ffb2c5", + "Name": null + }, + "e1b543d4-23ed-4837-b848-15f96ec467a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e1b543d4-23ed-4837-b848-15f96ec467a5", + "Name": "W12x152", + "CellId": 203, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "30361e75-1064-461d-8da1-98404f84df45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30361e75-1064-461d-8da1-98404f84df45", + "Name": null + }, + "ef396437-d73a-4243-8797-e70e13dc8177": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ef396437-d73a-4243-8797-e70e13dc8177", + "Name": "W12x152", + "CellId": 203, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d626bc41-f934-4974-8d89-3e4abeca81dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d626bc41-f934-4974-8d89-3e4abeca81dd", + "Name": null + }, + "065ca07d-819a-40be-a3ac-26216a6b5b30": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "065ca07d-819a-40be-a3ac-26216a6b5b30", + "Name": "W12x152", + "CellId": 204, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "dc5c9c85-d2bc-490a-b9d7-bc32c7bdcb4d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc5c9c85-d2bc-490a-b9d7-bc32c7bdcb4d", + "Name": null + }, + "d6257d6d-c5de-48df-9259-91e139e0b997": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d6257d6d-c5de-48df-9259-91e139e0b997", + "Name": "W12x152", + "CellId": 204, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "f8eac900-ca0f-4691-8ec0-131f5223c9f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8eac900-ca0f-4691-8ec0-131f5223c9f4", + "Name": null + }, + "3df9ddfa-45b2-4186-acb0-515a1cd9c5bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3df9ddfa-45b2-4186-acb0-515a1cd9c5bc", + "Name": "W12x152", + "CellId": 205, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7dc84077-9d1c-46cd-9f14-7544ee900002": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7dc84077-9d1c-46cd-9f14-7544ee900002", + "Name": null + }, + "e42711ab-e9e6-41b9-8898-9c50d96da17f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e42711ab-e9e6-41b9-8898-9c50d96da17f", + "Name": "W12x152", + "CellId": 205, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7d053e85-6985-428f-9afb-d113613472d1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d053e85-6985-428f-9afb-d113613472d1", + "Name": null + }, + "d129e60f-a050-4b33-beaf-103857669bac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d129e60f-a050-4b33-beaf-103857669bac", + "Name": "W12x152", + "CellId": 206, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b0e04628-93fa-4358-87f2-69a32d36c205": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0e04628-93fa-4358-87f2-69a32d36c205", + "Name": null + }, + "34a22241-0baf-464b-af39-75e40cd99124": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "34a22241-0baf-464b-af39-75e40cd99124", + "Name": "W12x152", + "CellId": 206, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b16f94a2-037b-4a9e-8718-b82dfbaa202f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b16f94a2-037b-4a9e-8718-b82dfbaa202f", + "Name": null + }, + "bffa9fab-0948-45ed-bb8b-dde1f079ae7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bffa9fab-0948-45ed-bb8b-dde1f079ae7d", + "Name": "W12x152", + "CellId": 206, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "875db678-b544-4a32-9d3c-497b77d66005": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "875db678-b544-4a32-9d3c-497b77d66005", + "Name": null + }, + "4eef22d2-8521-4228-95ed-82f4813cd0fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4eef22d2-8521-4228-95ed-82f4813cd0fa", + "Name": "W12x152", + "CellId": 207, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ec1ea603-4c2a-4bd3-ab34-0bb2feb41252": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec1ea603-4c2a-4bd3-ab34-0bb2feb41252", + "Name": null + }, + "ed6a939e-bcef-4fc8-96c5-e504dc3177d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ed6a939e-bcef-4fc8-96c5-e504dc3177d1", + "Name": "W12x152", + "CellId": 207, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "59eac6cc-d39b-4bea-9b0f-3bdf73f0b3a0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "59eac6cc-d39b-4bea-9b0f-3bdf73f0b3a0", + "Name": null + }, + "6c06a6e5-3f77-455d-b216-06f8a721d6b0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6c06a6e5-3f77-455d-b216-06f8a721d6b0", + "Name": "W12x152", + "CellId": 207, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a4c0fb2c-0fcf-4b7b-b94a-1aeb9d1d19b8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a4c0fb2c-0fcf-4b7b-b94a-1aeb9d1d19b8", + "Name": null + }, + "e74b14cb-27a8-4f05-b1de-2f8fde66bdce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e74b14cb-27a8-4f05-b1de-2f8fde66bdce", + "Name": "W12x152", + "CellId": 208, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8cc7a260-5acf-4a27-96f9-14690518d676": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8cc7a260-5acf-4a27-96f9-14690518d676", + "Name": null + }, + "547fec0b-c560-4cca-9b0e-c660adb6b6a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "547fec0b-c560-4cca-9b0e-c660adb6b6a8", + "Name": "W12x152", + "CellId": 208, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "19bc9928-74eb-491d-aab0-3a4f61d02baf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "19bc9928-74eb-491d-aab0-3a4f61d02baf", + "Name": null + }, + "b260b5e2-ab32-40d8-af3f-b37c3054da93": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b260b5e2-ab32-40d8-af3f-b37c3054da93", + "Name": "W12x152", + "CellId": 208, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "12c29383-db53-4900-8a0e-34c812913bef": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12c29383-db53-4900-8a0e-34c812913bef", + "Name": null + }, + "a45d4390-8524-4dfb-b797-64fff3a4974b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a45d4390-8524-4dfb-b797-64fff3a4974b", + "Name": "W12x152", + "CellId": 209, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a38a44a1-1087-43bb-b25b-79cec82e65d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a38a44a1-1087-43bb-b25b-79cec82e65d6", + "Name": null + }, + "e4e865e9-8101-4f34-bb0e-54af8a930291": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e4e865e9-8101-4f34-bb0e-54af8a930291", + "Name": "W12x152", + "CellId": 209, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "244b52bc-43bb-47d9-af1d-c0716206c7d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "244b52bc-43bb-47d9-af1d-c0716206c7d3", + "Name": null + }, + "6e011abf-1c77-44b9-ba2e-3fdeaeac84be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6e011abf-1c77-44b9-ba2e-3fdeaeac84be", + "Name": "W12x152", + "CellId": 209, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b3ab0e4d-9e4d-4225-9ab4-ae3c4dd3dc22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b3ab0e4d-9e4d-4225-9ab4-ae3c4dd3dc22", + "Name": null + }, + "cb83bf19-5724-4a83-841c-c1f379dce549": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "cb83bf19-5724-4a83-841c-c1f379dce549", + "Name": "W12x152", + "CellId": 210, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "870f733c-7b91-4e8b-b2ab-be1009055ede": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "870f733c-7b91-4e8b-b2ab-be1009055ede", + "Name": null + }, + "36ef32a4-2d6d-4b50-b35c-492d021b9bf6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "36ef32a4-2d6d-4b50-b35c-492d021b9bf6", + "Name": "W12x152", + "CellId": 210, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4daca590-a3f5-404c-84d9-5ca3fd6d8eed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4daca590-a3f5-404c-84d9-5ca3fd6d8eed", + "Name": null + }, + "9b6a9d7d-304b-40a0-aae5-840d5c0f8dcb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9b6a9d7d-304b-40a0-aae5-840d5c0f8dcb", + "Name": "W12x152", + "CellId": 210, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb078d9e-9ab3-4363-ba98-c7a9b31c7667": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb078d9e-9ab3-4363-ba98-c7a9b31c7667", + "Name": null + }, + "ea472623-c07a-4df3-a711-8c17920c994c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ea472623-c07a-4df3-a711-8c17920c994c", + "Name": "W12x152", + "CellId": 211, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e38ad8ba-e1da-4bfe-8a5a-b56128e139d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e38ad8ba-e1da-4bfe-8a5a-b56128e139d6", + "Name": null + }, + "026c292b-e07b-4abd-aec3-72ea71b76613": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "026c292b-e07b-4abd-aec3-72ea71b76613", + "Name": "W12x152", + "CellId": 211, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7b925f08-e710-4308-af12-3d871292c787": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7b925f08-e710-4308-af12-3d871292c787", + "Name": null + }, + "8ec4ac2e-bb1e-4d0a-853a-934a4013370b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8ec4ac2e-bb1e-4d0a-853a-934a4013370b", + "Name": "W12x152", + "CellId": 211, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f76815cf-ba4f-42af-8fad-d6b91514d6c2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f76815cf-ba4f-42af-8fad-d6b91514d6c2", + "Name": null + }, + "18599b4e-e8bd-48a4-87a5-0c94e9c96c36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "18599b4e-e8bd-48a4-87a5-0c94e9c96c36", + "Name": "W12x152", + "CellId": 212, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f5951f67-16fe-4bd2-87ad-e9a4408af79d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f5951f67-16fe-4bd2-87ad-e9a4408af79d", + "Name": null + }, + "edefbfaf-3f9f-4995-b0a6-7611859e7e01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "edefbfaf-3f9f-4995-b0a6-7611859e7e01", + "Name": "W12x152", + "CellId": 212, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "73dd04e5-eb26-4bb1-9545-85d959811912": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73dd04e5-eb26-4bb1-9545-85d959811912", + "Name": null + }, + "2d6a5ca8-367d-4528-a056-f3086fcabfc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2d6a5ca8-367d-4528-a056-f3086fcabfc0", + "Name": "W12x152", + "CellId": 212, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e3f9bb45-1bb6-4e94-b397-d0c82c0fef99": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3f9bb45-1bb6-4e94-b397-d0c82c0fef99", + "Name": null + }, + "0b5d5713-7111-477a-b4c7-4fb752da3716": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0b5d5713-7111-477a-b4c7-4fb752da3716", + "Name": "W12x152", + "CellId": 213, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e252c25e-026b-4dd8-8266-5cc91c6de4b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e252c25e-026b-4dd8-8266-5cc91c6de4b4", + "Name": null + }, + "7ed90077-d0d7-4d7d-a816-e3c6781e1473": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7ed90077-d0d7-4d7d-a816-e3c6781e1473", + "Name": "W12x152", + "CellId": 213, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c29c71a4-e896-461d-80d5-0faa316cfe73": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c29c71a4-e896-461d-80d5-0faa316cfe73", + "Name": null + }, + "2b202578-d3c5-4403-bac5-067335364f50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2b202578-d3c5-4403-bac5-067335364f50", + "Name": "W12x152", + "CellId": 213, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "51bc9c1a-836f-440c-a972-ef4009fc1b35": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "51bc9c1a-836f-440c-a972-ef4009fc1b35", + "Name": null + }, + "d52e9cb5-d938-4fcd-a3a8-2a293d32d37c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d52e9cb5-d938-4fcd-a3a8-2a293d32d37c", + "Name": "W12x152", + "CellId": 214, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "1d05b534-f99f-4d7c-aba7-ae6996a44dc6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1d05b534-f99f-4d7c-aba7-ae6996a44dc6", + "Name": null + }, + "b13176bc-d39e-46ba-aa1b-d320b128c007": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b13176bc-d39e-46ba-aa1b-d320b128c007", + "Name": "W12x152", + "CellId": 214, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e226f9ab-8053-4ef6-ac5a-64ca65d473b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e226f9ab-8053-4ef6-ac5a-64ca65d473b3", + "Name": null + }, + "5b031f7c-8880-45f0-b389-b75d37e0dfe7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5b031f7c-8880-45f0-b389-b75d37e0dfe7", + "Name": "W12x152", + "CellId": 215, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c5c95476-58ec-40a8-943c-1c0806638e3b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5c95476-58ec-40a8-943c-1c0806638e3b", + "Name": null + }, + "1597e7d0-858a-4987-8f86-6d18a7ae2489": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1597e7d0-858a-4987-8f86-6d18a7ae2489", + "Name": "W12x152", + "CellId": 215, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "97667cd1-3413-4b52-b864-5f2daa66e759": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97667cd1-3413-4b52-b864-5f2daa66e759", + "Name": null + }, + "3e197679-628f-4561-91db-f2638adcf0c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3e197679-628f-4561-91db-f2638adcf0c8", + "Name": "W12x152", + "CellId": 216, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c498eec-16da-4e81-8dc7-cbae02ae3bb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c498eec-16da-4e81-8dc7-cbae02ae3bb4", + "Name": null + }, + "1f854031-a2a6-475c-95b9-8634046a664f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1f854031-a2a6-475c-95b9-8634046a664f", + "Name": "W12x152", + "CellId": 216, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a41c3bcf-f57a-44b2-a61c-80aaf6815a93": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a41c3bcf-f57a-44b2-a61c-80aaf6815a93", + "Name": null + }, + "e88d051b-6025-486d-91cf-779763c00756": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e88d051b-6025-486d-91cf-779763c00756", + "Name": "W12x152", + "CellId": 216, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6b562cd-08fa-4d40-90f2-c78833520dc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6b562cd-08fa-4d40-90f2-c78833520dc5", + "Name": null + }, + "d585d892-5088-4f36-b75d-300228d84fd5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d585d892-5088-4f36-b75d-300228d84fd5", + "Name": "W12x152", + "CellId": 217, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "76ac7e82-8199-4db7-bbba-23f6672562ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "76ac7e82-8199-4db7-bbba-23f6672562ed", + "Name": null + }, + "3c1df616-8ffd-4d51-b489-c51bc5683277": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3c1df616-8ffd-4d51-b489-c51bc5683277", + "Name": "W12x152", + "CellId": 217, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc61d93e-3648-4452-9d0d-a49e30e30851": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc61d93e-3648-4452-9d0d-a49e30e30851", + "Name": null + }, + "255170f6-7cc8-4a84-80a8-7533b861fd3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "255170f6-7cc8-4a84-80a8-7533b861fd3a", + "Name": "W12x152", + "CellId": 217, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c2dd4093-f942-46e3-ab4c-ce2a29c653dc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c2dd4093-f942-46e3-ab4c-ce2a29c653dc", + "Name": null + }, + "3f74a732-5fbf-4754-a108-6f6c54a3f031": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3f74a732-5fbf-4754-a108-6f6c54a3f031", + "Name": "W12x152", + "CellId": 218, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f46fe036-92ea-4beb-980e-35bebbcc8c35": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f46fe036-92ea-4beb-980e-35bebbcc8c35", + "Name": null + }, + "bad1438c-07f8-4a5e-97a0-a9d12ed9558b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bad1438c-07f8-4a5e-97a0-a9d12ed9558b", + "Name": "W12x152", + "CellId": 218, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e62f178e-5c57-4aaa-ab08-db92dd71936c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e62f178e-5c57-4aaa-ab08-db92dd71936c", + "Name": null + }, + "364bb937-c1a8-4c1e-a91e-289943104dc6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "364bb937-c1a8-4c1e-a91e-289943104dc6", + "Name": "W12x152", + "CellId": 218, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb6277f4-c47f-4ad8-bee6-347016b7880a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb6277f4-c47f-4ad8-bee6-347016b7880a", + "Name": null + }, + "2fda33e4-86d1-4199-a5e1-d3192ce74f4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2fda33e4-86d1-4199-a5e1-d3192ce74f4f", + "Name": "W12x152", + "CellId": 219, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7ac9155a-03cb-4c51-8bdb-a28b5901dce7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ac9155a-03cb-4c51-8bdb-a28b5901dce7", + "Name": null + }, + "082c37fb-f440-4a9c-a2ac-260ad53e3b48": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "082c37fb-f440-4a9c-a2ac-260ad53e3b48", + "Name": "W12x152", + "CellId": 219, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9beba32b-c21b-464b-a103-76d084d9bb9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9beba32b-c21b-464b-a103-76d084d9bb9a", + "Name": null + }, + "cc584d7d-c674-42fe-a4ee-23244b9a0766": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cc584d7d-c674-42fe-a4ee-23244b9a0766", + "Name": "W12x152", + "CellId": 219, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1307c1d-3908-473b-8e5c-a50a569544db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1307c1d-3908-473b-8e5c-a50a569544db", + "Name": null + }, + "84452574-19b9-42af-85f4-3723d2a23438": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "84452574-19b9-42af-85f4-3723d2a23438", + "Name": "W12x152", + "CellId": 220, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b5a6bd9-bb5b-4e8b-97a8-4eee9d658943": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b5a6bd9-bb5b-4e8b-97a8-4eee9d658943", + "Name": null + }, + "bcaedb7c-5d5a-4c55-bc76-2361ff7ba401": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bcaedb7c-5d5a-4c55-bc76-2361ff7ba401", + "Name": "W12x152", + "CellId": 220, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "df542904-bc2a-4b32-b715-1dfa41ff1244": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df542904-bc2a-4b32-b715-1dfa41ff1244", + "Name": null + }, + "9ecd8a2a-8713-4b45-93ef-6b0b74a70999": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9ecd8a2a-8713-4b45-93ef-6b0b74a70999", + "Name": "W12x152", + "CellId": 220, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "325f792a-7538-45db-a18a-108a931b2172": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "325f792a-7538-45db-a18a-108a931b2172", + "Name": null + }, + "79660b23-c5ed-4f6f-a309-8704ae4dc902": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "79660b23-c5ed-4f6f-a309-8704ae4dc902", + "Name": "W12x152", + "CellId": 221, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1c413d8e-01e7-4665-b913-cec16aae0062": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c413d8e-01e7-4665-b913-cec16aae0062", + "Name": null + }, + "ae8dd1a3-79eb-494c-874b-ea593bd987e9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ae8dd1a3-79eb-494c-874b-ea593bd987e9", + "Name": "W12x152", + "CellId": 221, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8756bf20-af1d-4426-b1ad-37222cfaf216": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8756bf20-af1d-4426-b1ad-37222cfaf216", + "Name": null + }, + "9f4fe35f-f720-43d8-904b-bf71815097a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9f4fe35f-f720-43d8-904b-bf71815097a2", + "Name": "W12x152", + "CellId": 221, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2fca96ea-26d9-4629-8021-d5086fc29c81": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2fca96ea-26d9-4629-8021-d5086fc29c81", + "Name": null + }, + "ddecf78b-9217-4846-8ae3-72cc5510db4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ddecf78b-9217-4846-8ae3-72cc5510db4f", + "Name": "W12x152", + "CellId": 222, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "851734ef-8ab4-4fac-b505-4e9002e3e6f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "851734ef-8ab4-4fac-b505-4e9002e3e6f5", + "Name": null + }, + "811ec478-87f0-4ced-8d8d-8ebb17ca08de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "811ec478-87f0-4ced-8d8d-8ebb17ca08de", + "Name": "W12x152", + "CellId": 222, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b687f437-1712-4691-8618-27233bcc8520": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b687f437-1712-4691-8618-27233bcc8520", + "Name": null + }, + "def0c310-7f28-4243-89bf-151c062ec409": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "def0c310-7f28-4243-89bf-151c062ec409", + "Name": "W12x152", + "CellId": 222, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ed820986-7a30-47e5-b34c-4c604334d7da": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed820986-7a30-47e5-b34c-4c604334d7da", + "Name": null + }, + "663e7262-b904-421f-bda0-ae64aa1042c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "663e7262-b904-421f-bda0-ae64aa1042c7", + "Name": "W12x152", + "CellId": 223, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "56990425-50ea-4919-9159-dddc118f17c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "56990425-50ea-4919-9159-dddc118f17c1", + "Name": null + }, + "e5cbd9c4-b7c5-4f45-bdce-f016fca8f837": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e5cbd9c4-b7c5-4f45-bdce-f016fca8f837", + "Name": "W12x152", + "CellId": 223, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d106b2ec-9dcf-4ae9-8b66-1fde9d4fdc7e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d106b2ec-9dcf-4ae9-8b66-1fde9d4fdc7e", + "Name": null + }, + "cad0f28f-d4f3-4f5d-9e9e-2ae84b5b78af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cad0f28f-d4f3-4f5d-9e9e-2ae84b5b78af", + "Name": "W12x152", + "CellId": 223, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "885d039c-4a38-4a2f-aeb4-e5e3241a4895": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "885d039c-4a38-4a2f-aeb4-e5e3241a4895", + "Name": null + }, + "45406ae3-095d-436c-9137-b5b9a771ad36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "45406ae3-095d-436c-9137-b5b9a771ad36", + "Name": "W12x152", + "CellId": 224, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "21303814-8937-4177-b497-d1eeb1a6512a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21303814-8937-4177-b497-d1eeb1a6512a", + "Name": null + }, + "4c629d37-679b-4782-8361-c4f10d2fe145": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4c629d37-679b-4782-8361-c4f10d2fe145", + "Name": "W12x152", + "CellId": 224, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ef1ad821-8d4c-4edd-9f3b-43a8d04ec84b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef1ad821-8d4c-4edd-9f3b-43a8d04ec84b", + "Name": null + }, + "934b8ffa-4aad-4203-9685-d43d646ff198": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "934b8ffa-4aad-4203-9685-d43d646ff198", + "Name": "W12x152", + "CellId": 225, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "74c64b2f-5f72-4c9b-8df0-2086d92b795f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "74c64b2f-5f72-4c9b-8df0-2086d92b795f", + "Name": null + }, + "6a014b81-fd5e-441b-ad94-b6ccaf769e0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6a014b81-fd5e-441b-ad94-b6ccaf769e0e", + "Name": "W12x152", + "CellId": 225, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e152f5d9-d4cd-45f7-a779-80666c1b58cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e152f5d9-d4cd-45f7-a779-80666c1b58cd", + "Name": null + }, + "ea155018-d6a8-45ec-be7d-98dc99a346b0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ea155018-d6a8-45ec-be7d-98dc99a346b0", + "Name": "W12x152", + "CellId": 226, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "87fecbcd-b941-46d4-9c5a-9b5fe8546b04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87fecbcd-b941-46d4-9c5a-9b5fe8546b04", + "Name": null + }, + "1da03dd4-c188-46ec-a065-064dd57a45c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1da03dd4-c188-46ec-a065-064dd57a45c1", + "Name": "W12x152", + "CellId": 226, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "011a7377-e389-4165-b172-c2325dc74969": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "011a7377-e389-4165-b172-c2325dc74969", + "Name": null + }, + "d970935a-6d6b-446f-ac4b-86ae2d8589e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d970935a-6d6b-446f-ac4b-86ae2d8589e5", + "Name": "W12x152", + "CellId": 226, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0b695268-b427-4a19-aff5-d1ac3da20af0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b695268-b427-4a19-aff5-d1ac3da20af0", + "Name": null + }, + "613ec427-10d7-4cd9-9e39-30f03eee66cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "613ec427-10d7-4cd9-9e39-30f03eee66cd", + "Name": "W12x152", + "CellId": 227, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "acf256ea-1eb1-4946-8f81-eb61e0db97b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "acf256ea-1eb1-4946-8f81-eb61e0db97b6", + "Name": null + }, + "e8a9d8f8-9b2e-47ba-b1a4-7d4dc07a728e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e8a9d8f8-9b2e-47ba-b1a4-7d4dc07a728e", + "Name": "W12x152", + "CellId": 227, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cfec69ce-ba73-4acd-9182-2afa04b1e7e0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfec69ce-ba73-4acd-9182-2afa04b1e7e0", + "Name": null + }, + "372d2924-99b9-41a9-b505-4a9d25cb9a38": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "372d2924-99b9-41a9-b505-4a9d25cb9a38", + "Name": "W12x152", + "CellId": 227, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b41d3767-2cb4-46d1-a384-4e00cf608371": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b41d3767-2cb4-46d1-a384-4e00cf608371", + "Name": null + }, + "7bdf3a5a-cfeb-43bd-8c80-aba81ecc4de8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7bdf3a5a-cfeb-43bd-8c80-aba81ecc4de8", + "Name": "W12x152", + "CellId": 228, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b069a2fd-eed8-48c1-aefc-76861ea29ba3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b069a2fd-eed8-48c1-aefc-76861ea29ba3", + "Name": null + }, + "e413a7bc-6737-49b2-859d-b06df4de670d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e413a7bc-6737-49b2-859d-b06df4de670d", + "Name": "W12x152", + "CellId": 228, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "54855627-0ef1-4df4-add4-db2c0b16b8cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "54855627-0ef1-4df4-add4-db2c0b16b8cd", + "Name": null + }, + "fc782bda-eef7-4813-a3c9-073fc4f6b698": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "fc782bda-eef7-4813-a3c9-073fc4f6b698", + "Name": "W12x152", + "CellId": 228, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2428b65d-2a11-4eab-99fb-e02a01f16fc3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2428b65d-2a11-4eab-99fb-e02a01f16fc3", + "Name": null + }, + "db472b91-797c-45b6-aff4-c035dc507a92": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "db472b91-797c-45b6-aff4-c035dc507a92", + "Name": "W12x152", + "CellId": 229, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8c21e6c3-01c5-4d2b-9d02-0905102d9569": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8c21e6c3-01c5-4d2b-9d02-0905102d9569", + "Name": null + }, + "a9a316a9-6176-47f4-8081-f1ac7a3cddda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a9a316a9-6176-47f4-8081-f1ac7a3cddda", + "Name": "W12x152", + "CellId": 229, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4958da19-b711-4c84-8b38-562996913023": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4958da19-b711-4c84-8b38-562996913023", + "Name": null + }, + "587b0c40-151d-4b31-b53f-47607b6f2d73": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "587b0c40-151d-4b31-b53f-47607b6f2d73", + "Name": "W12x152", + "CellId": 229, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "27ddac7f-3e47-4674-b6ed-2d43d1c09d45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "27ddac7f-3e47-4674-b6ed-2d43d1c09d45", + "Name": null + }, + "4771d0ce-22c0-47f8-baf7-1162039146d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4771d0ce-22c0-47f8-baf7-1162039146d9", + "Name": "W12x152", + "CellId": 230, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "17f193a3-0106-4635-bc77-ed06f320579d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "17f193a3-0106-4635-bc77-ed06f320579d", + "Name": null + }, + "ff8cb904-950c-49c0-9d60-1e1386cfa67b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ff8cb904-950c-49c0-9d60-1e1386cfa67b", + "Name": "W12x152", + "CellId": 230, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d22d672d-beb8-46e3-9438-d1ede2463e2a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d22d672d-beb8-46e3-9438-d1ede2463e2a", + "Name": null + }, + "2280b289-df8e-4ccf-9799-428ab67f6f6a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2280b289-df8e-4ccf-9799-428ab67f6f6a", + "Name": "W12x152", + "CellId": 230, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c2c48efb-7a6a-4009-a770-b148c479314a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c2c48efb-7a6a-4009-a770-b148c479314a", + "Name": null + }, + "b86371f3-ca46-4df3-b8e1-88430fcd0ac6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b86371f3-ca46-4df3-b8e1-88430fcd0ac6", + "Name": "W12x152", + "CellId": 231, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f2b758ce-3084-4aef-a9b3-5ab83123b8a1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2b758ce-3084-4aef-a9b3-5ab83123b8a1", + "Name": null + }, + "55c54232-07e8-4c9e-84d0-28c23b39a20d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "55c54232-07e8-4c9e-84d0-28c23b39a20d", + "Name": "W12x152", + "CellId": 231, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3749d1fd-745c-4076-a29b-f6fe805e204c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3749d1fd-745c-4076-a29b-f6fe805e204c", + "Name": null + }, + "dbb07699-ed96-41eb-87ec-1707c99d11ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "dbb07699-ed96-41eb-87ec-1707c99d11ff", + "Name": "W12x152", + "CellId": 231, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9cee85c7-2f30-4406-98c4-344687fefb96": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9cee85c7-2f30-4406-98c4-344687fefb96", + "Name": null + }, + "2c413d70-b89b-4dfe-98dc-4f68ad2f0c32": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2c413d70-b89b-4dfe-98dc-4f68ad2f0c32", + "Name": "W12x152", + "CellId": 232, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fa67952b-3d21-48d1-b7ca-d631633ab602": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa67952b-3d21-48d1-b7ca-d631633ab602", + "Name": null + }, + "685cb765-b243-4192-bbb0-3687040b932b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "685cb765-b243-4192-bbb0-3687040b932b", + "Name": "W12x152", + "CellId": 232, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ede7c8b0-d7f8-4947-b672-39426dee7169": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ede7c8b0-d7f8-4947-b672-39426dee7169", + "Name": null + }, + "691dae18-2e52-403e-911b-dc03b5e033ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "691dae18-2e52-403e-911b-dc03b5e033ed", + "Name": "W12x152", + "CellId": 232, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "db4df6c6-bba0-493f-833c-a54622efba8c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "db4df6c6-bba0-493f-833c-a54622efba8c", + "Name": null + }, + "b932259d-ee09-49c4-9a15-7afbabeffd0c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b932259d-ee09-49c4-9a15-7afbabeffd0c", + "Name": "W12x152", + "CellId": 233, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "eb7f9148-b878-431d-a8a0-e5323678a0c2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eb7f9148-b878-431d-a8a0-e5323678a0c2", + "Name": null + }, + "cebc18fc-4b7b-4303-9bd8-2fa57c46b9b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cebc18fc-4b7b-4303-9bd8-2fa57c46b9b4", + "Name": "W12x152", + "CellId": 233, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6fb3887d-632c-41df-9ba7-7976baa6fb21": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6fb3887d-632c-41df-9ba7-7976baa6fb21", + "Name": null + }, + "639cb86d-3294-4b91-ac07-87fe4b0cfa2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "639cb86d-3294-4b91-ac07-87fe4b0cfa2b", + "Name": "W12x152", + "CellId": 233, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c4d8044b-2c39-407a-a38c-d57a8f61f39d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c4d8044b-2c39-407a-a38c-d57a8f61f39d", + "Name": null + }, + "bf654b89-75c5-4883-b420-c71e5b354d65": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bf654b89-75c5-4883-b420-c71e5b354d65", + "Name": "W12x152", + "CellId": 234, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "96d4a7e1-9550-48cf-805d-28924f4f3736": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "96d4a7e1-9550-48cf-805d-28924f4f3736", + "Name": null + }, + "b282442c-e08e-4e53-b297-140a4f282653": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b282442c-e08e-4e53-b297-140a4f282653", + "Name": "W12x152", + "CellId": 234, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "978425b2-4721-4938-b081-f15f2befa319": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "978425b2-4721-4938-b081-f15f2befa319", + "Name": null + }, + "d1570447-e37a-41a4-85ce-77dd9f6864a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d1570447-e37a-41a4-85ce-77dd9f6864a3", + "Name": "W12x152", + "CellId": 235, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "d2812af3-58b9-415f-84ef-8d18cd6c9ae3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d2812af3-58b9-415f-84ef-8d18cd6c9ae3", + "Name": null + }, + "05c250b5-23da-401d-bcfe-306283615248": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "05c250b5-23da-401d-bcfe-306283615248", + "Name": "W12x152", + "CellId": 235, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "bd1dbb83-4009-4f82-8f05-5d84368dd6a4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bd1dbb83-4009-4f82-8f05-5d84368dd6a4", + "Name": null + }, + "5965ce61-d619-4720-8e95-aa3d1594a602": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5965ce61-d619-4720-8e95-aa3d1594a602", + "Name": "W12x152", + "CellId": 236, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1342e22d-2d32-4d0d-8821-311a38a02257": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1342e22d-2d32-4d0d-8821-311a38a02257", + "Name": null + }, + "7a6d1edf-ade7-4fba-b5f2-fdbee070a8dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7a6d1edf-ade7-4fba-b5f2-fdbee070a8dd", + "Name": "W12x152", + "CellId": 236, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "298c2da8-ba43-486a-b887-2869517eb333": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "298c2da8-ba43-486a-b887-2869517eb333", + "Name": null + }, + "ad4d422b-b1e0-46fa-8e69-e451f38f52f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ad4d422b-b1e0-46fa-8e69-e451f38f52f3", + "Name": "W12x152", + "CellId": 236, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "29533858-6cda-418c-91fa-2c95b7501176": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "29533858-6cda-418c-91fa-2c95b7501176", + "Name": null + }, + "aaed6f50-a4a5-4515-bfc1-728ed9f5be78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "aaed6f50-a4a5-4515-bfc1-728ed9f5be78", + "Name": "W12x152", + "CellId": 237, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9196f4cd-101f-46e2-97f6-a6b0818ad5a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9196f4cd-101f-46e2-97f6-a6b0818ad5a8", + "Name": null + }, + "17757663-20f0-4880-882c-33ec87980546": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "17757663-20f0-4880-882c-33ec87980546", + "Name": "W12x152", + "CellId": 237, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97eb7f8b-1ed2-446f-bd9e-c656243d7e04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97eb7f8b-1ed2-446f-bd9e-c656243d7e04", + "Name": null + }, + "6a4fb796-a7e4-427d-b20d-16953a5ba202": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6a4fb796-a7e4-427d-b20d-16953a5ba202", + "Name": "W12x152", + "CellId": 237, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "10be4eec-8c4c-42f0-8f5d-8faafae0d62c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10be4eec-8c4c-42f0-8f5d-8faafae0d62c", + "Name": null + }, + "944c69c3-5a99-4aba-9466-3c3d3cda32cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "944c69c3-5a99-4aba-9466-3c3d3cda32cd", + "Name": "W12x152", + "CellId": 238, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b57078c-6572-4643-8b51-e66217bb7c16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b57078c-6572-4643-8b51-e66217bb7c16", + "Name": null + }, + "8e984be4-72f1-4cd2-b2e0-d337ee61f6a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8e984be4-72f1-4cd2-b2e0-d337ee61f6a4", + "Name": "W12x152", + "CellId": 238, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc2eb208-332f-4546-9b19-c358dd562fc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc2eb208-332f-4546-9b19-c358dd562fc5", + "Name": null + }, + "3df84bb7-64dd-4424-bd24-d9fc7c34e3b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3df84bb7-64dd-4424-bd24-d9fc7c34e3b7", + "Name": "W12x152", + "CellId": 238, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4c6f224c-9e44-4f16-a6ac-f5d89a046fed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4c6f224c-9e44-4f16-a6ac-f5d89a046fed", + "Name": null + }, + "ebda2594-e0cd-40d0-8e9e-d73ea638c33b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ebda2594-e0cd-40d0-8e9e-d73ea638c33b", + "Name": "W12x152", + "CellId": 239, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "42b4736e-bc0c-4ec4-8d14-965a27c57235": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "42b4736e-bc0c-4ec4-8d14-965a27c57235", + "Name": null + }, + "512a6c3e-99e7-413e-91d2-3d9d38a5907a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "512a6c3e-99e7-413e-91d2-3d9d38a5907a", + "Name": "W12x152", + "CellId": 239, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0e8c6ee2-e14e-4372-a5a8-e29943437c9e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e8c6ee2-e14e-4372-a5a8-e29943437c9e", + "Name": null + }, + "ee558dd0-a58c-481f-bc29-b27c5bbe496e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ee558dd0-a58c-481f-bc29-b27c5bbe496e", + "Name": "W12x152", + "CellId": 239, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1873d4e1-ae2c-49e6-b5a1-b9ec68cc8799": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1873d4e1-ae2c-49e6-b5a1-b9ec68cc8799", + "Name": null + }, + "05e9ae11-7756-437a-9576-b97f8ae01d44": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "05e9ae11-7756-437a-9576-b97f8ae01d44", + "Name": "W12x152", + "CellId": 240, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3fda42c8-9224-4a22-8eb2-29927380329b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3fda42c8-9224-4a22-8eb2-29927380329b", + "Name": null + }, + "4dc6a0df-b463-4ea1-acf0-5431a7842eb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4dc6a0df-b463-4ea1-acf0-5431a7842eb0", + "Name": "W12x152", + "CellId": 240, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "588587ad-52c5-4323-af56-7ddc53d392ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "588587ad-52c5-4323-af56-7ddc53d392ff", + "Name": null + }, + "f36cd6f2-dbf4-4219-ae01-6f8b652ec912": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f36cd6f2-dbf4-4219-ae01-6f8b652ec912", + "Name": "W12x152", + "CellId": 240, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bbaedc8d-4f04-4f70-9fe8-5a69c67c42eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bbaedc8d-4f04-4f70-9fe8-5a69c67c42eb", + "Name": null + }, + "fe65f187-ede0-47ac-a3ea-fd92fa0dde50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fe65f187-ede0-47ac-a3ea-fd92fa0dde50", + "Name": "W12x152", + "CellId": 241, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "100aa06a-2c7d-4d79-bfe1-b21c46d771a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "100aa06a-2c7d-4d79-bfe1-b21c46d771a3", + "Name": null + }, + "1ea5b51c-7bb8-474f-94c5-80a95808c4c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1ea5b51c-7bb8-474f-94c5-80a95808c4c9", + "Name": "W12x152", + "CellId": 241, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b7cf7e78-9f91-423d-8f81-62267d1db3f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b7cf7e78-9f91-423d-8f81-62267d1db3f9", + "Name": null + }, + "4d195ba8-42a3-4553-b5eb-157712a54e0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4d195ba8-42a3-4553-b5eb-157712a54e0a", + "Name": "W12x152", + "CellId": 241, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bdde7b4e-3cba-4e78-aff5-ea7b730286a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bdde7b4e-3cba-4e78-aff5-ea7b730286a8", + "Name": null + }, + "17100a29-699e-443c-b8cc-81698949477b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "17100a29-699e-443c-b8cc-81698949477b", + "Name": "W12x152", + "CellId": 242, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ba03af26-3c7d-4d57-ac14-eb48dc47413a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba03af26-3c7d-4d57-ac14-eb48dc47413a", + "Name": null + }, + "ae866f1a-131b-4a93-b3b0-b74715f8f334": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ae866f1a-131b-4a93-b3b0-b74715f8f334", + "Name": "W12x152", + "CellId": 242, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6d944e73-4ad4-4498-ae86-39dd7b9ea4b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d944e73-4ad4-4498-ae86-39dd7b9ea4b3", + "Name": null + }, + "313b23d6-1351-45eb-bc81-5efba9356a04": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "313b23d6-1351-45eb-bc81-5efba9356a04", + "Name": "W12x152", + "CellId": 242, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "25b26d36-deef-4921-916a-bb8a253ae307": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25b26d36-deef-4921-916a-bb8a253ae307", + "Name": null + }, + "b7662883-3457-4d5b-afff-27f3a918e868": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b7662883-3457-4d5b-afff-27f3a918e868", + "Name": "W12x152", + "CellId": 243, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "444e3b25-6388-4f01-8d69-2633f937666d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "444e3b25-6388-4f01-8d69-2633f937666d", + "Name": null + }, + "ea15ef06-b78f-47f0-9967-d08070e32a44": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ea15ef06-b78f-47f0-9967-d08070e32a44", + "Name": "W12x152", + "CellId": 243, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b311da2-51f7-4311-80f8-b25a85944f22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b311da2-51f7-4311-80f8-b25a85944f22", + "Name": null + }, + "73110a40-8766-46d0-8ee1-1311c76754fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "73110a40-8766-46d0-8ee1-1311c76754fd", + "Name": "W12x152", + "CellId": 243, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "22456005-3290-4f0b-846a-77d71dc9f364": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22456005-3290-4f0b-846a-77d71dc9f364", + "Name": null + }, + "240f2f16-20c3-42f6-9926-a53dcd47f3e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "240f2f16-20c3-42f6-9926-a53dcd47f3e8", + "Name": "W12x152", + "CellId": 244, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0827e9d2-9420-4b2b-962c-58123c21e458": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0827e9d2-9420-4b2b-962c-58123c21e458", + "Name": null + }, + "f8d6f24e-c068-4b20-bb0f-bd978800fb77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f8d6f24e-c068-4b20-bb0f-bd978800fb77", + "Name": "W12x152", + "CellId": 244, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7d5ebb43-399c-4e4a-b987-cafa280ddd2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d5ebb43-399c-4e4a-b987-cafa280ddd2b", + "Name": null + }, + "02825d5e-c867-413d-8add-c8a19dcff584": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "02825d5e-c867-413d-8add-c8a19dcff584", + "Name": "W12x152", + "CellId": 245, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "106d56b2-500e-42eb-9807-3992857463f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "106d56b2-500e-42eb-9807-3992857463f3", + "Name": null + }, + "b0af0b92-9b6a-43b4-b37b-195eec7088d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b0af0b92-9b6a-43b4-b37b-195eec7088d6", + "Name": "W12x152", + "CellId": 245, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ba16b5b2-2eee-419a-8478-119857f64e81": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba16b5b2-2eee-419a-8478-119857f64e81", + "Name": null + }, + "048a5dd2-740e-46ec-a302-db658c75bb08": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "048a5dd2-740e-46ec-a302-db658c75bb08", + "Name": "W12x152", + "CellId": 246, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4a4e51b9-5d85-4a0d-a619-f2aae9c7e8e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a4e51b9-5d85-4a0d-a619-f2aae9c7e8e4", + "Name": null + }, + "ffc00d8d-a179-4b3e-88e6-7e4cc92714ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ffc00d8d-a179-4b3e-88e6-7e4cc92714ed", + "Name": "W12x152", + "CellId": 246, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "df82553e-92f6-476e-beed-2220e7adfba2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df82553e-92f6-476e-beed-2220e7adfba2", + "Name": null + }, + "45872959-839a-4717-87d2-292282b53f12": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "45872959-839a-4717-87d2-292282b53f12", + "Name": "W12x152", + "CellId": 246, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a6320dcb-1279-4e9f-989c-d56b8785e225": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a6320dcb-1279-4e9f-989c-d56b8785e225", + "Name": null + }, + "62fa5673-e833-4b4c-8a9e-cd9fa8612e7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "62fa5673-e833-4b4c-8a9e-cd9fa8612e7c", + "Name": "W12x152", + "CellId": 247, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "533c5a09-08ea-4458-a9c6-53aea20dc0af": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "533c5a09-08ea-4458-a9c6-53aea20dc0af", + "Name": null + }, + "cbc2a5af-27d4-4660-92f6-8fee42305709": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cbc2a5af-27d4-4660-92f6-8fee42305709", + "Name": "W12x152", + "CellId": 247, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "82e81bef-8321-4799-85a8-13db922bc32b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "82e81bef-8321-4799-85a8-13db922bc32b", + "Name": null + }, + "3c59eba8-4d49-456c-ad78-1f49864b24e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3c59eba8-4d49-456c-ad78-1f49864b24e0", + "Name": "W12x152", + "CellId": 247, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dc8e4b3a-7c3b-42e9-aeb7-8fd1d16e3367": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc8e4b3a-7c3b-42e9-aeb7-8fd1d16e3367", + "Name": null + }, + "4ccecdfc-a628-4f7b-bf2f-8d600a2006a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4ccecdfc-a628-4f7b-bf2f-8d600a2006a6", + "Name": "W12x152", + "CellId": 248, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6b2edff-701d-4928-a207-afbdcb4cce94": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6b2edff-701d-4928-a207-afbdcb4cce94", + "Name": null + }, + "c1544570-e92e-49c1-9018-c9386a121a28": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c1544570-e92e-49c1-9018-c9386a121a28", + "Name": "W12x152", + "CellId": 248, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "31e11c25-0974-4866-9ecc-90bf4211f2fe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "31e11c25-0974-4866-9ecc-90bf4211f2fe", + "Name": null + }, + "8ab12a94-61cd-4465-9743-7a2ffb54b876": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8ab12a94-61cd-4465-9743-7a2ffb54b876", + "Name": "W12x152", + "CellId": 248, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bc67482b-41a3-4417-902e-478b36a9636b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bc67482b-41a3-4417-902e-478b36a9636b", + "Name": null + }, + "7878b4da-f5db-458d-93e8-689522e338c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7878b4da-f5db-458d-93e8-689522e338c4", + "Name": "W12x152", + "CellId": 249, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fd70ea10-84f9-4cde-9b3a-0cd10cc1cff8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fd70ea10-84f9-4cde-9b3a-0cd10cc1cff8", + "Name": null + }, + "1f2f6ac5-c9e3-4533-9c65-e96fcfe7a3a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1f2f6ac5-c9e3-4533-9c65-e96fcfe7a3a9", + "Name": "W12x152", + "CellId": 249, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc739526-aac6-481b-8b32-486370c71055": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc739526-aac6-481b-8b32-486370c71055", + "Name": null + }, + "5814510a-a2c2-40e6-ac04-e74f3b07d58c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5814510a-a2c2-40e6-ac04-e74f3b07d58c", + "Name": "W12x152", + "CellId": 249, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cf463490-a6f5-4054-b9a8-aa2560ec9864": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf463490-a6f5-4054-b9a8-aa2560ec9864", + "Name": null + }, + "df2cb33c-030f-4c8d-9bcb-a859decfa455": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "df2cb33c-030f-4c8d-9bcb-a859decfa455", + "Name": "W12x152", + "CellId": 250, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a9effb7a-af8e-4219-a14d-b1fd51719f34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a9effb7a-af8e-4219-a14d-b1fd51719f34", + "Name": null + }, + "7473238f-88ec-43bc-ad2a-0c73fd07e393": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7473238f-88ec-43bc-ad2a-0c73fd07e393", + "Name": "W12x152", + "CellId": 250, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9de1bd77-70f7-4d49-b601-67079cb94294": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9de1bd77-70f7-4d49-b601-67079cb94294", + "Name": null + }, + "16820ee6-9dc4-4324-9ad9-aa79becf0601": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "16820ee6-9dc4-4324-9ad9-aa79becf0601", + "Name": "W12x152", + "CellId": 250, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "98aed35a-480a-433f-a928-3fc6959e5d1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "98aed35a-480a-433f-a928-3fc6959e5d1b", + "Name": null + }, + "443754f2-27ca-4e63-bf19-8cb8d5d4904a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "443754f2-27ca-4e63-bf19-8cb8d5d4904a", + "Name": "W12x152", + "CellId": 251, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41d16b7d-f2ea-43e8-88ef-b3092ca281c8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41d16b7d-f2ea-43e8-88ef-b3092ca281c8", + "Name": null + }, + "f419123f-0b3d-4f1c-8ccb-8f2b4899187e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f419123f-0b3d-4f1c-8ccb-8f2b4899187e", + "Name": "W12x152", + "CellId": 251, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0ba689d3-f39e-4730-971d-8e91c1cb7eb0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0ba689d3-f39e-4730-971d-8e91c1cb7eb0", + "Name": null + }, + "5f3a62be-74a9-44df-952e-155390397ac1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5f3a62be-74a9-44df-952e-155390397ac1", + "Name": "W12x152", + "CellId": 251, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "86327474-4649-4060-a0b2-c5ce9814ff95": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "86327474-4649-4060-a0b2-c5ce9814ff95", + "Name": null + }, + "a4577dba-fca3-4d3f-9ad9-bc7066cd86b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a4577dba-fca3-4d3f-9ad9-bc7066cd86b8", + "Name": "W12x152", + "CellId": 252, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cad17d14-1b7e-4416-add4-a3a5481e684a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cad17d14-1b7e-4416-add4-a3a5481e684a", + "Name": null + }, + "6c33a11b-c08b-4217-8e60-17b3e339d48f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6c33a11b-c08b-4217-8e60-17b3e339d48f", + "Name": "W12x152", + "CellId": 252, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "566b174f-383b-4657-ab0a-10c8e42e1257": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "566b174f-383b-4657-ab0a-10c8e42e1257", + "Name": null + }, + "d76e5f68-d384-41ba-9338-acf5e565b26c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d76e5f68-d384-41ba-9338-acf5e565b26c", + "Name": "W12x152", + "CellId": 252, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4527cc90-6e18-437e-bf44-429dc97f1689": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4527cc90-6e18-437e-bf44-429dc97f1689", + "Name": null + }, + "873f52f7-4d94-42c5-bef1-9e5724c0df8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "873f52f7-4d94-42c5-bef1-9e5724c0df8e", + "Name": "W12x152", + "CellId": 253, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5253dbca-0546-4d16-81b1-7253886db9ee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5253dbca-0546-4d16-81b1-7253886db9ee", + "Name": null + }, + "ae10f866-38ed-4026-a627-23218bada770": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ae10f866-38ed-4026-a627-23218bada770", + "Name": "W12x152", + "CellId": 253, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "72224995-fe0e-49f1-b734-437661ae909d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72224995-fe0e-49f1-b734-437661ae909d", + "Name": null + }, + "9150b0a7-b2c0-42c8-8340-4675dee03140": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9150b0a7-b2c0-42c8-8340-4675dee03140", + "Name": "W12x152", + "CellId": 253, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ee78cbd5-0c32-4f68-b68f-0ada1d5e7169": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee78cbd5-0c32-4f68-b68f-0ada1d5e7169", + "Name": null + }, + "2f4d8014-07ff-4c8d-a693-95aa68237191": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2f4d8014-07ff-4c8d-a693-95aa68237191", + "Name": "W12x152", + "CellId": 254, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "411ef4f3-d050-4274-8ee6-69403f44208b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "411ef4f3-d050-4274-8ee6-69403f44208b", + "Name": null + }, + "d65f119f-2ba9-4532-82f4-1bb2e9859fea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d65f119f-2ba9-4532-82f4-1bb2e9859fea", + "Name": "W12x152", + "CellId": 254, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "60af6a0d-44af-4395-96a7-c826f119faf9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "60af6a0d-44af-4395-96a7-c826f119faf9", + "Name": null + }, + "ca5a7a69-0a2a-4ae9-9401-492b61a74f4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ca5a7a69-0a2a-4ae9-9401-492b61a74f4b", + "Name": "W12x152", + "CellId": 255, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c4dbab9c-9eb3-4bdb-9e57-8b95f971d8f0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c4dbab9c-9eb3-4bdb-9e57-8b95f971d8f0", + "Name": null + }, + "149036c1-d7f1-4cec-973f-615b557f18e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "149036c1-d7f1-4cec-973f-615b557f18e5", + "Name": "W12x152", + "CellId": 255, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "2d44e3b4-b048-473d-a459-7b683b3b9bcc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d44e3b4-b048-473d-a459-7b683b3b9bcc", + "Name": null + }, + "a7017c19-bc35-45c7-867e-7f6043c6e936": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a7017c19-bc35-45c7-867e-7f6043c6e936", + "Name": "W12x152", + "CellId": 256, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41525725-aa89-4235-9ce5-c490b094ea9c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41525725-aa89-4235-9ce5-c490b094ea9c", + "Name": null + }, + "3538d801-2160-48c7-bfbd-13a025c01ccd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3538d801-2160-48c7-bfbd-13a025c01ccd", + "Name": "W12x152", + "CellId": 256, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d1a72875-efe4-48c0-80e8-5e1589400419": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1a72875-efe4-48c0-80e8-5e1589400419", + "Name": null + }, + "246e9b6d-c577-4de7-ba7d-2c67e09f0c0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "246e9b6d-c577-4de7-ba7d-2c67e09f0c0e", + "Name": "W12x152", + "CellId": 256, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1be20819-dc87-4828-93d3-3b64ff7edf52": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1be20819-dc87-4828-93d3-3b64ff7edf52", + "Name": null + }, + "5e7f2f0b-ef5e-47fe-b656-e066d75351cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5e7f2f0b-ef5e-47fe-b656-e066d75351cc", + "Name": "W12x152", + "CellId": 257, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5e57cd56-af58-4928-8f7d-95877cb417a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e57cd56-af58-4928-8f7d-95877cb417a6", + "Name": null + }, + "16f4c555-b3a4-433f-bae0-9a2606d44bc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "16f4c555-b3a4-433f-bae0-9a2606d44bc5", + "Name": "W12x152", + "CellId": 257, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "413a0db5-cf3e-469e-aab7-57ec80fc6367": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "413a0db5-cf3e-469e-aab7-57ec80fc6367", + "Name": null + }, + "c313180a-d7d8-4886-abc8-ba83456a767d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c313180a-d7d8-4886-abc8-ba83456a767d", + "Name": "W12x152", + "CellId": 257, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97976d78-2b8f-42b2-8021-7fd11c9d442a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97976d78-2b8f-42b2-8021-7fd11c9d442a", + "Name": null + }, + "d87f3bea-564d-4371-bdc6-3bd6eebd30c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d87f3bea-564d-4371-bdc6-3bd6eebd30c7", + "Name": "W12x152", + "CellId": 258, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3813856e-47a5-4ec3-86e8-60bb9098a640": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3813856e-47a5-4ec3-86e8-60bb9098a640", + "Name": null + }, + "1670dc25-da98-481b-ad39-2d88c2790003": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1670dc25-da98-481b-ad39-2d88c2790003", + "Name": "W12x152", + "CellId": 258, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c8afeb62-331d-45f3-af3c-7054ec969ef0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c8afeb62-331d-45f3-af3c-7054ec969ef0", + "Name": null + }, + "156a8484-51bc-4d59-86b5-8e10ca0485fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "156a8484-51bc-4d59-86b5-8e10ca0485fc", + "Name": "W12x152", + "CellId": 258, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "911bc420-2b57-4e6f-8288-ad88fb2780be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "911bc420-2b57-4e6f-8288-ad88fb2780be", + "Name": null + }, + "6a1e5b5a-09cc-468b-95db-f1f020bdea60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6a1e5b5a-09cc-468b-95db-f1f020bdea60", + "Name": "W12x152", + "CellId": 259, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bee6abd3-b6d1-4925-8545-b6d18874df51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bee6abd3-b6d1-4925-8545-b6d18874df51", + "Name": null + }, + "5c8c79b0-1335-49d7-b6bf-6a9e16da3efc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5c8c79b0-1335-49d7-b6bf-6a9e16da3efc", + "Name": "W12x152", + "CellId": 259, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ed8c49cc-c239-4679-85c7-78529eac0874": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed8c49cc-c239-4679-85c7-78529eac0874", + "Name": null + }, + "be7bf444-9662-4021-86bd-79de80328ec4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "be7bf444-9662-4021-86bd-79de80328ec4", + "Name": "W12x152", + "CellId": 259, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0c94689a-4c67-4aa5-a603-bff5c59fe504": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c94689a-4c67-4aa5-a603-bff5c59fe504", + "Name": null + }, + "1bc744f5-79f3-4d6f-82af-f078d0e7f0ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1bc744f5-79f3-4d6f-82af-f078d0e7f0ee", + "Name": "W12x152", + "CellId": 260, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "42bbaf5c-4116-4570-a43a-cf8e8883d965": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "42bbaf5c-4116-4570-a43a-cf8e8883d965", + "Name": null + }, + "048943f4-a51c-4616-9e13-7bdffac362fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "048943f4-a51c-4616-9e13-7bdffac362fe", + "Name": "W12x152", + "CellId": 260, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6b696faa-20c2-4947-a1b2-9ec79df578db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6b696faa-20c2-4947-a1b2-9ec79df578db", + "Name": null + }, + "f972a672-4859-4bec-b0ef-b80822ee2b0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f972a672-4859-4bec-b0ef-b80822ee2b0e", + "Name": "W12x152", + "CellId": 260, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e79f37b5-a7c0-47ca-aa18-b02b781a7dba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e79f37b5-a7c0-47ca-aa18-b02b781a7dba", + "Name": null + }, + "2cefb9a0-5285-4584-9dde-4f3162116893": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2cefb9a0-5285-4584-9dde-4f3162116893", + "Name": "W12x152", + "CellId": 261, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6eff5319-96fc-4c64-8271-e75f566631a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6eff5319-96fc-4c64-8271-e75f566631a2", + "Name": null + }, + "f8f4967a-5420-4e7d-af42-82e5bfa9dc89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f8f4967a-5420-4e7d-af42-82e5bfa9dc89", + "Name": "W12x152", + "CellId": 261, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "412fe3ef-5827-43c6-b24f-683966d143bc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "412fe3ef-5827-43c6-b24f-683966d143bc", + "Name": null + }, + "5e357f0a-5698-4516-9ca6-b20637f8ecde": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5e357f0a-5698-4516-9ca6-b20637f8ecde", + "Name": "W12x152", + "CellId": 261, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "55da54ec-2cdf-4ce7-856c-1653bb4a193b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55da54ec-2cdf-4ce7-856c-1653bb4a193b", + "Name": null + }, + "e76ca618-0f58-4388-94cc-757cefd6a01c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e76ca618-0f58-4388-94cc-757cefd6a01c", + "Name": "W12x152", + "CellId": 262, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4efb47d9-897a-48d7-9b8e-04b2d914e397": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4efb47d9-897a-48d7-9b8e-04b2d914e397", + "Name": null + }, + "4c6ad451-6f4c-482a-a810-c820d4931e91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4c6ad451-6f4c-482a-a810-c820d4931e91", + "Name": "W12x152", + "CellId": 262, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b68fba6a-0c19-40b2-a997-9e1a3d7cfe58": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b68fba6a-0c19-40b2-a997-9e1a3d7cfe58", + "Name": null + }, + "09d91bb1-e826-47c4-a20e-2f3799b3913f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "09d91bb1-e826-47c4-a20e-2f3799b3913f", + "Name": "W12x152", + "CellId": 262, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "462f7acf-6443-480f-b047-4f1d18497669": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "462f7acf-6443-480f-b047-4f1d18497669", + "Name": null + }, + "8fdfef3a-2092-431d-b3bc-3198971c5b3e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8fdfef3a-2092-431d-b3bc-3198971c5b3e", + "Name": "W12x152", + "CellId": 263, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d17dab8a-14c6-4ed8-a3b7-9a0eef759859": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d17dab8a-14c6-4ed8-a3b7-9a0eef759859", + "Name": null + }, + "f033586d-b5cf-4305-bb33-2a90fdb2a009": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f033586d-b5cf-4305-bb33-2a90fdb2a009", + "Name": "W12x152", + "CellId": 263, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5d57755c-039e-4eb7-a9d1-924b2f5db8a0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5d57755c-039e-4eb7-a9d1-924b2f5db8a0", + "Name": null + }, + "f379c24e-e809-4141-9bc7-99a3eb08c692": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f379c24e-e809-4141-9bc7-99a3eb08c692", + "Name": "W12x152", + "CellId": 263, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "878a8c32-7829-48fb-baf5-3b72e91d0f2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "878a8c32-7829-48fb-baf5-3b72e91d0f2b", + "Name": null + }, + "a9317422-7903-4d44-8b83-a69138a19246": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a9317422-7903-4d44-8b83-a69138a19246", + "Name": "W12x152", + "CellId": 264, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "388f554e-f1db-487c-beed-eeaf1cdb91a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "388f554e-f1db-487c-beed-eeaf1cdb91a6", + "Name": null + }, + "444e31a9-b442-4a6a-a1a0-0675734fd896": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "444e31a9-b442-4a6a-a1a0-0675734fd896", + "Name": "W12x152", + "CellId": 264, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e36f8b53-d537-4d45-9d83-59c60c9948de": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e36f8b53-d537-4d45-9d83-59c60c9948de", + "Name": null + }, + "5229ba1f-76f0-4c56-a9b4-677e5f14fb7e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5229ba1f-76f0-4c56-a9b4-677e5f14fb7e", + "Name": "W12x152", + "CellId": 265, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9b9bfc3c-69c5-47aa-becf-e3f44ecc38c3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b9bfc3c-69c5-47aa-becf-e3f44ecc38c3", + "Name": null + }, + "280ca4c5-fdab-41a3-96b2-5cfd62c3b52e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "280ca4c5-fdab-41a3-96b2-5cfd62c3b52e", + "Name": "W12x152", + "CellId": 265, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b14eb587-28c2-4c27-a824-4f1cb8ecff44": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b14eb587-28c2-4c27-a824-4f1cb8ecff44", + "Name": null + }, + "bc5f6760-d8e3-457e-b263-3f27315c8bef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bc5f6760-d8e3-457e-b263-3f27315c8bef", + "Name": "W12x152", + "CellId": 266, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2d76032c-5167-4eaf-b533-15a5d0a0e1d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d76032c-5167-4eaf-b533-15a5d0a0e1d6", + "Name": null + }, + "9ff6d3a4-4e1b-40a8-939e-ba9372e6b653": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9ff6d3a4-4e1b-40a8-939e-ba9372e6b653", + "Name": "W12x152", + "CellId": 266, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e4dff7bc-5d64-4d24-b65f-0bf31fa180a5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4dff7bc-5d64-4d24-b65f-0bf31fa180a5", + "Name": null + }, + "32e04c9f-57cd-4e0c-8d6b-bd931556ab1e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "32e04c9f-57cd-4e0c-8d6b-bd931556ab1e", + "Name": "W12x152", + "CellId": 266, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "43a886f3-3a6c-4277-9d1b-b8631fc69730": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "43a886f3-3a6c-4277-9d1b-b8631fc69730", + "Name": null + }, + "d999c815-d4e7-41cd-a54a-97f0c6599679": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d999c815-d4e7-41cd-a54a-97f0c6599679", + "Name": "W12x152", + "CellId": 267, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "14fac723-342d-4afe-9317-f567a2a76bab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14fac723-342d-4afe-9317-f567a2a76bab", + "Name": null + }, + "9883b48f-2ac0-4a0e-9798-c5367a0cb6ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9883b48f-2ac0-4a0e-9798-c5367a0cb6ba", + "Name": "W12x152", + "CellId": 267, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5f064f21-d776-4257-9c80-7fc752be4d20": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f064f21-d776-4257-9c80-7fc752be4d20", + "Name": null + }, + "c3b789ee-6fbf-453c-8532-e907bd9c4c38": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c3b789ee-6fbf-453c-8532-e907bd9c4c38", + "Name": "W12x152", + "CellId": 267, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "74dda031-834c-4a01-b4eb-89665cb5f69d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "74dda031-834c-4a01-b4eb-89665cb5f69d", + "Name": null + }, + "d59f2f4a-6f65-49af-8114-98769cbffcd0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d59f2f4a-6f65-49af-8114-98769cbffcd0", + "Name": "W12x152", + "CellId": 268, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1396e7b8-80d2-4c3b-9934-d3d9cce40d8d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1396e7b8-80d2-4c3b-9934-d3d9cce40d8d", + "Name": null + }, + "a97f33cd-19b1-492d-95c9-ff0b87f383f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a97f33cd-19b1-492d-95c9-ff0b87f383f4", + "Name": "W12x152", + "CellId": 268, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "745ea2ae-e26b-4d69-b9c1-afaac1ea181c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "745ea2ae-e26b-4d69-b9c1-afaac1ea181c", + "Name": null + }, + "13a39e14-51fe-4535-a4ea-7ed181947930": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "13a39e14-51fe-4535-a4ea-7ed181947930", + "Name": "W12x152", + "CellId": 268, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41027711-0a10-4e07-9646-77d1fd896100": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41027711-0a10-4e07-9646-77d1fd896100", + "Name": null + }, + "0f78be49-af48-461e-89e5-df2a556d406b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0f78be49-af48-461e-89e5-df2a556d406b", + "Name": "W12x152", + "CellId": 269, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1b1bf6d5-6bf3-4990-9bf5-712d4f1e771c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b1bf6d5-6bf3-4990-9bf5-712d4f1e771c", + "Name": null + }, + "13a2150b-ed26-4c73-98e3-11bbf1594b96": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "13a2150b-ed26-4c73-98e3-11bbf1594b96", + "Name": "W12x152", + "CellId": 269, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f2dd9e84-9745-4f50-8484-4243385f01b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2dd9e84-9745-4f50-8484-4243385f01b4", + "Name": null + }, + "a42d84c3-ce88-4459-aa43-1714ce5285c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a42d84c3-ce88-4459-aa43-1714ce5285c5", + "Name": "W12x152", + "CellId": 269, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c9a59aa1-f9e8-447f-bbc4-526ed65e1567": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c9a59aa1-f9e8-447f-bbc4-526ed65e1567", + "Name": null + }, + "71500eb7-44b5-410a-ac2e-821c46f2b0d5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "71500eb7-44b5-410a-ac2e-821c46f2b0d5", + "Name": "W12x152", + "CellId": 270, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cefdf73a-a9eb-4207-820f-6c684f1ebaf5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cefdf73a-a9eb-4207-820f-6c684f1ebaf5", + "Name": null + }, + "748b51f4-b37d-41ab-a7f1-fb4c95f6b87b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "748b51f4-b37d-41ab-a7f1-fb4c95f6b87b", + "Name": "W12x152", + "CellId": 270, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97ea8fc6-866d-431f-80a3-9fb7874b6331": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97ea8fc6-866d-431f-80a3-9fb7874b6331", + "Name": null + }, + "ba71dab4-412d-42c3-9da3-a3a2cf1c5d74": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ba71dab4-412d-42c3-9da3-a3a2cf1c5d74", + "Name": "W12x152", + "CellId": 270, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "390e1daa-5313-48c4-90cc-85262a0adc2c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "390e1daa-5313-48c4-90cc-85262a0adc2c", + "Name": null + }, + "eefcb350-7559-40bc-bd6b-03f49138a1e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "eefcb350-7559-40bc-bd6b-03f49138a1e5", + "Name": "W12x152", + "CellId": 271, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fe9b5fe2-9171-4350-85fe-f165fe2e5b34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe9b5fe2-9171-4350-85fe-f165fe2e5b34", + "Name": null + }, + "bee869ce-3cba-44af-9b05-a52f1edd012c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bee869ce-3cba-44af-9b05-a52f1edd012c", + "Name": "W12x152", + "CellId": 271, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "50f20255-5701-45d2-b9d4-d04a2972d03a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "50f20255-5701-45d2-b9d4-d04a2972d03a", + "Name": null + }, + "8fb765da-b3f0-4794-afb5-bba89e4e5fb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8fb765da-b3f0-4794-afb5-bba89e4e5fb0", + "Name": "W12x152", + "CellId": 271, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c4afac9-cb8d-4d1c-8129-c23fbb5ecbc7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c4afac9-cb8d-4d1c-8129-c23fbb5ecbc7", + "Name": null + }, + "7d9f43ce-53b5-45f0-93d7-b79a14756407": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7d9f43ce-53b5-45f0-93d7-b79a14756407", + "Name": "W12x152", + "CellId": 272, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6131b992-e1c1-483a-9a64-c33ebbc90dd0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6131b992-e1c1-483a-9a64-c33ebbc90dd0", + "Name": null + }, + "45ec6bd2-d8e0-427b-b22d-a2b4d4e87816": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "45ec6bd2-d8e0-427b-b22d-a2b4d4e87816", + "Name": "W12x152", + "CellId": 272, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fcecb8b9-633f-4c1d-a66c-5333076ece4f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fcecb8b9-633f-4c1d-a66c-5333076ece4f", + "Name": null + }, + "d15e65f4-7369-4487-870d-5cea884dde8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d15e65f4-7369-4487-870d-5cea884dde8d", + "Name": "W12x152", + "CellId": 272, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1b6200e3-049b-40fa-a04c-c3aa421122b2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b6200e3-049b-40fa-a04c-c3aa421122b2", + "Name": null + }, + "57cccd3c-36f6-43f4-aa93-b2a3c4ce3e8c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "57cccd3c-36f6-43f4-aa93-b2a3c4ce3e8c", + "Name": "W12x152", + "CellId": 273, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "22e47cff-164b-4caf-9bdf-4fc5fd166054": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22e47cff-164b-4caf-9bdf-4fc5fd166054", + "Name": null + }, + "66bedf0a-43ef-48b3-933f-d94499bd09a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "66bedf0a-43ef-48b3-933f-d94499bd09a5", + "Name": "W12x152", + "CellId": 273, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1b4389c9-9d7f-431b-9174-360210e8aed1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b4389c9-9d7f-431b-9174-360210e8aed1", + "Name": null + }, + "cf1fca3d-49e2-493f-8a0e-1acd16f9e469": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cf1fca3d-49e2-493f-8a0e-1acd16f9e469", + "Name": "W12x152", + "CellId": 273, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6feed7bc-0c30-4474-9390-68c7b3162f4d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6feed7bc-0c30-4474-9390-68c7b3162f4d", + "Name": null + }, + "a01530e4-6aae-4644-b01c-73e9643425af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a01530e4-6aae-4644-b01c-73e9643425af", + "Name": "W12x152", + "CellId": 274, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "682f5afe-b727-495e-ad4e-0f1aee3d1b90": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "682f5afe-b727-495e-ad4e-0f1aee3d1b90", + "Name": null + }, + "82d7a3b5-934c-4816-9fa5-f232cbd03614": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "82d7a3b5-934c-4816-9fa5-f232cbd03614", + "Name": "W12x152", + "CellId": 274, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9a51c66f-00b9-4e36-bf68-270d72af299f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a51c66f-00b9-4e36-bf68-270d72af299f", + "Name": null + }, + "cfe5a9d8-68e0-4c21-a9a1-6cf29eea4779": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cfe5a9d8-68e0-4c21-a9a1-6cf29eea4779", + "Name": "W12x152", + "CellId": 275, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b065c194-aae9-49f6-897b-0b818b83edba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b065c194-aae9-49f6-897b-0b818b83edba", + "Name": null + }, + "5e49c96a-87d6-440e-8b30-f005b23fe570": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5e49c96a-87d6-440e-8b30-f005b23fe570", + "Name": "W12x152", + "CellId": 275, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5251f782-70ab-48e9-b27f-16ff7f4e05d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5251f782-70ab-48e9-b27f-16ff7f4e05d0", + "Name": null + }, + "8ee6a4e1-c16e-4107-9d52-d829cd99f9d4": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": -1.0 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 1.0 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "8ee6a4e1-c16e-4107-9d52-d829cd99f9d4", + "Name": "Structure elevation 0" + }, + "28c13cc4-c6a9-4c09-a188-6393d21c8567": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 3.5 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 5.5 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "28c13cc4-c6a9-4c09-a188-6393d21c8567", + "Name": "Structure elevation 4.5" + }, + "00ee9017-7840-4190-89fc-13099697449d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 7.35 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 9.35 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "00ee9017-7840-4190-89fc-13099697449d", + "Name": "Structure elevation 8.35" + }, + "47a069c2-7e15-4f66-a4d0-9b09e74492fc": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 11.2 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 13.2 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "47a069c2-7e15-4f66-a4d0-9b09e74492fc", + "Name": "Structure elevation 12.2" + }, + "8f602a08-fa4f-4c4b-a208-728c0c39ba41": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 19.0 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 21.0 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "8f602a08-fa4f-4c4b-a208-728c0c39ba41", + "Name": "Structure elevation 20" + } + } +} \ No newline at end of file diff --git a/Elements/src/Analysis/AnalysisImage.cs b/Elements/src/Analysis/AnalysisImage.cs index ad5ad8310..48f7110a3 100644 --- a/Elements/src/Analysis/AnalysisImage.cs +++ b/Elements/src/Analysis/AnalysisImage.cs @@ -5,6 +5,7 @@ using SixLabors.ImageSharp.PixelFormats; using System.IO; +using System.Text.Json.Serialization; namespace Elements.Analysis { @@ -46,6 +47,15 @@ private static int NextPowerOfTwo(double num) private double _numPixelsY; private int _imgPixels; + /// + /// Create an analysis image. + /// + [JsonConstructor] + public AnalysisImage() + { + + } + /// /// An AnalysisImage is similar to an AnalysisMesh in that it renders a mesh with analysis colors. /// However, it uses a mapped image texture rather than mesh vertex colors to lighten the resulting geometry. diff --git a/Elements/src/Analysis/AnalysisMesh.cs b/Elements/src/Analysis/AnalysisMesh.cs index 0d1e2cfdf..d4a93dd83 100644 --- a/Elements/src/Analysis/AnalysisMesh.cs +++ b/Elements/src/Analysis/AnalysisMesh.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using Elements.Geometry; using Elements.Geometry.Interfaces; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Analysis { @@ -65,6 +65,15 @@ public double TotalAnalysisLocations /// public ColorScale ColorScale { get; set; } + /// + /// Construct an analysis mesh. + /// + [JsonConstructor] + public AnalysisMesh() + { + Material = new Material($"Analysis_{Guid.NewGuid()}", Colors.White, 0, 0, null, true, true, id: Guid.NewGuid()); + } + /// /// Construct an analysis mesh. /// @@ -93,7 +102,7 @@ public AnalysisMesh(Polygon perimeter, this.VLength = vLength; this.ColorScale = colorScale; this._analyze = analyze; - this.Material = new Material($"Analysis_{Guid.NewGuid().ToString()}", Colors.White, 0, 0, null, true, true, id: Guid.NewGuid()); + this.Material = new Material($"Analysis_{Guid.NewGuid()}", Colors.White, 0, 0, null, true, true, id: Guid.NewGuid()); } /// diff --git a/Elements/src/Analysis/ColorScale.cs b/Elements/src/Analysis/ColorScale.cs index bd6b8343d..83ae034a7 100644 --- a/Elements/src/Analysis/ColorScale.cs +++ b/Elements/src/Analysis/ColorScale.cs @@ -1,8 +1,7 @@ using System; using System.Collections.Generic; using Elements.Geometry; -using Newtonsoft.Json; -using Elements; +using System.Text.Json.Serialization; using System.Linq; namespace Elements.Analysis @@ -19,21 +18,18 @@ public class ColorScale /// /// The colors of the scale. /// - [JsonProperty] public List Colors { get; } = new List(); /// /// The domain of the scale /// - [JsonProperty] - private List Domains { get; } = null; + public List Domains { get; } = null; /// /// Whether this scale is chunked into discrete bands. /// If false, values will be returned in a smooth gradient. /// - [JsonProperty] - private Boolean Discrete { get; } = false; + public bool Discrete { get; } = false; /// /// Create a ColorScale from a list of colors. The scale will automatically have a domain from 0 to 1. @@ -53,7 +49,7 @@ public ColorScale(List colors) /// Whether this color scale uses discrete values. /// The domains which the colors map to [JsonConstructor] - internal ColorScale(List colors, Boolean discrete, List domains = null) + public ColorScale(List colors, bool discrete, List domains = null) { this.Colors = colors; this.Discrete = discrete; @@ -114,7 +110,7 @@ public ColorScale(List colors, List values) { if (i > 0 && values[i] <= values[i - 1]) { - throw new ArgumentException($"Your list of custom values must be sorted numerically and contain no duplicate values. {values[i]} cannot come after {values[i-1]}."); + throw new ArgumentException($"Your list of custom values must be sorted numerically and contain no duplicate values. {values[i]} cannot come after {values[i - 1]}."); } this.Domains.Add(new Domain1d(values[i], values[i + 1])); } diff --git a/Elements/src/Annotations/AlignedDimension.cs b/Elements/src/Annotations/AlignedDimension.cs index e86dbe87d..a52e1055e 100644 --- a/Elements/src/Annotations/AlignedDimension.cs +++ b/Elements/src/Annotations/AlignedDimension.cs @@ -1,6 +1,6 @@ using System; +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Annotations { diff --git a/Elements/src/Annotations/ContinuousDimension.cs b/Elements/src/Annotations/ContinuousDimension.cs index 8d747903d..097e27644 100644 --- a/Elements/src/Annotations/ContinuousDimension.cs +++ b/Elements/src/Annotations/ContinuousDimension.cs @@ -1,6 +1,6 @@ using System; +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Annotations { diff --git a/Elements/src/Annotations/LinearDimension.cs b/Elements/src/Annotations/LinearDimension.cs index e6ff43a56..baa0459ab 100644 --- a/Elements/src/Annotations/LinearDimension.cs +++ b/Elements/src/Annotations/LinearDimension.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Annotations { diff --git a/Elements/src/Annotations/Message.cs b/Elements/src/Annotations/Message.cs index f2c4e6003..7b039c4e1 100644 --- a/Elements/src/Annotations/Message.cs +++ b/Elements/src/Annotations/Message.cs @@ -1,10 +1,9 @@ +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Annotations { /// An element that stores warning messages. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] // TODO: We probably don't want to inherit from GeometricElement for ever. It would be better for Messages to // behave more like actual Annotation elements while still being capable of having an appearance in 3D in some circumstances. public partial class Message : GeometricElement @@ -41,20 +40,20 @@ public Message() } /// A short message for the user. For a more detailed message, use MessageText. - [JsonProperty("ShortMessage", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("ShortMessage")] public string ShortMessage { get; set; } /// A warning message for the user. - [JsonProperty("Message", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("Message")] public string MessageText { get; set; } /// Developer specific message about the failure in the code. - [JsonProperty("Stack Trace", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("Stack Trace")] public string StackTrace { get; set; } /// Developer specific message about the failure in the code. - [JsonProperty("Severity", Required = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonPropertyName("Severity")] + [JsonConverter(typeof(JsonStringEnumConverter))] public MessageSeverity Severity { get; set; } } } \ No newline at end of file diff --git a/Elements/src/BIM/Door/Door.cs b/Elements/src/BIM/Door/Door.cs index f16afb685..c3541d0ba 100644 --- a/Elements/src/BIM/Door/Door.cs +++ b/Elements/src/BIM/Door/Door.cs @@ -2,9 +2,9 @@ using System; using System.Collections.Generic; using System.Text; -using Newtonsoft.Json; using Elements.Geometry.Solids; using System.Linq; +using System.Text.Json.Serialization; namespace Elements { @@ -14,21 +14,21 @@ public class Door : GeometricElement /// The material to be used on the door frame public Material FrameMaterial { get; set; } = new Material(Colors.Gray, 0.5, 0.25, false, null, false, false, null, false, null, 0, false, default, "Silver Frame"); /// The opening type of the door that should be placed - [JsonProperty("Door Opening Type")] - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonPropertyName("Door Opening Type")] + [JsonConverter(typeof(JsonStringEnumConverter))] public DoorOpeningType OpeningType { get; private set; } /// The opening side of the door that should be placed - [JsonProperty("Door Opening Side")] - [Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonPropertyName("Door Opening Side")] + [JsonConverter(typeof(JsonStringEnumConverter))] public DoorOpeningSide OpeningSide { get; private set; } /// Width of a door without a frame. - [JsonProperty("Door Width")] + [JsonPropertyName("Door Width")] public double DoorWidth { get; set; } /// Height of a door without a frame. - [JsonProperty("Door Height")] + [JsonPropertyName("Door Height")] public double DoorHeight { get; set; } /// Type of door (Glass or Solid). - [JsonProperty("Door Type")] + [JsonPropertyName("Door Type")] public string DoorType { get; set; } /// Default door thickness. public static double DEFAULT_DOOR_THICKNESS = Units.InchesToMeters(2.0); diff --git a/Elements/src/BaseCeiling.cs b/Elements/src/BaseCeiling.cs index 220ed190a..fd348e8e4 100644 --- a/Elements/src/BaseCeiling.cs +++ b/Elements/src/BaseCeiling.cs @@ -1,7 +1,7 @@ using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Interfaces; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; diff --git a/Elements/src/ContentCatalog.cs b/Elements/src/ContentCatalog.cs index 55e321822..14b59b59e 100644 --- a/Elements/src/ContentCatalog.cs +++ b/Elements/src/ContentCatalog.cs @@ -1,24 +1,21 @@ using System.Collections.Generic; using System.Linq; using Elements.Serialization.JSON; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; +using System.Text.Json.Serialization; +using System.Text.Json; namespace Elements { /// /// A collection of content elements. /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public class ContentCatalog : Element { /// The content elements in this catalog. - [JsonProperty("Content", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] public IList Content { get; set; } = new List(); /// An example arrangement of the elements contained in this catalog. - [JsonProperty("ReferenceConfiguration", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList ReferenceConfiguration { get; set; } /// @@ -41,10 +38,9 @@ public ContentCatalog(IList @content, IList @referenceC /// public string ToJson() { - JsonInheritanceConverter.ElementwiseSerialization = true; - var json = Newtonsoft.Json.JsonConvert.SerializeObject(this); - JsonInheritanceConverter.ElementwiseSerialization = false; - return json; + var serializerOptions = new JsonSerializerOptions(); + serializerOptions.Converters.Add(new ElementConverterFactory(true)); + return JsonSerializer.Serialize(this, serializerOptions); } /// @@ -53,17 +49,26 @@ public string ToJson() /// public static ContentCatalog FromJson(string json) { - var catalogObject = Newtonsoft.Json.JsonConvert.DeserializeObject(json); - if (catalogObject.TryGetValue("discriminator", out _)) + using (var doc = JsonDocument.Parse(json)) { - return catalogObject.ToObject(); - } - else if (catalogObject.TryGetValue("Elements", out _) && catalogObject.TryGetValue("Transform", out _)) // catalog is stored in a model - { - var model = Model.FromJson(json); - return model.AllElementsOfType().First(); + var root = doc.RootElement; + if (root.TryGetProperty("discriminator", out _)) + { + var options = new JsonSerializerOptions() + { + PropertyNameCaseInsensitive = true, + }; + var typeCache = AppDomainTypeCache.BuildAppDomainTypeCache(out _); + var refHandler = new ElementReferenceHandler(typeCache, root); + options.ReferenceHandler = refHandler; + return root.Deserialize(options); + } + else if (root.TryGetProperty("Elements", out _) && root.TryGetProperty("Transform", out _)) + { + var model = Model.FromJson(json); + return model.AllElementsOfType().First(); + } } - return null; } diff --git a/Elements/src/ContentElement.cs b/Elements/src/ContentElement.cs index 1f1b7be8e..34435965d 100644 --- a/Elements/src/ContentElement.cs +++ b/Elements/src/ContentElement.cs @@ -1,38 +1,33 @@ using System.Collections.Generic; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using System.Text.Json; namespace Elements { /// /// An element representing user content. /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public class ContentElement : GeometricElement { /// The URI of the gltf for this element. - [JsonProperty("gltfLocation", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("gltfLocation")] public string GltfLocation { get; set; } /// The bounding box of the content. - [JsonProperty("Bounding Box", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public BBox3 BoundingBox { get; set; } /// The scale needed to convert the gltf to meters. - [JsonProperty("Gltf Scale to Meters", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonPropertyName("Gltf Scale to Meters")] public double GltfScaleToMeters { get; set; } /// A vector indicating the direction the source object was originally facing. - [JsonProperty("SourceDirection", Required = Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Vector3 SourceDirection { get; set; } /// Alternate symbolic representations of the object. - [JsonProperty("Symbols", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Symbols { get; set; } - private System.Collections.Generic.IDictionary _additionalProperties = new System.Collections.Generic.Dictionary(); - /// /// Construct a content element. /// @@ -85,10 +80,34 @@ public ContentElement(string @gltfLocation, /// The guid of this element. /// The name of this element. /// The string json serialization of a dictionary of additional parameters. - public ContentElement(string @gltfLocation, BBox3 @boundingBox, double @gltfScaleToMeters, Vector3 @sourceDirection, IList symbols, Transform @transform, Material @material, Representation @representation, bool @isElementDefinition, System.Guid @id, string @name, string @additionalProperties) - : this(@gltfLocation, @boundingBox, @gltfScaleToMeters, @sourceDirection, symbols, @transform, @material, @representation, @isElementDefinition, @id, @name) + public ContentElement(string @gltfLocation, + BBox3 @boundingBox, + double @gltfScaleToMeters, + Vector3 @sourceDirection, + IList symbols, + Transform @transform, + Material @material, + Representation @representation, + bool @isElementDefinition, + System.Guid @id, + string @name, + string @additionalProperties) + : this(@gltfLocation, + @boundingBox, + @gltfScaleToMeters, + @sourceDirection, + symbols, + @transform, + @material, + @representation, + @isElementDefinition, + @id, + @name) { - this.AdditionalProperties = Newtonsoft.Json.JsonConvert.DeserializeObject>(@additionalProperties); + if (additionalProperties != null && additionalProperties != string.Empty) + { + this.AdditionalProperties = JsonSerializer.Deserialize>(@additionalProperties); + } } /// @@ -107,10 +126,33 @@ public ContentElement(string @gltfLocation, BBox3 @boundingBox, double @gltfScal /// The guid of this element. /// The name of this element. /// The string json serialization of a dictionary of additional parameters. - public ContentElement(string @gltfLocation, BBox3 @boundingBox, double @gltfScaleToMeters, Vector3 @sourceDirection, Transform @transform, Material @material, Representation @representation, bool @isElementDefinition, System.Guid @id, string @name, string @additionalProperties) - : this(@gltfLocation, @boundingBox, @gltfScaleToMeters, @sourceDirection, null, @transform, @material, @representation, @isElementDefinition, @id, @name) + public ContentElement(string @gltfLocation, + BBox3 @boundingBox, + double @gltfScaleToMeters, + Vector3 @sourceDirection, + Transform @transform, + Material @material, + Representation @representation, + bool @isElementDefinition, + System.Guid @id, + string @name, + string @additionalProperties) + : this(@gltfLocation, + @boundingBox, + @gltfScaleToMeters, + @sourceDirection, + null, + @transform, + @material, + @representation, + @isElementDefinition, + @id, + @name) { - this.AdditionalProperties = Newtonsoft.Json.JsonConvert.DeserializeObject>(@additionalProperties); + if (additionalProperties != null && additionalProperties != string.Empty) + { + this.AdditionalProperties = JsonSerializer.Deserialize>(@additionalProperties); + } } /// diff --git a/Elements/src/CoreModels/RepresentationInstance.cs b/Elements/src/CoreModels/RepresentationInstance.cs index 29914c2e8..54ec62a0b 100644 --- a/Elements/src/CoreModels/RepresentationInstance.cs +++ b/Elements/src/CoreModels/RepresentationInstance.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; +using System.Text.Json.Serialization; using Elements.Interfaces; -using Newtonsoft.Json; namespace Elements { @@ -43,7 +43,7 @@ public RepresentationInstance(ElementRepresentation representation, Material mat /// /// The representation's material. /// - [JsonProperty("Material", Required = Required.AllowNull)] + [JsonPropertyName("Material")] public Material Material { get; set; } /// diff --git a/Elements/src/CoreModels/SharedObject.cs b/Elements/src/CoreModels/SharedObject.cs index b33325d1a..7c2b0eb9a 100644 --- a/Elements/src/CoreModels/SharedObject.cs +++ b/Elements/src/CoreModels/SharedObject.cs @@ -1,12 +1,11 @@ using System; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { /// /// An object with a unique identifier which is shared by one or more elements, and excluded from element serialization. /// - [JsonConverter(typeof(Serialization.JSON.JsonInheritanceConverter), "discriminator")] public class SharedObject { private Guid _id; @@ -14,7 +13,7 @@ public class SharedObject /// /// Initializes a new instance of SharedObject. /// - /// The unique id of the object. + /// The unique id of the object. [JsonConstructor] public SharedObject(Guid id = default) { @@ -29,7 +28,8 @@ public SharedObject(Guid id = default) /// /// A unique object id. /// - [JsonProperty("Id", Required = Required.Always)] + [JsonPropertyName("Id")] + [JsonInclude] [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] public Guid Id { diff --git a/Elements/src/Element.cs b/Elements/src/Element.cs index a09c7cfa3..3ecc866cb 100644 --- a/Elements/src/Element.cs +++ b/Elements/src/Element.cs @@ -1,13 +1,15 @@ using System; using System.Collections.Generic; -using Newtonsoft.Json; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; +using System.Text.Json; namespace Elements { /// /// An object which is identified with a unique identifier and a name. /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [JsonConverter(typeof(ElementConverter))] public class Element : System.ComponentModel.INotifyPropertyChanged { private System.Guid _id; @@ -31,7 +33,6 @@ public class Element : System.ComponentModel.INotifyPropertyChanged } /// A unique id. - [JsonProperty("Id", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] public System.Guid Id { @@ -47,7 +48,7 @@ public System.Guid Id } /// A name. - [JsonProperty("Name", Required = Required.Default)] + [JsonPropertyName("Name")] public string Name { get { return _name; } @@ -66,7 +67,8 @@ public string Name /// /// A collection of additional properties. /// - [Newtonsoft.Json.JsonExtensionData] + // [JsonExtensionData] + [JsonConverter(typeof(AdditionalPropertiesConverter))] public System.Collections.Generic.IDictionary AdditionalProperties { get { return _additionalProperties; } @@ -92,7 +94,7 @@ protected virtual void RaisePropertyChanged([System.Runtime.CompilerServices.Cal /// /// An optional dictionary of mappings. /// - [JsonProperty("Mappings", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)] + [JsonPropertyName("Mappings")] internal Dictionary Mappings { get; set; } = null; /// @@ -137,5 +139,31 @@ public T GetMapping(string context) where T : MappingBase { return this.GetMapping(context) as T; } + + /// Deserialize an element of type T using reference resolution + /// and discriminated type construction. + /// Do not use this method for the deserialization large numbers of + /// elements, as it needs to construct a reference handler and type cache + /// for each invocation. + /// + /// The JSON of the element. + /// An element of type T. + public static T Deserialize(string json) + { + using (var doc = JsonDocument.Parse(json)) + { + var root = doc.RootElement; + var options = new JsonSerializerOptions() + { + PropertyNameCaseInsensitive = true, + AllowTrailingCommas = true, + IncludeFields = true + }; + var typeCache = AppDomainTypeCache.BuildAppDomainTypeCache(out _); + var refHandler = new ElementReferenceHandler(typeCache, root); + options.ReferenceHandler = refHandler; + return JsonSerializer.Deserialize(doc, options); + } + } } } diff --git a/Elements/src/ElementInstance.cs b/Elements/src/ElementInstance.cs index 9cb9e2019..d800f518c 100644 --- a/Elements/src/ElementInstance.cs +++ b/Elements/src/ElementInstance.cs @@ -1,6 +1,7 @@ using System; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using Elements.Serialization.JSON; namespace Elements { @@ -17,6 +18,7 @@ public class ElementInstance : Element /// /// The element from which this instance is derived. /// + [JsonConverter(typeof(ElementConverter))] public GeometricElement BaseDefinition { get; } /// @@ -26,13 +28,15 @@ public class ElementInstance : Element /// /// Construct an element instance. + /// This constructor is only for JSON serialization. You should use + /// someElement.CreateInstance(...) to create element instances. /// /// The definition from which this instance is derived. /// The transform of the instance. /// The name of the instance. /// The id of the instance. [JsonConstructor] - internal ElementInstance(GeometricElement baseDefinition, + public ElementInstance(GeometricElement baseDefinition, Transform transform, string name = null, Guid id = default(Guid)) : base(id == default(Guid) ? Guid.NewGuid() : id, name) diff --git a/Elements/src/ElementProxy.cs b/Elements/src/ElementProxy.cs index f79e702ba..b229db6d4 100644 --- a/Elements/src/ElementProxy.cs +++ b/Elements/src/ElementProxy.cs @@ -1,4 +1,4 @@ -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; @@ -52,19 +52,18 @@ internal static ElementProxy GetProxy(T element, string dependencyName) wh /// public class ElementProxy : Element where T : Element { - [JsonIgnore] private T _element = null; /// /// ID of element that this is a proxy for. /// - [JsonProperty("elementId")] + [JsonPropertyName("elementId")] public Guid ElementId { get; set; } /// /// Dependency string for the dependency that this element came from. /// - [JsonProperty("dependency")] + [JsonPropertyName("dependency")] public string Dependency { get; set; } /// @@ -82,18 +81,16 @@ public T Element /// /// JSON constructor only for deserializing other models. /// - /// [JsonConstructor] - internal ElementProxy(Guid elementId, string dependencyName, Guid id = default(Guid), string name = null) : base(id, name) + public ElementProxy(Guid elementId, string dependencyName, Guid id = default(Guid), string name = null) : base(id, name) { this.ElementId = elementId; this.Dependency = dependencyName; } /// - /// Create a new proxy within this function. Not intended to be used anywhere outside of ELementProxy.GetProxy(). + /// Create a new proxy within this function. Not intended to be used anywhere outside of ElementProxy.GetProxy(). /// - /// internal ElementProxy(T element, string dependencyName, Guid id = default(Guid), string name = null) : base(id, name) { this.ElementId = element.Id; diff --git a/Elements/src/Elements.csproj b/Elements/src/Elements.csproj index cdd21865a..ebf72678a 100644 --- a/Elements/src/Elements.csproj +++ b/Elements/src/Elements.csproj @@ -17,12 +17,13 @@ - - + + + @@ -57,6 +58,6 @@ - + \ No newline at end of file diff --git a/Elements/src/Floor.cs b/Elements/src/Floor.cs index 140ca71f6..f92917575 100644 --- a/Elements/src/Floor.cs +++ b/Elements/src/Floor.cs @@ -3,7 +3,8 @@ using System; using Elements.Geometry.Solids; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using Elements.Serialization.JSON; namespace Elements { @@ -29,6 +30,7 @@ public class Floor : GeometricElement, IHasOpenings /// /// The untransformed profile of the floor. /// + [JsonConverter(typeof(ElementConverter))] public Profile Profile { get; set; } /// @@ -84,6 +86,7 @@ public Floor(Profile profile, /// Is this an element definition? /// The floor's id. /// The floor's name. + [JsonConstructor] public Floor(Profile profile, double thickness, Transform transform = null, diff --git a/Elements/src/GeoJSON/Feature.cs b/Elements/src/GeoJSON/Feature.cs index 111137622..2d62e6a2f 100644 --- a/Elements/src/GeoJSON/Feature.cs +++ b/Elements/src/GeoJSON/Feature.cs @@ -1,4 +1,4 @@ -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System.Collections.Generic; namespace Elements.GeoJSON @@ -11,8 +11,9 @@ public class Feature /// /// The type of the feature. /// - [JsonProperty("type")] - public string Type{ + [JsonPropertyName("type")] + public string Type + { get { return GetType().Name; @@ -22,31 +23,32 @@ public string Type{ /// /// All properties of the feature. /// - [JsonProperty("properties", NullValueHandling=NullValueHandling.Ignore)] - public Dictionary Properties{get; set;} + [JsonPropertyName("properties")] + [JsonConverter(typeof(PropertiesConverter))] + public Dictionary Properties { get; set; } /// /// The geometry of the feature. /// - [JsonProperty("geometry")] + [JsonPropertyName("geometry")] [JsonConverter(typeof(GeometryConverter))] - public Geometry Geometry{get;set;} + public object Geometry { get; set; } /// /// The bounding box of the feature. /// - [JsonProperty("bbox", NullValueHandling=NullValueHandling.Ignore)] - public IEnumerable BBox{get;} + [JsonPropertyName("bbox")] + public IEnumerable BBox { get; } /// /// Construct a feature. /// /// /// - public Feature(Geometry geometry, Dictionary properties) + public Feature(object geometry, Dictionary properties) { this.Geometry = geometry; - this.Properties = properties; + this.Properties = properties ?? new Dictionary(); } } } \ No newline at end of file diff --git a/Elements/src/GeoJSON/FeatureCollection.cs b/Elements/src/GeoJSON/FeatureCollection.cs index 605b668ef..18dba00b8 100644 --- a/Elements/src/GeoJSON/FeatureCollection.cs +++ b/Elements/src/GeoJSON/FeatureCollection.cs @@ -1,5 +1,5 @@ using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.GeoJSON { @@ -11,19 +11,20 @@ public class FeatureCollection /// /// The type of the feature. /// - [JsonProperty("type")] - public string Type{ + [JsonPropertyName("type")] + public string Type + { get { return GetType().Name; } } - + /// /// A collection of features. /// - [JsonProperty("features")] - public IEnumerable Features{get;set;} + [JsonPropertyName("features")] + public IEnumerable Features { get; set; } /// /// Construct a feature collection. diff --git a/Elements/src/GeoJSON/Geometry.cs b/Elements/src/GeoJSON/Geometry.cs index 47b89feb5..497870691 100644 --- a/Elements/src/GeoJSON/Geometry.cs +++ b/Elements/src/GeoJSON/Geometry.cs @@ -1,6 +1,5 @@ using Elements.Geometry; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; +using System.Text.Json.Serialization; using System; @@ -15,7 +14,7 @@ public abstract class Geometry /// /// The type of the geometry. /// - [JsonProperty("type")] + [JsonPropertyName("type")] public virtual string Type { get { return GetType().Name; } @@ -30,7 +29,7 @@ public class Point : Geometry /// /// The coordinates of the geometry. /// - [JsonProperty("coordinates")] + [JsonPropertyName("coordinates")] public Position Coordinates { get; } /// @@ -56,7 +55,7 @@ public class Line : Geometry /// /// The coordinates of the geometry. /// - [JsonProperty("coordinates")] + [JsonPropertyName("coordinates")] public Position[] Coordinates { get; } /// @@ -82,7 +81,7 @@ public class MultiPoint : Geometry /// /// The coordinates of the geometry. /// - [JsonProperty("coordinates")] + [JsonPropertyName("coordinates")] public Position[] Coordinates { get; } /// @@ -108,7 +107,7 @@ public class LineString : Geometry /// /// The coordinates of the geometry. /// - [JsonProperty("coordinates")] + [JsonPropertyName("coordinates")] public Position[] Coordinates { get; } /// @@ -138,7 +137,7 @@ public class MultiLineString : Geometry /// /// The coordinates of the geometry. /// - [JsonProperty("coordinates")] + [JsonPropertyName("coordinates")] public Position[][] Coordinates { get; } /// @@ -163,7 +162,7 @@ public class Polygon : Geometry /// /// The coordinates of the geometry. /// - [JsonProperty("coordinates")] + [JsonPropertyName("coordinates")] public Position[][] Coordinates { get; } /// @@ -225,7 +224,7 @@ public class MultiPolygon : Geometry /// /// The coordinates of the geometry. /// - [JsonProperty("coordinates")] + [JsonPropertyName("coordinates")] public Position[][] Coordinates { get; } /// @@ -241,101 +240,4 @@ public MultiPolygon(Position[][] coordinates) this.Coordinates = coordinates; } } - - /// - /// A GeoJSON geometry collection. - /// - public class GeometryCollection - { - [JsonProperty("geometries")] - Geometry[] Geometries { get; } - - /// - /// Construct a geometry collection. - /// - /// An array of geometries. - public GeometryCollection(Geometry[] geometries) - { - this.Geometries = geometries; - } - } - - class PositionConverter : JsonConverter - { - public override bool CanConvert(Type objectType) - { - if (objectType == typeof(Position)) - { - return true; - } - return false; - } - - public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) - { - var lon = reader.ReadAsDouble(); - var lat = reader.ReadAsDouble(); - reader.Read(); - return new Position(lat.Value, lon.Value); - } - - public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) - { - var p = (Position)value; - writer.WriteStartArray(); - writer.WriteValue(p.Longitude); - writer.WriteValue(p.Latitude); - writer.WriteEndArray(); - } - } - - - class GeometryConverter : JsonConverter - { - public override bool CanConvert(Type objectType) - { - if (typeof(Geometry).IsAssignableFrom(objectType)) - { - return true; - } - return false; - } - - public override bool CanWrite - { - get { return false; } - } - - public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) - { - var jsonObject = JObject.Load(reader); - string typeName = (jsonObject["type"]).ToString(); - switch (typeName) - { - case "Point": - return jsonObject.ToObject(); - case "Line": - return jsonObject.ToObject(); - case "MultiPoint": - return jsonObject.ToObject(); - case "LineString": - return jsonObject.ToObject(); - case "MultiLineString": - return jsonObject.ToObject(); - case "Polygon": - return jsonObject.ToObject(); - case "MultiPolygon": - return jsonObject.ToObject(); - case "GeometryCollection": - return jsonObject.ToObject(); - default: - throw new Exception($"The type found in the GeoJSON, {typeName}, could not be resolved."); - } - } - - public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) - { - throw new NotImplementedException(); - } - } } \ No newline at end of file diff --git a/Elements/src/GeoJSON/GeometryCollection.cs b/Elements/src/GeoJSON/GeometryCollection.cs new file mode 100644 index 000000000..1f80bfbed --- /dev/null +++ b/Elements/src/GeoJSON/GeometryCollection.cs @@ -0,0 +1,26 @@ +using System.Text.Json.Serialization; + +namespace Elements.GeoJSON +{ + + /// + /// A GeoJSON geometry collection. + /// + public class GeometryCollection + { + /// + /// A collection of geometry. + /// + [JsonPropertyName("geometries")] + public Geometry[] Geometries { get; } + + /// + /// Construct a geometry collection. + /// + /// An array of geometries. + public GeometryCollection(Geometry[] geometries) + { + this.Geometries = geometries; + } + } +} \ No newline at end of file diff --git a/Elements/src/GeoJSON/GeometryConverter.cs b/Elements/src/GeoJSON/GeometryConverter.cs new file mode 100644 index 000000000..1ee2524f1 --- /dev/null +++ b/Elements/src/GeoJSON/GeometryConverter.cs @@ -0,0 +1,60 @@ +using System; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Elements.GeoJSON +{ + /// + /// Convert geojson geometry. + /// + public class GeometryConverter : JsonConverter + { + /// + /// Read geometry. + /// + /// + /// + /// + public override object Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + + var typeName = root.GetProperty("type").GetString(); + switch (typeName) + { + case "Point": + return root.Deserialize(); + case "Line": + return root.Deserialize(); + case "MultiPoint": + return root.Deserialize(); + case "LineString": + return root.Deserialize(); + case "MultiLineString": + return root.Deserialize(); + case "Polygon": + return root.Deserialize(); + case "MultiPolygon": + return root.Deserialize(); + case "GeometryCollection": + return root.Deserialize(); + default: + throw new Exception($"The type found in the GeoJSON, {typeName}, could not be resolved."); + } + } + } + + /// + /// Write geometry. + /// + /// + /// + /// + public override void Write(Utf8JsonWriter writer, object value, JsonSerializerOptions options) + { + JsonSerializer.Serialize(writer, value, options); + } + } +} \ No newline at end of file diff --git a/Elements/src/GeoJSON/Position.cs b/Elements/src/GeoJSON/Position.cs index 7515d85fc..fbd6b45c3 100644 --- a/Elements/src/GeoJSON/Position.cs +++ b/Elements/src/GeoJSON/Position.cs @@ -1,6 +1,6 @@ using Elements.Geometry; using Elements.Spatial; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.GeoJSON { @@ -11,11 +11,11 @@ namespace Elements.GeoJSON public class Position { /// The latitude in decimal degrees. - [JsonProperty("latitude", Required = Required.Always)] + [JsonPropertyName("latitude")] public double Latitude { get; set; } /// The longitude in decimal degrees. - [JsonProperty("longitude", Required = Required.Always)] + [JsonPropertyName("longitude")] public double Longitude { get; set; } /// diff --git a/Elements/src/GeoJSON/PositionConverter.cs b/Elements/src/GeoJSON/PositionConverter.cs new file mode 100644 index 000000000..a685cbe5f --- /dev/null +++ b/Elements/src/GeoJSON/PositionConverter.cs @@ -0,0 +1,42 @@ +using System; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Elements.GeoJSON +{ + /// + /// Convert a geojson position object to an array of coordinates. + /// + public class PositionConverter : JsonConverter + { + /// + /// Read a position. + /// + /// + /// + /// + public override Position Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + var values = root.Deserialize(); + return new Position(values[1], values[0]); + } + } + + /// + /// Write a position. + /// + /// + /// + /// + public override void Write(Utf8JsonWriter writer, Position value, JsonSerializerOptions options) + { + writer.WriteStartArray(); + writer.WriteNumberValue(value.Longitude); + writer.WriteNumberValue(value.Latitude); + writer.WriteEndArray(); + } + } +} \ No newline at end of file diff --git a/Elements/src/GeoJSON/PropertiesConverter.cs b/Elements/src/GeoJSON/PropertiesConverter.cs new file mode 100644 index 000000000..75b9b1d5c --- /dev/null +++ b/Elements/src/GeoJSON/PropertiesConverter.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Elements.GeoJSON +{ + /// + /// Convert geojson properties. + /// + public class PropertiesConverter : JsonConverter> + { + /// + /// Read properties. + /// + /// + /// + /// + /// + public override Dictionary Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + var properties = new Dictionary(); + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + foreach (var el in root.EnumerateObject()) + { + var key = el.Name; + switch (el.Value.ValueKind) + { + // TODO: Support additional types of geojson properties + // as needed. + case JsonValueKind.Number: + if (el.Value.TryGetInt32(out var intValue)) + { + properties.Add(key, intValue); + } + else if (el.Value.TryGetDouble(out var doubleValue)) + { + properties.Add(key, doubleValue); + } + break; + case JsonValueKind.String: + properties.Add(key, el.Value.GetString()); + break; + } + } + } + return properties; + } + + /// + /// Write properties. + /// + /// + /// + /// + public override void Write(Utf8JsonWriter writer, Dictionary value, JsonSerializerOptions options) + { + JsonSerializer.Serialize(writer, value); + } + } +} \ No newline at end of file diff --git a/Elements/src/GeometricElement.cs b/Elements/src/GeometricElement.cs index 95f81e3dc..152b3aba5 100644 --- a/Elements/src/GeometricElement.cs +++ b/Elements/src/GeometricElement.cs @@ -6,10 +6,11 @@ using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Interfaces; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; using Elements.Search; using Elements.Spatial; using Elements.Utilities; -using Newtonsoft.Json; [assembly: InternalsVisibleTo("Hypar.Elements.Serialization.SVG.Tests"), InternalsVisibleTo("Hypar.Elements.Serialization.SVG")] @@ -19,7 +20,6 @@ namespace Elements /// /// An element with a geometric representation. /// - [JsonConverter(typeof(Serialization.JSON.JsonInheritanceConverter), "discriminator")] public class GeometricElement : Element { private BBox3 _bounds; @@ -39,25 +39,22 @@ public class GeometricElement : Element public BBox3 Bounds => _bounds; /// The element's transform. - [JsonProperty("Transform", Required = Required.AllowNull)] public Transform Transform { get; set; } /// The element's material. - [JsonProperty("Material", Required = Required.AllowNull)] + [JsonConverter(typeof(ElementConverter))] public Material Material { get; set; } /// The element's representation. - [JsonProperty("Representation", Required = Required.AllowNull)] public Representation Representation { get; set; } /// - /// The list of element representations. + /// The list of element representations. /// [JsonIgnore] public List RepresentationInstances { get; set; } = new List(); /// When true, this element will act as the base definition for element instances, and will not appear in visual output. - [JsonProperty("IsElementDefinition", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public bool IsElementDefinition { get; set; } = false; /// @@ -196,7 +193,7 @@ public bool HasGeometry() /// The plane of intersection. /// A collection of polygons representing /// the intersections of the plane and the element's solid geometry. - /// A collection of polygons representing coplanar + /// A collection of polygons representing coplanar /// faces beyond the plane of intersection. /// A collection of lines representing intersections /// of zero-thickness elements with the plane. diff --git a/Elements/src/Geometry/Arc.cs b/Elements/src/Geometry/Arc.cs index 87aa593f8..40ef58d42 100644 --- a/Elements/src/Geometry/Arc.cs +++ b/Elements/src/Geometry/Arc.cs @@ -1,6 +1,6 @@ using Elements.Validators; using System; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System.Collections.Generic; using System.Linq; @@ -21,11 +21,15 @@ public partial class Arc : TrimmedCurve, IEquatable public override Domain1d Domain => new Domain1d(Units.DegreesToRadians(this.StartAngle), Units.DegreesToRadians(this.EndAngle)); /// The angle from 0.0, in degrees, at which the arc will start with respect to the positive X axis. - [JsonProperty("StartAngle", Required = Required.Always)] + + [JsonPropertyName("StartAngle")] + [JsonInclude] public double StartAngle { get; protected set; } /// The angle from 0.0, in degrees, at which the arc will end with respect to the positive X axis. - [JsonProperty("EndAngle", Required = Required.Always)] + + [JsonPropertyName("EndAngle")] + [JsonInclude] public double EndAngle { get; protected set; } /// diff --git a/Elements/src/Geometry/BBox3.cs b/Elements/src/Geometry/BBox3.cs index df73c2f80..a25ec6e90 100644 --- a/Elements/src/Geometry/BBox3.cs +++ b/Elements/src/Geometry/BBox3.cs @@ -1,23 +1,22 @@ using Elements.Validators; -using Newtonsoft.Json; -using System; +using System.Text.Json.Serialization; using System.Collections.Generic; using System.Linq; +using Elements.Serialization.JSON; +using System; namespace Elements.Geometry { /// /// An axis-aligned bounding box. /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [JsonConverter(typeof(ElementConverter))] public struct BBox3 { /// The minimum extent of the bounding box. - [JsonProperty("Min", Required = Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Vector3 Min { get; set; } /// The maximum extent of the bounding box. - [JsonProperty("Max", Required = Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Vector3 Max { get; set; } /// diff --git a/Elements/src/Geometry/Bezier.cs b/Elements/src/Geometry/Bezier.cs index c9fbad96a..f71573d47 100644 --- a/Elements/src/Geometry/Bezier.cs +++ b/Elements/src/Geometry/Bezier.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry.Interfaces; -using Newtonsoft.Json; namespace Elements.Geometry { @@ -11,7 +11,7 @@ namespace Elements.Geometry // http://webhome.cs.uvic.ca/~blob/courses/305/notes/pdf/ref-frames.pdf /// - /// The frame type to be used for operations requiring + /// The frame type to be used for operations requiring /// a moving frame around the curve. /// public enum FrameType @@ -459,7 +459,7 @@ public bool Intersects(Ellipse ellipse, out List results) // Bezier curve always inside it's bounding box. // Rough check if curve is too far away. var boxCenter = box.Center(); - if (ellipse.Center.DistanceTo(boxCenter) > + if (ellipse.Center.DistanceTo(boxCenter) > Math.Max(ellipse.MajorAxis, ellipse.MinorAxis) + (box.Max - boxCenter).Length()) { results = new List(); @@ -509,7 +509,7 @@ public bool Intersects(Bezier other, out List results) Intersects(other, (box, Domain), - (otherBox, other.Domain), + (otherBox, other.Domain), leftCache, rightCache, ref results); @@ -566,7 +566,7 @@ private void Intersects(Bezier other, Intersects(other, left, loRight, leftCache, rightCache, ref results); Intersects(other, left, hiRight, leftCache, rightCache, ref results); } - else if (!rightSplit) + else if (!rightSplit) { Intersects(other, loLeft, right, leftCache, rightCache, ref results); Intersects(other, hiLeft, right, leftCache, rightCache, ref results); @@ -589,7 +589,7 @@ private bool SplitCurveBox((BBox3 Box, Domain1d Domain) def, high = (default, default); // If curve bounding box is tolerance size - it's considered as intersection. - // Otherwise calculate new boxes of two halves of the curve. + // Otherwise calculate new boxes of two halves of the curve. var epsilon2 = Vector3.EPSILON * Vector3.EPSILON; var leftConvergent = (def.Box.Max - def.Box.Min).LengthSquared() < epsilon2 * 2; if (leftConvergent) @@ -598,7 +598,7 @@ private bool SplitCurveBox((BBox3 Box, Domain1d Domain) def, } // If curve bounding box is tolerance size - it's considered as intersection. - // Otherwise calculate new boxes of two halves of the curve. + // Otherwise calculate new boxes of two halves of the curve. low = CurveBoxHalf(def, cache, true); high = CurveBoxHalf(def, cache, false); return true; diff --git a/Elements/src/Geometry/BoundedCurve.cs b/Elements/src/Geometry/BoundedCurve.cs index c8e79b858..d4db5626b 100644 --- a/Elements/src/Geometry/BoundedCurve.cs +++ b/Elements/src/Geometry/BoundedCurve.cs @@ -1,13 +1,15 @@ using System; using System.Collections.Generic; using Elements.Geometry.Interfaces; -using Newtonsoft.Json; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; namespace Elements.Geometry { /// /// A bounded curve. /// + [JsonConverter(typeof(ElementConverter))] public abstract class BoundedCurve : Curve, IBoundedCurve { /// diff --git a/Elements/src/Geometry/Box.cs b/Elements/src/Geometry/Box.cs index a27727d53..44e5ceff6 100644 --- a/Elements/src/Geometry/Box.cs +++ b/Elements/src/Geometry/Box.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Linq; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { diff --git a/Elements/src/Geometry/Circle.cs b/Elements/src/Geometry/Circle.cs index 69296293e..6e96dbce0 100644 --- a/Elements/src/Geometry/Circle.cs +++ b/Elements/src/Geometry/Circle.cs @@ -2,18 +2,19 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry.Interfaces; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using System.ComponentModel.DataAnnotations; namespace Elements.Geometry { /// - /// A circle. + /// A circle. /// Parameterization of the circle is 0 -> 2PI. /// public class Circle : Curve, IConic { /// The center of the circle. - [JsonProperty("Center", Required = Required.AllowNull)] + [JsonPropertyName("Center")] public Vector3 Center { get @@ -23,8 +24,9 @@ public Vector3 Center } /// The radius of the circle. - [JsonProperty("Radius", Required = Required.Always)] - [System.ComponentModel.DataAnnotations.Range(0.0D, double.MaxValue)] + [JsonPropertyName("Radius")] + [JsonInclude] + [Range(0.0D, double.MaxValue)] public double Radius { get; protected set; } /// @@ -194,7 +196,7 @@ public override bool Intersects(ICurve curve, out List results) { case BoundedCurve boundedCurve: return boundedCurve.Intersects(this, out results); - case InfiniteLine line : + case InfiniteLine line: return Intersects(line, out results); case Circle circle: return Intersects(circle, out results); @@ -219,7 +221,7 @@ public bool Intersects(Circle other, out List results) Plane planeA = new Plane(Center, Normal); Plane planeB = new Plane(other.Center, other.Normal); - // Check if two circles are on the same plane. + // Check if two circles are on the same plane. if (Normal.IsParallelTo(other.Normal, Vector3.EPSILON * Vector3.EPSILON) && other.Center.DistanceTo(planeA).ApproximatelyEquals(0)) { diff --git a/Elements/src/Geometry/Color.cs b/Elements/src/Geometry/Color.cs index 5569e21d4..d18202cb8 100644 --- a/Elements/src/Geometry/Color.cs +++ b/Elements/src/Geometry/Color.cs @@ -1,5 +1,5 @@ using Elements.Validators; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Globalization; @@ -9,22 +9,18 @@ namespace Elements.Geometry public struct Color : IEquatable { /// The red component of the color between 0.0 and 1.0. - [JsonProperty("Red", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Range(0.0D, 1.0D)] public double Red { get; set; } /// The green component of the color between 0.0 and 1.0. - [JsonProperty("Green", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Range(0.0D, 1.0D)] public double Green { get; set; } /// The blue component of the color between 0.0 and 1.0. - [JsonProperty("Blue", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Range(0.0D, 1.0D)] public double Blue { get; set; } /// The alpha component of the color between 0.0 and 1.0. - [JsonProperty("Alpha", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Range(0.0D, 1.0D)] public double Alpha { get; set; } diff --git a/Elements/src/Geometry/Curve.cs b/Elements/src/Geometry/Curve.cs index 8809802aa..987cc00a5 100644 --- a/Elements/src/Geometry/Curve.cs +++ b/Elements/src/Geometry/Curve.cs @@ -1,14 +1,15 @@ using Elements.Geometry.Interfaces; -using Newtonsoft.Json; using System; using System.Collections.Generic; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; namespace Elements.Geometry { /// /// The abstract base class for all curves. /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [JsonConverter(typeof(ElementConverter))] public abstract partial class Curve : ICurve, ITransformable { /// diff --git a/Elements/src/Geometry/Ellipse.cs b/Elements/src/Geometry/Ellipse.cs index 57023e357..9c96029e4 100644 --- a/Elements/src/Geometry/Ellipse.cs +++ b/Elements/src/Geometry/Ellipse.cs @@ -1,14 +1,14 @@ using System; using System.Collections.Generic; using Elements.Geometry.Interfaces; -using Newtonsoft.Json; using System.Linq; using SixLabors.ImageSharp.ColorSpaces; +using System.Text.Json.Serialization; namespace Elements.Geometry { /// - /// An ellipse. + /// An ellipse. /// Parameterization of the curve is 0 -> 2PI. /// public class Ellipse : Curve, IConic @@ -139,14 +139,14 @@ public bool ParameterAt(Vector3 pt, out double t) t = ParameterAtUntransformed(local); return true; } - + t = 0; return false; } - + private double ParameterAtUntransformed(Vector3 pt) { - return Math.Atan2(pt.Y / MinorAxis , pt.X / MajorAxis); + return Math.Atan2(pt.Y / MinorAxis, pt.X / MajorAxis); } private bool OnEllipseUntransformed(Vector3 pt) @@ -185,7 +185,7 @@ public override Transform TransformAt(double u) // Normals will naturally flip when u > pi. // To ensure consistent direction, flip the - // normal if it's reversed with regards to + // normal if it's reversed with regards to if (refVector.Dot(x) < 0) { x = x.Negate(); @@ -259,7 +259,7 @@ public bool Intersects(InfiniteLine line, out List results) bool lineOnPlane = line.Origin.DistanceTo(ellipsePlane).ApproximatelyEquals(0) && line.Direction.Dot(ellipsePlane.Normal).ApproximatelyEquals(0); - // If the line is on the plane, just check if it intersects ellipse plane + // If the line is on the plane, just check if it intersects ellipse plane // and if the intersection point is on the ellipse. if (!lineOnPlane) { @@ -274,7 +274,7 @@ public bool Intersects(InfiniteLine line, out List results) } return results.Any(); } - + // When line and ellipse share a plane their intersections can be solved as // quadratic equation since ellipse formula quadratic, line formula linear. // There are up to two intersections possible with is also aligned with the amount of roots. @@ -315,7 +315,7 @@ public bool Intersects(Circle circle, out List results) Plane planeA = new Plane(Center, Normal); Plane planeB = new Plane(circle.Center, circle.Normal); - // Check if circle and ellipse are on the same plane. + // Check if circle and ellipse are on the same plane. if (Normal.IsParallelTo(circle.Normal, Vector3.EPSILON * Vector3.EPSILON) && circle.Center.DistanceTo(planeA).ApproximatelyEquals(0)) { @@ -335,7 +335,7 @@ public bool Intersects(Circle circle, out List results) var div = (int)Math.Round(this.Circumference() / BoundedCurve.DefaultMinimumChordLength); - // Iteratively, find points in ellipse with distance to circle equal its radius. + // Iteratively, find points in ellipse with distance to circle equal its radius. var localCenter = Transform.Inverted().OfPoint(circle.Center); var roots = Equations.SolveIterative(0, Math.PI * 2, div, new Func((t) => @@ -380,7 +380,7 @@ public bool Intersects(Ellipse other, out List results) Plane planeA = new Plane(Center, Normal); Plane planeB = new Plane(other.Center, other.Normal); - // Check if circle and ellipse are on the same plane. + // Check if circle and ellipse are on the same plane. if (Normal.IsParallelTo(other.Normal, Vector3.EPSILON * Vector3.EPSILON) && other.Center.DistanceTo(planeA).ApproximatelyEquals(0)) { @@ -405,7 +405,7 @@ public bool Intersects(Ellipse other, out List results) } // Too far away (rough estimation) - if (Center.DistanceTo(other.Center) > + if (Center.DistanceTo(other.Center) > Math.Max(MajorAxis, MinorAxis) + Math.Max(other.MajorAxis, other.MinorAxis)) { return false; @@ -466,7 +466,7 @@ public bool Intersects(BoundedCurve curve, out List results) /// public double Circumference() { - return Math.PI * (3 * (MajorAxis + MinorAxis) - + return Math.PI * (3 * (MajorAxis + MinorAxis) - Math.Sqrt((3 * MajorAxis + MinorAxis) * (MajorAxis + 3 * MinorAxis))); } @@ -511,7 +511,7 @@ internal double ArcLengthUntil(double t0, if (arcLength + sampleLength > distance) { // TODO: This is an approximation. - // This will return the parameter before the + // This will return the parameter before the // actual value that we want. Implement a more // precise strategy. end = t; diff --git a/Elements/src/Geometry/EllipticalArc.cs b/Elements/src/Geometry/EllipticalArc.cs index 932c79f2b..5923b2bb5 100644 --- a/Elements/src/Geometry/EllipticalArc.cs +++ b/Elements/src/Geometry/EllipticalArc.cs @@ -1,7 +1,8 @@ using System; using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; using System.Linq; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -17,13 +18,15 @@ public class EllipticalArc : TrimmedCurve public override Domain1d Domain => new Domain1d(Units.DegreesToRadians(this.StartAngle), Units.DegreesToRadians(this.EndAngle)); /// The angle from 0.0, in degrees, at which the arc will start with respect to the positive X axis. - [JsonProperty("StartAngle", Required = Required.Always)] - [System.ComponentModel.DataAnnotations.Range(0.0D, 360.0D)] + [JsonPropertyName("StartAngle")] + [JsonInclude] + [Range(0.0D, 360.0D)] public double StartAngle { get; protected set; } /// The angle from 0.0, in degrees, at which the arc will end with respect to the positive X axis. - [JsonProperty("EndAngle", Required = Required.Always)] - [System.ComponentModel.DataAnnotations.Range(0.0D, 360.0D)] + [JsonPropertyName("EndAngle")] + [JsonInclude] + [Range(0.0D, 360.0D)] public double EndAngle { get; protected set; } /// diff --git a/Elements/src/Geometry/IGraphicsBuffers.cs b/Elements/src/Geometry/IGraphicsBuffers.cs index 073f3bc2e..67f4b0783 100644 --- a/Elements/src/Geometry/IGraphicsBuffers.cs +++ b/Elements/src/Geometry/IGraphicsBuffers.cs @@ -40,8 +40,9 @@ internal interface IGraphicsBuffers void AddVertex(double x, double y, double z, double nx, double ny, double nz, double u, double v, Color? color = null); /// - /// Add vertices to the graphics buffers + /// Add vertices to the graphics buffers. /// + /// The vertices to add. void AddVertices(IList<(Vector3 position, Vector3 normal, UV uv, Color? color)> vertices); /// diff --git a/Elements/src/Geometry/IndexedPolycurve.cs b/Elements/src/Geometry/IndexedPolycurve.cs index 920afad2a..1e740bb84 100644 --- a/Elements/src/Geometry/IndexedPolycurve.cs +++ b/Elements/src/Geometry/IndexedPolycurve.cs @@ -1,10 +1,13 @@ using Elements.Geometry.Interfaces; +using Elements.Serialization.JSON; using Elements.Validators; -using Newtonsoft.Json; using System; using System.Collections; using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; using System.Linq; +using System.Text.Json.Serialization; +using Validator = Elements.Validators.Validator; namespace Elements.Geometry { @@ -13,7 +16,7 @@ namespace Elements.Geometry /// Parameterization of the curve is 0->n where n is the number of curves. /// /// [!code-csharp[Main](../../Elements/test/IndexedPolycurveTests.cs?name=example)] - [JsonObject] + /// public class IndexedPolycurve : BoundedCurve, IEnumerable, IEquatable { /// @@ -62,9 +65,10 @@ public override Vector3 End public IList> CurveIndices { get; set; } /// The vertices of the polygon. - [JsonProperty("Vertices", Required = Required.Always)] - [System.ComponentModel.DataAnnotations.Required] - [System.ComponentModel.DataAnnotations.MinLength(2)] + [JsonPropertyName("Vertices")] + [JsonInclude] + [Required] + [MinLength(2)] public IList Vertices { get; set; } = new List(); /// @@ -292,7 +296,7 @@ public override double[] GetSubdivisionParameters(double startSetbackDistance = for (var j = 0; j < localParameters.Length; j++) { var localParameter = localParameters[j]; - // The curve domain may be 0->2Pi. We need to map that + // The curve domain may be 0->2Pi. We need to map that // into a domain that is a subsection of the larger domain. var remapped = localParameter.MapBetweenDomains(curve.Domain, localDomain); @@ -394,7 +398,7 @@ public override double ParameterAtDistanceFromParameter(double distance, double var curve = _curves[i]; // The start parameter will either be the partial - // parameter, because this is the curve on which + // parameter, because this is the curve on which // the start parameter is located, or it will be 0.0. var normalizedStartParameter = i == startCurveIndex ? start - i : 0.0; var localStartParameter = normalizedStartParameter.MapToDomain(curve.Domain); @@ -549,7 +553,7 @@ public override bool Intersects(ICurve curve, out List results) { foreach (var item in intersections) { - if (!results.Any() || + if (!results.Any() || !results.First().IsAlmostEqualTo(item) && !results.Last().IsAlmostEqualTo(item)) { results.Add(item); diff --git a/Elements/src/Geometry/Line.cs b/Elements/src/Geometry/Line.cs index 068292ef5..18f92059b 100644 --- a/Elements/src/Geometry/Line.cs +++ b/Elements/src/Geometry/Line.cs @@ -2,8 +2,9 @@ using System; using System.Collections.Generic; using System.Linq; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Elements.Spatial; +using Elements.Serialization.JSON; namespace Elements.Geometry { diff --git a/Elements/src/Geometry/Matrix.cs b/Elements/src/Geometry/Matrix.cs index 703487733..9c09b4f5c 100644 --- a/Elements/src/Geometry/Matrix.cs +++ b/Elements/src/Geometry/Matrix.cs @@ -1,6 +1,6 @@ using Elements.Validators; using System; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -12,7 +12,6 @@ namespace Elements.Geometry public partial class Matrix : IEquatable { /// The components of the matrix. - [JsonProperty("Components", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] [System.ComponentModel.DataAnnotations.MinLength(12)] [System.ComponentModel.DataAnnotations.MaxLength(12)] diff --git a/Elements/src/Geometry/Mesh.cs b/Elements/src/Geometry/Mesh.cs index 9a7aeb3b9..01bbe22db 100644 --- a/Elements/src/Geometry/Mesh.cs +++ b/Elements/src/Geometry/Mesh.cs @@ -1,12 +1,12 @@ using Elements.Search; using Elements.Serialization.JSON; using LibTessDotNet.Double; -using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using static Elements.Units; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -22,11 +22,9 @@ public partial class Mesh private readonly Dictionary _vertexMap = new Dictionary(); /// The mesh's vertices. - [JsonProperty("Vertices", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Vertices { get; set; } /// The mesh's triangles. - [JsonProperty("Triangles", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Triangles { get; set; } private BBox3 _bbox = new BBox3(new List { }); diff --git a/Elements/src/Geometry/Plane.cs b/Elements/src/Geometry/Plane.cs index bed51591a..7b3fe4133 100644 --- a/Elements/src/Geometry/Plane.cs +++ b/Elements/src/Geometry/Plane.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using Elements.Validators; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -11,11 +11,9 @@ namespace Elements.Geometry public partial class Plane : IEquatable { /// The origin of the plane. - [JsonProperty("Origin", Required = Required.AllowNull)] public Vector3 Origin { get; set; } /// The normal of the plane. - [JsonProperty("Normal", Required = Required.AllowNull)] public Vector3 Normal { get; set; } /// diff --git a/Elements/src/Geometry/Polygon.cs b/Elements/src/Geometry/Polygon.cs index 1f92b8a98..cf51a4c08 100644 --- a/Elements/src/Geometry/Polygon.cs +++ b/Elements/src/Geometry/Polygon.cs @@ -2,11 +2,14 @@ using Elements.Geometry.Profiles; using Elements.Search; using Elements.Spatial; -using Newtonsoft.Json; +using Elements.Validators; +using LibTessDotNet.Double; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; +using Elements.Serialization.JSON; namespace Elements.Geometry { @@ -17,6 +20,7 @@ namespace Elements.Geometry /// /// [!code-csharp[Main](../../Elements/test/PolygonTests.cs?name=example)] /// + [JsonConverter(typeof(PolygonConverter))] public partial class Polygon : Polyline { /// diff --git a/Elements/src/Geometry/Polyline.cs b/Elements/src/Geometry/Polyline.cs index b7922cdba..15905e0d8 100644 --- a/Elements/src/Geometry/Polyline.cs +++ b/Elements/src/Geometry/Polyline.cs @@ -1,9 +1,10 @@ -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; using ClipperLib; using Elements.Search; +using Elements.Serialization.JSON; namespace Elements.Geometry { @@ -14,6 +15,7 @@ namespace Elements.Geometry /// /// [!code-csharp[Main](../../Elements/test/PolylineTests.cs?name=example)] /// + [JsonConverter(typeof(PolylineConverter))] public class Polyline : IndexedPolycurve { /// @@ -289,7 +291,7 @@ public override Transform[] Frames(double startSetbackDistance = 0.0, // Calculate number of frames. 2 frames corresponding to end parameters. // 1 if startIndex == endIndex. - var length = endIndex - startIndex + 3; + var length = endIndex - startIndex + 3; // startIndex is set to the first distinct vertex after startParam. if (startParam.ApproximatelyEquals(startIndex)) @@ -316,7 +318,7 @@ public override Transform[] Frames(double startSetbackDistance = 0.0, result[0] = new Transform(PointAt(startParam), normals[startIndex - 1].Cross(tangent), tangent); index++; } - + for (var i = startIndex; i <= endIndex; i++, index++) { result[index] = CreateOrthogonalTransform(i, Vertices[i], normals[i]); @@ -817,7 +819,7 @@ protected void Split(IList points, bool closed = false) var b = closed && i == this.Vertices.Count - 1 ? this.Vertices[0] : this.Vertices[i + 1]; var edge = (a, b); - // An edge may have multiple split points. + // An edge may have multiple split points. // We store these in a list and sort it along the // direction of the edge, before inserting the points // into the vertex list and incrementing i by the correct diff --git a/Elements/src/Geometry/Profile.cs b/Elements/src/Geometry/Profile.cs index db9e9a328..05bec3880 100644 --- a/Elements/src/Geometry/Profile.cs +++ b/Elements/src/Geometry/Profile.cs @@ -3,7 +3,8 @@ using System.Collections.Generic; using System.Linq; using ClipperLib; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using Elements.Serialization.JSON; namespace Elements.Geometry { @@ -13,11 +14,11 @@ namespace Elements.Geometry public class Profile : Element, IEquatable { /// The perimeter of the profile. - [JsonProperty("Perimeter", Required = Required.AllowNull)] + [JsonPropertyName("Perimeter")] public Polygon Perimeter { get; set; } /// A collection of Polygons representing voids in the profile. - [JsonProperty("Voids", Required = Required.AllowNull)] + [JsonPropertyName("Voids")] public IList Voids { get; set; } /// @@ -26,7 +27,7 @@ public class Profile : Element, IEquatable /// first double is the inner thickness, and the second double is the outer thickness. /// This is not guaranteed to have a value, and the thickness values may be 0. /// - [JsonProperty("EdgeThickness", Required = Required.Default)] + [JsonPropertyName("EdgeThickness")] private List _edgeThickness { get; set; } /// @@ -257,7 +258,7 @@ public Profile Union(Profile profile, double tolerance = Vector3.EPSILON) /// Set a uniform edge thickness for this profile. /// /// The inner thickness. - /// The outer thickness. + /// The outer thickness. public void SetEdgeThickness(double innerWidth, double outerWidth = 0) { var newThickness = new List(); diff --git a/Elements/src/Geometry/Profiles/CProfile.cs b/Elements/src/Geometry/Profiles/CProfile.cs index 6437fe20e..ff623a3fa 100644 --- a/Elements/src/Geometry/Profiles/CProfile.cs +++ b/Elements/src/Geometry/Profiles/CProfile.cs @@ -1,7 +1,7 @@ #pragma warning disable CS1591 using System; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/HSSPipeProfile.cs b/Elements/src/Geometry/Profiles/HSSPipeProfile.cs index 7626208ec..73cfbe522 100644 --- a/Elements/src/Geometry/Profiles/HSSPipeProfile.cs +++ b/Elements/src/Geometry/Profiles/HSSPipeProfile.cs @@ -1,6 +1,6 @@ #pragma warning disable CS1591 using System; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/HSSProfile.cs b/Elements/src/Geometry/Profiles/HSSProfile.cs index a7d30b9b2..000e559e3 100644 --- a/Elements/src/Geometry/Profiles/HSSProfile.cs +++ b/Elements/src/Geometry/Profiles/HSSProfile.cs @@ -1,7 +1,7 @@ #pragma warning disable CS1591 using System; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { @@ -12,6 +12,9 @@ public class HSSProfile : ParametricProfile public double Ht; public double h; public double B; + + // Ignore to avoid serialization clash with 'B' + [JsonIgnore] public double b; public double tnom; public double tdes; diff --git a/Elements/src/Geometry/Profiles/LProfile.cs b/Elements/src/Geometry/Profiles/LProfile.cs index fd70f55c1..39a80230c 100644 --- a/Elements/src/Geometry/Profiles/LProfile.cs +++ b/Elements/src/Geometry/Profiles/LProfile.cs @@ -2,7 +2,7 @@ using System; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/MCProfile.cs b/Elements/src/Geometry/Profiles/MCProfile.cs index b2eeeb0f2..586b35414 100644 --- a/Elements/src/Geometry/Profiles/MCProfile.cs +++ b/Elements/src/Geometry/Profiles/MCProfile.cs @@ -1,7 +1,7 @@ #pragma warning disable CS1591 using System; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/ParametricProfile.cs b/Elements/src/Geometry/Profiles/ParametricProfile.cs index d452a7bc9..fc4c097cc 100644 --- a/Elements/src/Geometry/Profiles/ParametricProfile.cs +++ b/Elements/src/Geometry/Profiles/ParametricProfile.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Scripting; using Microsoft.CodeAnalysis.Scripting; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/RHSProfile.cs b/Elements/src/Geometry/Profiles/RHSProfile.cs index 60e2362ba..22c351949 100644 --- a/Elements/src/Geometry/Profiles/RHSProfile.cs +++ b/Elements/src/Geometry/Profiles/RHSProfile.cs @@ -1,6 +1,6 @@ #pragma warning disable CS1591 using System; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/SHSProfile.cs b/Elements/src/Geometry/Profiles/SHSProfile.cs index 06de6a280..3c7811928 100644 --- a/Elements/src/Geometry/Profiles/SHSProfile.cs +++ b/Elements/src/Geometry/Profiles/SHSProfile.cs @@ -1,5 +1,5 @@ using System; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/STProfile.cs b/Elements/src/Geometry/Profiles/STProfile.cs index 9df7826c8..2acc8e8a6 100644 --- a/Elements/src/Geometry/Profiles/STProfile.cs +++ b/Elements/src/Geometry/Profiles/STProfile.cs @@ -1,7 +1,7 @@ #pragma warning disable CS1591 using System; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/VectorExpression.cs b/Elements/src/Geometry/Profiles/VectorExpression.cs index 951ff3a4e..bedee3170 100644 --- a/Elements/src/Geometry/Profiles/VectorExpression.cs +++ b/Elements/src/Geometry/Profiles/VectorExpression.cs @@ -1,4 +1,4 @@ -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/WProfile.cs b/Elements/src/Geometry/Profiles/WProfile.cs index ab0bc755c..f6dd4d470 100644 --- a/Elements/src/Geometry/Profiles/WProfile.cs +++ b/Elements/src/Geometry/Profiles/WProfile.cs @@ -1,7 +1,7 @@ #pragma warning disable CS1591 using System; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/WTProfile.cs b/Elements/src/Geometry/Profiles/WTProfile.cs index f7e70bca2..d6b68e6af 100644 --- a/Elements/src/Geometry/Profiles/WTProfile.cs +++ b/Elements/src/Geometry/Profiles/WTProfile.cs @@ -1,7 +1,7 @@ #pragma warning disable CS1591 using System; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { diff --git a/Elements/src/Geometry/Profiles/WideFlangeProfile.cs b/Elements/src/Geometry/Profiles/WideFlangeProfile.cs index 08c125ce3..54f52ef23 100644 --- a/Elements/src/Geometry/Profiles/WideFlangeProfile.cs +++ b/Elements/src/Geometry/Profiles/WideFlangeProfile.cs @@ -2,7 +2,8 @@ using System; using System.Collections.Generic; -using Newtonsoft.Json; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; namespace Elements.Geometry.Profiles { @@ -50,15 +51,15 @@ public enum HorizontalAlignment public class WideFlangeProfile : Profile { [JsonIgnore] - public double A { get; internal set; } + public double A { get; set; } - public double d { get; internal set; } + public double d { get; set; } - public double tw { get; internal set; } + public double tw { get; set; } - public double bf { get; internal set; } + public double bf { get; set; } - public double tf { get; internal set; } + public double tf { get; set; } [JsonIgnore] public string T { get; internal set; } @@ -129,28 +130,20 @@ public class WideFlangeProfile : Profile /// /// /// - /// - /// - /// - /// [JsonConstructor] public WideFlangeProfile(string name, Guid id, double bf = 0.1, double d = 0.05, double tf = 0.005, - double tw = 0.005, - VerticalAlignment verticalAlignment = VerticalAlignment.Center, - HorizontalAlignment horizontalAlignment = HorizontalAlignment.Center, - double verticalOffset = 0.0, - double horizontalOffset = 0.0) : base(CreateProfile(bf, + double tw = 0.005) : base(CreateProfile(bf, d, tf, tw, - verticalAlignment, - horizontalAlignment, - verticalOffset, - horizontalOffset), new List(), id, name) + VerticalAlignment.Center, + HorizontalAlignment.Center, + 0, + 0), new List(), id, name) { this.bf = bf; this.d = d; diff --git a/Elements/src/Geometry/Representation.cs b/Elements/src/Geometry/Representation.cs index b6e8a4906..c9b341956 100644 --- a/Elements/src/Geometry/Representation.cs +++ b/Elements/src/Geometry/Representation.cs @@ -1,6 +1,6 @@ using System.Collections.Generic; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -8,7 +8,6 @@ namespace Elements.Geometry public class Representation { /// A collection of solid operations. - [JsonProperty("SolidOperations", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] public IList SolidOperations { get; set; } = new List(); @@ -45,7 +44,7 @@ public static implicit operator Representation(SolidOperation solidOperation) /// A flag to disable CSG operations on this representation. Instead, /// all solids will be meshed, and all voids will be ignored. /// - [Newtonsoft.Json.JsonIgnore] + [JsonIgnore] [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public bool SkipCSGUnion { get; set; } = false; } diff --git a/Elements/src/Geometry/Solids/ConstructedSolid.cs b/Elements/src/Geometry/Solids/ConstructedSolid.cs index 46a412e71..769075869 100644 --- a/Elements/src/Geometry/Solids/ConstructedSolid.cs +++ b/Elements/src/Geometry/Solids/ConstructedSolid.cs @@ -1,5 +1,5 @@ +using System.Text.Json.Serialization; using Elements.Serialization.JSON; -using Newtonsoft.Json; namespace Elements.Geometry.Solids { @@ -8,6 +8,25 @@ namespace Elements.Geometry.Solids /// public class ConstructedSolid : SolidOperation { + /// + /// Create an import solid. + /// + [JsonConstructor] + public ConstructedSolid() : base(false) + { + } + + /// + /// The constructed solid. + /// + // This is hack to enable serialization of the normally + // hidden solid property. + public new Solid Solid + { + get { return _solid; } + set { _solid = value; } + } + /// /// Create an import solid. /// @@ -15,13 +34,7 @@ public class ConstructedSolid : SolidOperation /// Is the operation a void? public ConstructedSolid(Solid solid, bool isVoid = false) : base(isVoid) { - this._solid = solid; + _solid = solid; } - - // This is a hack to get the normally JsonIgnored - // `Solid` property to serialize. - [JsonProperty("Solid")] - [JsonConverter(typeof(SolidConverter))] - internal Solid InternalSolid => base.Solid; } } \ No newline at end of file diff --git a/Elements/src/Geometry/Solids/Extrude.cs b/Elements/src/Geometry/Solids/Extrude.cs index 4af71ef56..b1b26201f 100644 --- a/Elements/src/Geometry/Solids/Extrude.cs +++ b/Elements/src/Geometry/Solids/Extrude.cs @@ -1,7 +1,8 @@ using System; using System.Collections.Generic; +using Elements.Serialization.JSON; using Elements.Validators; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Solids { @@ -16,7 +17,7 @@ public class Extrude : SolidOperation, System.ComponentModel.INotifyPropertyChan private bool _reverseWinding; /// The id of the profile to extrude. - [JsonProperty("Profile", Required = Required.AllowNull)] + [JsonConverter(typeof(ElementConverter))] public Profile Profile { get { return _profile; } @@ -31,7 +32,6 @@ public Profile Profile } /// The height of the extrusion. - [JsonProperty("Height", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Range(0D, double.MaxValue)] public double Height { @@ -47,7 +47,6 @@ public double Height } /// The direction in which to extrude. - [JsonProperty("Direction", Required = Required.AllowNull)] public Vector3 Direction { get { return _direction; } @@ -62,7 +61,7 @@ public Vector3 Direction } /// Is the extrusion's profile reversed relative to its extrusion vector, resulting in inward-facing face normals? - [JsonProperty("Reverse Winding")] + [JsonPropertyName("Reverse Winding")] public bool ReverseWinding { get { return _reverseWinding; } @@ -76,6 +75,15 @@ public bool ReverseWinding } } + [JsonConstructor] + /// + /// Construct an extrusion. This method is mainly for the System.Text.Json Serializer + /// + public Extrude(bool isVoid = false) + : base(isVoid) + { + } + /// /// Construct an extrusion. /// @@ -88,7 +96,6 @@ public bool ReverseWinding /// out, with face normals facing in instead of out. Use with caution if /// using with other solid operations in a representation — boolean /// results may be unexpected. - [JsonConstructor] public Extrude(Profile profile, double height, Vector3 direction, bool isVoid = false, bool reverseWinding = false) : base(isVoid) { diff --git a/Elements/src/Geometry/Solids/Lamina.cs b/Elements/src/Geometry/Solids/Lamina.cs index e9e8331b4..cfcd64cb5 100644 --- a/Elements/src/Geometry/Solids/Lamina.cs +++ b/Elements/src/Geometry/Solids/Lamina.cs @@ -1,5 +1,5 @@ using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry.Solids { @@ -12,7 +12,6 @@ public class Lamina : SolidOperation private IList _voids; /// The perimeter. - [JsonProperty("Perimeter", Required = Required.AllowNull)] public Polygon Perimeter { get { return _perimeter; } @@ -29,7 +28,6 @@ public Polygon Perimeter /// /// A collection of voids. /// - [JsonProperty("Voids", Required = Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList Voids { get { return _voids; } @@ -43,13 +41,22 @@ public IList Voids } } + + [JsonConstructor] + /// + /// Construct a lamina. This method is mainly for the System.Text.Json Serializer + /// + public Lamina(bool isVoid) + : base(isVoid) + { + } + /// /// Construct a lamina. /// /// /// /// - [JsonConstructor] public Lamina(Polygon @perimeter, IList @voids, bool @isVoid) : base(isVoid) { diff --git a/Elements/src/Geometry/Solids/Solid.cs b/Elements/src/Geometry/Solids/Solid.cs index a8dfad0d6..d59fd1233 100644 --- a/Elements/src/Geometry/Solids/Solid.cs +++ b/Elements/src/Geometry/Solids/Solid.cs @@ -10,6 +10,8 @@ using Elements.Search; using Elements.Spatial; using LibTessDotNet.Double; +using System.Text.Json.Serialization; +using Elements.Serialization.JSON; [assembly: InternalsVisibleTo("Hypar.Elements.Tests")] @@ -18,6 +20,7 @@ namespace Elements.Geometry.Solids /// /// A boundary representation of a solid. /// + [JsonConverter(typeof(SolidConverter))] public partial class Solid : ITessellate { private uint _faceId; @@ -471,7 +474,7 @@ public bool Intersects(Plane p, out List result) var d = facePlane.Normal.Cross(p.Normal).Unitized(); edgeResults.Sort(new DirectionComparer(d)); - // Draw segments through the results and add to the + // Draw segments through the results and add to the // half edge graph. for (var j = 0; j < edgeResults.Count - 1; j += 2) { @@ -517,7 +520,7 @@ public bool Intersects(Plane p, out List result) { // TODO: We could test for known failure modes, but the // iteration over the edge graph before attempting to - // graph to identify these modes, is as expensive as + // graph to identify these modes, is as expensive as // the graph attempt. // Known cases there the half edge graph will throw an // exception: @@ -658,10 +661,10 @@ protected Loop LoopFromPolygon(Polygon p, } // TODO: This method should not be required if we have adequate lookup - // operations based on vertex locations and incident edges. This is + // operations based on vertex locations and incident edges. This is // currently used in the case where we want to add a face from a polygon // but in most cases where we want to do that we already know something - // about the shape of the existing solid and should be able to lookup + // about the shape of the existing solid and should be able to lookup // existing vertices without doing an O(n) search. Implement a better // search strategy! private void FindOrCreateVertex(Vector3 pt, int i, Transform transform, bool mergeVerticesAndEdges, Vertex[] verts) diff --git a/Elements/src/Geometry/Solids/SolidOperation.cs b/Elements/src/Geometry/Solids/SolidOperation.cs index 3a88192d6..86e97bb1e 100644 --- a/Elements/src/Geometry/Solids/SolidOperation.cs +++ b/Elements/src/Geometry/Solids/SolidOperation.cs @@ -1,12 +1,13 @@ using System.Collections.Generic; -using Newtonsoft.Json; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; namespace Elements.Geometry.Solids { /// /// The base class for all operations which create solids. /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] + [JsonConverter(typeof(ElementConverter))] public abstract class SolidOperation { internal Solid _solid; @@ -25,8 +26,9 @@ public Solid Solid get { return _solid; } } - /// Is the solid operation a void operation? - [JsonProperty("IsVoid", Required = Required.Always)] + /// + /// Is the solid operation a void operation? + /// public bool IsVoid { get; set; } = false; /// diff --git a/Elements/src/Geometry/Solids/Sweep.cs b/Elements/src/Geometry/Solids/Sweep.cs index 689144a47..c68f6d9a8 100644 --- a/Elements/src/Geometry/Solids/Sweep.cs +++ b/Elements/src/Geometry/Solids/Sweep.cs @@ -1,5 +1,7 @@ using System.Collections.Generic; -using Newtonsoft.Json; +using System; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; namespace Elements.Geometry.Solids { @@ -12,6 +14,15 @@ public partial class Sweep : SolidOperation, System.ComponentModel.INotifyProper private double _endSetback; private double _profileRotation; + [JsonConstructor] + /// + /// Construct a sweep. This method is mainly for the System.Text.Json Serializer + /// + public Sweep(bool isVoid) + : base(isVoid) + { + } + /// /// Construct a sweep. /// @@ -21,7 +32,7 @@ public partial class Sweep : SolidOperation, System.ComponentModel.INotifyProper /// /// /// - [JsonConstructor] + public Sweep(Profile @profile, BoundedCurve @curve, double @startSetback, double @endSetback, double @profileRotation, bool @isVoid) : base(isVoid) { @@ -36,7 +47,7 @@ public Sweep(Profile @profile, BoundedCurve @curve, double @startSetback, double } /// The id of the profile to be swept along the curve. - [JsonProperty("Profile", Required = Required.AllowNull)] + [JsonConverter(typeof(ElementConverter))] public Profile Profile { get { return _profile; } @@ -51,7 +62,9 @@ public Profile Profile } /// The curve along which the profile will be swept. - [JsonProperty("Curve", Required = Required.AllowNull)] + [JsonPropertyName("Curve")] + [JsonInclude] + [JsonConverter(typeof(ElementConverter))] public BoundedCurve Curve { get { return _curve; } @@ -66,7 +79,6 @@ public BoundedCurve Curve } /// The amount to set back the resulting solid from the start of the curve. - [JsonProperty("StartSetback", Required = Required.Always)] public double StartSetback { get { return _startSetback; } @@ -81,7 +93,6 @@ public double StartSetback } /// The amount to set back the resulting solid from the end of the curve. - [JsonProperty("EndSetback", Required = Required.Always)] public double EndSetback { get { return _endSetback; } @@ -96,7 +107,6 @@ public double EndSetback } /// The rotation of the profile around the sweep's curve. - [JsonProperty("ProfileRotation", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double ProfileRotation { get { return _profileRotation; } diff --git a/Elements/src/Geometry/Tessellation/Tessellation.cs b/Elements/src/Geometry/Tessellation/Tessellation.cs index ff66c8086..c526b1edb 100644 --- a/Elements/src/Geometry/Tessellation/Tessellation.cs +++ b/Elements/src/Geometry/Tessellation/Tessellation.cs @@ -35,6 +35,8 @@ internal static T Tessellate(IEnumerable provide tesses.Add(target.GetTess()); } } + // Console.WriteLine($"tess: {sw.ElapsedMilliseconds}ms for tessellation."); + // sw.Restart(); // Pre-allocate a buffer big enough to hold all the tessellations var buffer = (IGraphicsBuffers)Activator.CreateInstance(typeof(T)); diff --git a/Elements/src/Geometry/ThickenedPolyline.cs b/Elements/src/Geometry/ThickenedPolyline.cs index 0c6177bf5..9103db6f3 100644 --- a/Elements/src/Geometry/ThickenedPolyline.cs +++ b/Elements/src/Geometry/ThickenedPolyline.cs @@ -1,8 +1,8 @@ using System; using System.Linq; -using Newtonsoft.Json; using System.Collections.Generic; using Elements.Search; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -46,15 +46,15 @@ public ThickenedPolyline(Line line, double leftWidth, double rightWidth) : this( } /// The base polyline to thicken. - [JsonProperty("polyline", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)] + [JsonPropertyName("polyline")] public Polyline Polyline { get; set; } /// The amount to thicken the polyline on its "left" side, imagining that the polyline is extending away from you. That is, if the polyline starts at (0,0,0) and follows the +Z axis, the left side extends into the -X quadrant. - [JsonProperty("leftWidth", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)] + [JsonPropertyName("leftWidth")] public double LeftWidth { get; set; } /// The amount to thicken the polyline on its "right" side, imagining that the polyline is extending away from you. That is, if the polyline starts at (0,0,0) and follows the +Z axis, the right side extends into the +X quadrant. - [JsonProperty("rightWidth", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)] + [JsonPropertyName("rightWidth")] public double RightWidth { get; set; } private struct EdgeInfo @@ -162,7 +162,7 @@ private static void PopulateOffsetVertexMap(ThickenedPolylineGraph graph, Vector // for each edge, compute all the info we'll need for it: its left // thickness / right thickness, its plane angle to the x axis, and // whether it is pointing towards or away from this point. Sort the - // results by the plane angle. + // results by the plane angle. var edgesSorted = edges.Select((edge) => { var otherPoint = edge.OtherPoint; diff --git a/Elements/src/Geometry/Transform.cs b/Elements/src/Geometry/Transform.cs index efb23ddcd..ba48aa97a 100644 --- a/Elements/src/Geometry/Transform.cs +++ b/Elements/src/Geometry/Transform.cs @@ -1,4 +1,4 @@ -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; @@ -37,7 +37,6 @@ public partial class Transform : IEquatable public Vector3 ZAxis => this.Matrix.ZAxis; /// The transform's matrix. - [JsonProperty("Matrix", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] public Matrix Matrix { get; set; } = new Matrix(); diff --git a/Elements/src/Geometry/Triangle.cs b/Elements/src/Geometry/Triangle.cs index 32f5c7a6f..84884bcb6 100644 --- a/Elements/src/Geometry/Triangle.cs +++ b/Elements/src/Geometry/Triangle.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Diagnostics; using LibTessDotNet.Double; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -12,12 +12,10 @@ namespace Elements.Geometry public class Triangle { /// The triangle's vertices. - [JsonProperty("Vertices", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] public IList Vertices { get; set; } = new List(); /// The triangle's normal. - [JsonProperty("Normal", Required = Required.AllowNull)] public Vector3 Normal { get; set; } /// diff --git a/Elements/src/Geometry/TrimmedCurve.cs b/Elements/src/Geometry/TrimmedCurve.cs index c83f6a5c8..f28402889 100644 --- a/Elements/src/Geometry/TrimmedCurve.cs +++ b/Elements/src/Geometry/TrimmedCurve.cs @@ -1,15 +1,15 @@ using Elements.Geometry.Interfaces; -using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; namespace Elements.Geometry { /// /// A trimmed curve. /// - public abstract class TrimmedCurve : BoundedCurve, ITrimmedCurve where TBasis: ICurve + public abstract class TrimmedCurve : BoundedCurve, ITrimmedCurve where TBasis : ICurve { /// /// The basis curve for this bounded curve. diff --git a/Elements/src/Geometry/UV.cs b/Elements/src/Geometry/UV.cs index cff2dae21..d952e6df7 100644 --- a/Elements/src/Geometry/UV.cs +++ b/Elements/src/Geometry/UV.cs @@ -1,4 +1,4 @@ -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -8,11 +8,9 @@ namespace Elements.Geometry public struct UV { /// The U coordinate. - [JsonProperty("U", Required = Required.Always)] public double U { get; set; } /// The V coordinate. - [JsonProperty("V", Required = Required.Always)] public double V { get; set; } /// diff --git a/Elements/src/Geometry/Vector3.cs b/Elements/src/Geometry/Vector3.cs index 051c2faf9..313e01856 100644 --- a/Elements/src/Geometry/Vector3.cs +++ b/Elements/src/Geometry/Vector3.cs @@ -1,5 +1,5 @@ using Elements.Validators; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; @@ -56,15 +56,12 @@ public Vector3(double @x, double @y, double @z) } /// The X component of the vector. - [JsonProperty("X", Required = Required.Always)] public double X { get; set; } /// The Y component of the vector. - [JsonProperty("Y", Required = Required.Always)] public double Y { get; set; } /// The Z component of the vector. - [JsonProperty("Z", Required = Required.Always)] public double Z { get; set; } /// diff --git a/Elements/src/Geometry/Vertex.cs b/Elements/src/Geometry/Vertex.cs index 8fd2b0752..917cac655 100644 --- a/Elements/src/Geometry/Vertex.cs +++ b/Elements/src/Geometry/Vertex.cs @@ -1,5 +1,5 @@ using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Geometry { @@ -9,24 +9,19 @@ namespace Elements.Geometry public class Vertex { /// The vertex's position. - [JsonProperty("Position", Required = Required.AllowNull)] public Vector3 Position { get; set; } /// The vertex's normal. - [JsonProperty("Normal", Required = Required.AllowNull)] public Vector3 Normal { get; set; } /// The vertex's color. - [JsonProperty("Color", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] public Color Color { get; set; } = new Color(); /// The index of the vertex within a mesh. - [JsonProperty("Index", Required = Required.Always)] public int Index { get; set; } /// The vertex's texture coordinate. - [JsonProperty("UV", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] public UV UV { get; set; } = new UV(); @@ -59,7 +54,6 @@ public Vertex(Vector3 @position, Vector3 @normal, Color @color, int @index, UV @ // during serialization. /// The triangles associated with this vertex. - [JsonProperty("Triangles", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] [JsonIgnore] public IList Triangles { get; set; } = new List(); diff --git a/Elements/src/GeometryReference.cs b/Elements/src/GeometryReference.cs index 79010ce2d..111c9d9cd 100644 --- a/Elements/src/GeometryReference.cs +++ b/Elements/src/GeometryReference.cs @@ -1,18 +1,15 @@ using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { /// A reference to a model, hosted at a URL. - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public partial class GeometryReference { /// The URL where the referenced geometry is hosted. - [JsonProperty("GeometryUrl", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public string GeometryUrl { get; set; } /// Any geometric data directly contained in this reference. - [JsonProperty("InternalGeometry", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public IList InternalGeometry { get; set; } /// diff --git a/Elements/src/GridLine.cs b/Elements/src/GridLine.cs index 392df64f2..598f5200d 100644 --- a/Elements/src/GridLine.cs +++ b/Elements/src/GridLine.cs @@ -1,6 +1,9 @@ using System; using System.Collections.Generic; +using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry; +using Elements.Serialization.JSON; namespace Elements { @@ -35,6 +38,7 @@ public Polyline Geometry /// /// Curve that runs from the start of the gridline to its end. /// + [JsonConverter(typeof(ElementConverter))] public BoundedCurve Curve { get; set; } /// @@ -77,7 +81,7 @@ public override Boolean TryToGraphicsBuffers(out List graphicsB var circleVertexTransform = GetCircleTransform(); var circle = new Arc(circleVertexTransform, Radius); - + renderVertices.AddRange(circle.RenderVertices()); if (ExtensionBeginning > 0) diff --git a/Elements/src/ImportMeshElement.cs b/Elements/src/ImportMeshElement.cs index 67ef1c3a6..138f901f5 100644 --- a/Elements/src/ImportMeshElement.cs +++ b/Elements/src/ImportMeshElement.cs @@ -18,6 +18,11 @@ public sealed class ImportMeshElement : MeshElement /// public string Path { get; } + /// + /// The length unit used in the provided mesh. + /// + public LengthUnit LengthUnit { get; set; } + /// /// Construct an import mesh element. /// @@ -39,6 +44,7 @@ public ImportMeshElement(string path, name) { this.Path = path; + this.LengthUnit = lengthUnit; if (!File.Exists(path)) { diff --git a/Elements/src/Joist.cs b/Elements/src/Joist.cs index e7c004b1a..d65c9c101 100644 --- a/Elements/src/Joist.cs +++ b/Elements/src/Joist.cs @@ -6,7 +6,8 @@ using Elements.Geometry.Profiles; using Elements.Geometry.Solids; using Elements.Spatial; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using Elements.Serialization.JSON; namespace Elements { @@ -26,16 +27,19 @@ public class Joist : StructuralFraming /// /// Profile of the top chord of the joist. /// + [JsonConverter(typeof(ElementConverter))] public LProfile TopChordProfile { get; set; } /// /// Profile of the bottom chord of the joist. /// + [JsonConverter(typeof(ElementConverter))] public LProfile BottomChordProfile { get; set; } /// /// Profile of the web of the joist. /// + [JsonConverter(typeof(ElementConverter))] public LProfile WebProfile { get; set; } /// @@ -58,6 +62,12 @@ public class Joist : StructuralFraming /// public List JoistPoints { get; set; } = new List(); + [JsonConstructor] + public Joist() : base() + { + // Empty construction for JSON serialization. + } + /// /// Construct a new BarJoist. /// @@ -72,7 +82,6 @@ public class Joist : StructuralFraming /// The cell count of the joist. /// The seat depth of the joist. /// The distance to the first panel of the joist (Y). - [JsonConstructor] public Joist(Line curve, LProfile topChordProfile, LProfile bottomChordProfile, @@ -135,6 +144,8 @@ private Representation ConstructRepresentation() JoistPoints.Clear(); + // TODO: This creates too many profiles. We should reference the + // existing profiles but create local transforms for the profiles. var ll = Construct2LProfile(TopChordProfile, true); var topSweepR = new Sweep(ll[0], diff --git a/Elements/src/Mass.cs b/Elements/src/Mass.cs index 7304ceb08..042b94ee9 100644 --- a/Elements/src/Mass.cs +++ b/Elements/src/Mass.cs @@ -1,8 +1,9 @@ using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; +using Elements.Serialization.JSON; namespace Elements { @@ -17,6 +18,7 @@ public class Mass : GeometricElement /// /// The profile of the mass. /// + [JsonConverter(typeof(ElementConverter))] public Profile Profile { get; set; } /// diff --git a/Elements/src/Material.cs b/Elements/src/Material.cs index ec8d445e9..96ddf58a4 100644 --- a/Elements/src/Material.cs +++ b/Elements/src/Material.cs @@ -3,7 +3,7 @@ using System.IO; using Elements.Geometry; using Elements.Validators; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { @@ -16,58 +16,46 @@ namespace Elements public class Material : Element { /// The material's color. - [JsonProperty("Color", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] public Color Color { get; set; } = new Color(); /// The specular factor between 0.0 and 1.0. - [JsonProperty("SpecularFactor", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Range(0.0D, 1.0D)] public double SpecularFactor { get; set; } = 0.1D; /// The glossiness factor between 0.0 and 1.0. - [JsonProperty("GlossinessFactor", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Range(0.0D, 1.0D)] public double GlossinessFactor { get; set; } = 0.1D; /// Is this material affected by lights? - [JsonProperty("Unlit", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)] public bool Unlit { get; set; } = false; /// A relative file path to an image file to be used as a texture. - [JsonProperty("Texture", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)] public string Texture { get; set; } /// Is this material to be rendered from both sides? - [JsonProperty("DoubleSided", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)] public bool DoubleSided { get; set; } = false; /// Should the texture be repeated? The RepeatTexture property determines whether textures are clamped in the [0,0]->[1,1] range or repeat continuously. - [JsonProperty("RepeatTexture", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)] public bool RepeatTexture { get; set; } = true; /// A relative path to a jpg or png image file to be used as a normal texture. - [JsonProperty("NormalTexture", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)] public string NormalTexture { get; set; } /// Should the texture colors be interpolated between pixels? If false, renders hard pixels in the texture rather than fading between adjacent pixels. - [JsonProperty("InterpolateTexture", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)] public bool InterpolateTexture { get; set; } = true; /// A relative path to a jpg or png image file to be used as an emissive texture. - [JsonProperty("EmissiveTexture", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)] public string EmissiveTexture { get; set; } /// /// The scale, between 0.0 and 1.0, of the emissive texture's components. /// - [JsonProperty("EmissiveFactor", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)] public double EmissiveFactor { get; set; } /// /// Should objects with this material be drawn in front of all other objects? /// - [JsonProperty("Draw In Front", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)] public bool DrawInFront { get; set; } = false; /// diff --git a/Elements/src/Math/Domain1d.cs b/Elements/src/Math/Domain1d.cs index 75e4a192b..79bea7990 100644 --- a/Elements/src/Math/Domain1d.cs +++ b/Elements/src/Math/Domain1d.cs @@ -1,5 +1,5 @@ using System; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { @@ -61,6 +61,7 @@ internal bool Includes(double value, bool includeEnds = false) /// /// The lower bound of the domain. /// The upper bound of the domain. + [JsonConstructor] public Domain1d(double min = 0.0, double max = 1.0) { Min = min; diff --git a/Elements/src/MeshElement.cs b/Elements/src/MeshElement.cs index a9760d93b..cb1961bb7 100644 --- a/Elements/src/MeshElement.cs +++ b/Elements/src/MeshElement.cs @@ -1,7 +1,8 @@ using System; using Elements.Geometry; using Elements.Geometry.Interfaces; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using Elements.Serialization.JSON; namespace Elements { @@ -21,6 +22,7 @@ public class MeshElement : GeometricElement, ITessellate /// /// The element's mesh. /// + [JsonConverter(typeof(MeshConverter))] public Mesh Mesh { get { return this._mesh; } diff --git a/Elements/src/Model.cs b/Elements/src/Model.cs index e8ef42228..26535a669 100644 --- a/Elements/src/Model.cs +++ b/Elements/src/Model.cs @@ -6,13 +6,17 @@ using System.Linq; using System.Reflection; using System.Collections; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Elements.Serialization.JSON; using Elements.Geometry; using Elements.Geometry.Solids; using Elements.GeoJSON; using System.IO; using System.Text; +using System.Text.Json; +using System.Diagnostics; +using Elements.Search; +using Elements.Spatial; namespace Elements { @@ -22,18 +26,15 @@ namespace Elements public class Model { /// The origin of the model. - [JsonProperty("Origin", Required = Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] [Obsolete("Use Transform instead.")] public Position Origin { get; set; } /// The transform of the model. - [JsonProperty("Transform", Required = Required.AllowNull)] public Transform Transform { get; set; } /// A collection of Elements keyed by their identifiers. - [JsonProperty("Elements", Required = Required.Always)] [System.ComponentModel.DataAnnotations.Required] - public System.Collections.Generic.IDictionary Elements { get; set; } = new System.Collections.Generic.Dictionary(); + public IDictionary Elements { get; set; } = new System.Collections.Generic.Dictionary(); /// /// Collection of subelements from shared objects or RepresentationInstances (e.g. SolidRepresentation.Profile or RepresentationInstance.Material). @@ -234,36 +235,38 @@ public IEnumerable AllElementsAssignableFromType() where T : Element return Elements.Values.Where(e => typeof(T).IsAssignableFrom(e.GetType())).Cast(); } - /// - /// Serialize the model to JSON. - /// - /// Should the JSON be indented? - /// Should sub-elements of elements be processed? - /// Indicates whether UpdateRepresentation should be called for all elements. - public string ToJson(bool indent = false, bool gatherSubElements = true, bool updateElementsRepresentations = true) - { - var exportModel = CreateExportModel(gatherSubElements, updateElementsRepresentations); - - return JsonConvert.SerializeObject(exportModel, indent ? Formatting.Indented : Formatting.None); - } - - /// - /// Serialize the model to JSON and write to a stream. - /// - /// The stream into which the JSON will be written. - /// Should the JSON be indented? - /// Should sub-elements of elements be processed? - /// Indicates whether UpdateRepresentation should be called for all elements. - public void ToJson(MemoryStream stream, bool indent = false, bool gatherSubElements = true, bool updateElementsRepresentations = true) - { - var exportModel = CreateExportModel(gatherSubElements, updateElementsRepresentations); - - var json = JsonConvert.SerializeObject(exportModel, indent ? Formatting.Indented : Formatting.None); - using (var writer = new StreamWriter(stream)) - { - writer.Write(json); - } - } + // TODO: REMOVE CODE BEFORE SYSTEM.TEXT.JSON UPDATE + // /// + // /// Serialize the model to JSON. + // /// + // /// Should the JSON be indented? + // /// Should sub-elements of elements be processed? + // /// Indicates whether UpdateRepresentation should be called for all elements. + // public string ToJson(bool indent = false, bool gatherSubElements = true, bool updateElementsRepresentations = true) + // { + // var exportModel = CreateExportModel(gatherSubElements, updateElementsRepresentations); + + // return JsonConvert.SerializeObject(exportModel, indent ? Formatting.Indented : Formatting.None); + // } + + // TODO: REMOVE CODE BEFORE SYSTEM.TEXT.JSON UPDATE + // /// + // /// Serialize the model to JSON and write to a stream. + // /// + // /// The stream into which the JSON will be written. + // /// Should the JSON be indented? + // /// Should sub-elements of elements be processed? + // /// Indicates whether UpdateRepresentation should be called for all elements. + // public void ToJson(MemoryStream stream, bool indent = false, bool gatherSubElements = true, bool updateElementsRepresentations = true) + // { + // var exportModel = CreateExportModel(gatherSubElements, updateElementsRepresentations); + + // var json = JsonConvert.SerializeObject(exportModel, indent ? Formatting.Indented : Formatting.None); + // using (var writer = new StreamWriter(stream)) + // { + // writer.Write(json); + // } + // } /// /// Serialize the model to JSON using default arguments. @@ -285,6 +288,30 @@ public string ToJson(bool indent = false) return ToJson(indent, true); } + /// + /// Serialize the model to JSON. + /// + /// Should the JSON be indented? + /// Should sub-elements of elements be processed? + /// Indicates whether UpdateRepresentation should be called for all elements. + public string ToJson(bool indent = false, bool gatherSubElements = true, bool updateElementsRepresentations = true) + { + // TODO: Remove this excess model creation when the JSON serializer + // supports recursive write out and all receivers are capable of + // receiving updated JSON. + var exportModel = CreateExportModel(gatherSubElements, updateElementsRepresentations); + + var serializerOptions = new JsonSerializerOptions + { + WriteIndented = indent, + IncludeFields = true, // needed for tuple support + DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull + }; + serializerOptions.Converters.Add(new ElementConverterFactory()); + serializerOptions.Converters.Add(new SolidConverter()); + return JsonSerializer.Serialize(exportModel, serializerOptions); + } + /// /// Serialize the model to a JSON file. /// @@ -295,15 +322,16 @@ public void ToJson(string path, bool gatherSubElements = true, bool updateElemen { var exportModel = CreateExportModel(gatherSubElements, updateElementsRepresentations); - // Json.net recommends writing to a stream for anything over 85k to avoid a string on the large object heap. - // https://www.newtonsoft.com/json/help/html/Performance.htm using (FileStream s = File.Create(path)) - using (StreamWriter writer = new StreamWriter(s)) - using (JsonTextWriter jsonWriter = new JsonTextWriter(writer)) { - var serializer = new JsonSerializer(); - serializer.Serialize(jsonWriter, exportModel); - jsonWriter.Flush(); + var serializerOptions = new JsonSerializerOptions() + { + IncludeFields = true, // needed for tuple support + DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull + }; + serializerOptions.Converters.Add(new ElementConverterFactory()); + serializerOptions.Converters.Add(new SolidConverter()); + JsonSerializer.Serialize(s, exportModel, serializerOptions); } } @@ -416,41 +444,234 @@ internal Model CreateExportModel(bool gatherSubElements, bool updateElementsRepr return exportModel; } + public static Model GeometricElementModelFromJson(string json) + { + var resolver = new ElementReferenceResolver(null, default); + + var sw = new Stopwatch(); + sw.Start(); + + // Read materials, profiles, geometric elements + var elements = new Dictionary(); + + using (var doc = JsonDocument.Parse(json)) + { + var root = doc.RootElement; + var elementsElement = root.GetProperty("Elements"); + var transform = JsonSerializer.Deserialize(root.GetProperty("Transform")); + + Debug.WriteLine($"JSON: {sw.ElapsedMilliseconds}ms for parsing json"); + sw.Restart(); + + foreach (var element in elementsElement.EnumerateObject()) + { + Element e = null; + var discriminator = element.Value.GetProperty("discriminator").GetString(); + var id = element.Value.GetProperty("Id").GetGuid(); + element.Value.TryGetProperty("Name", out var nameProp); + string name; + { + name = nameProp.GetString(); + } + + switch (discriminator) + { + // TODO: Big assumption here - that things are in the right order. + case "Elements.Material": + var colorProp = element.Value.GetProperty("Color"); + var color = new Color( + colorProp.GetProperty("Red").GetDouble(), + colorProp.GetProperty("Green").GetDouble(), + colorProp.GetProperty("Blue").GetDouble(), + colorProp.GetProperty("Alpha").GetDouble() + ); + var spec = element.Value.GetProperty("SpecularFactor").GetDouble(); + var gloss = element.Value.GetProperty("GlossinessFactor").GetDouble(); + + // TODO: Handle all the other color properties + + e = new Material(name, color, spec, gloss, id: id); + break; + case "Elements.Geometry.Profile": + var perimeter = JsonSerializer.Deserialize(element.Value.GetProperty("Perimeter")); + var voids = JsonSerializer.Deserialize>(element.Value.GetProperty("Voids")); + e = new Profile(perimeter, voids, id, name); + break; + case "Elements.ElementInstance": + var baseDefinition = (GeometricElement)resolver.ResolveReference(element.Value.GetProperty("BaseDefinition").GetString()); + var elementTransform = JsonSerializer.Deserialize(element.Value.GetProperty("Transform")); + e = new ElementInstance(baseDefinition, elementTransform, name, id); + break; + case "Elements.ModelCurve": + continue; + case "Elements.GridLine": + continue; + default: + + if (element.Value.TryGetProperty("Perimeter", out _) && element.Value.TryGetProperty("Voids", out _)) + { + // TODO: We're handling profile-like things in this way. + perimeter = JsonSerializer.Deserialize(element.Value.GetProperty("Perimeter")); + voids = JsonSerializer.Deserialize>(element.Value.GetProperty("Voids")); + e = new Profile(perimeter, voids, id, name); + break; + } + + // Qualify element as a geometric element by seeing + // whether it has a representation. + if (element.Value.TryGetProperty("Representation", out var repProperty)) + { + var solidOps = new List(); + foreach (var solidOp in repProperty.GetProperty("SolidOperations").EnumerateArray()) + { + SolidOperation op = null; + var isVoid = false; + if (solidOp.TryGetProperty("IsVoid", out var isVoidElement)) + { + isVoid = isVoidElement.GetBoolean(); + } + + switch (solidOp.GetProperty("discriminator").GetString()) + { + case "Elements.Geometry.Solids.Extrude": + var profile = (Profile)resolver.ResolveReference(solidOp.GetProperty("Profile").GetString()); + var height = solidOp.GetProperty("Height").GetDouble(); + var direction = JsonSerializer.Deserialize(solidOp.GetProperty("Direction")); + op = new Extrude(profile, height, direction, isVoid); + break; + case "Elements.Geometry.Solids.Sweep": + profile = (Profile)resolver.ResolveReference(solidOp.GetProperty("Profile").GetString()); + var curve = DeserializeCurve(solidOp.GetProperty("Curve")); + var startSetback = solidOp.GetProperty("StartSetback").GetDouble(); + var endSetback = solidOp.GetProperty("EndSetback").GetDouble(); + var profileRotation = 0.0; + if (solidOp.TryGetProperty("ProfileRotation", out var rotation)) + { + profileRotation = rotation.GetDouble(); + } + op = new Sweep(profile, curve, startSetback, endSetback, profileRotation, isVoid); + break; + case "Elements.Geometry.Solids.Lamina": + perimeter = JsonSerializer.Deserialize(solidOp.GetProperty("Perimeter")); + op = new Lamina(perimeter, isVoid); + break; + } + solidOps.Add(op); + } + var rep = new Representation(solidOps); + elementTransform = JsonSerializer.Deserialize(element.Value.GetProperty("Transform")); + var material = (Material)resolver.ResolveReference(element.Value.GetProperty("Material").GetString()); + var elementId = element.Value.GetProperty("Id").GetGuid(); + var isElementDefinition = element.Value.GetProperty("IsElementDefinition").GetBoolean(); + e = new GeometricElement(elementTransform, material, rep, isElementDefinition, elementId, name); + + if (solidOps.Count == 1) + { + rep.SkipCSGUnion = true; + } + } + break; + } + if (e != null) + { + elements.Add(id, e); + resolver.AddReference(id.ToString(), e); + } + } + + Debug.WriteLine($"JSON: {sw.ElapsedMilliseconds}ms for deserializing all elements."); + sw.Restart(); + + var model = new Model(transform, elements); + return model; + } + } + + // TODO: REMOVE CODE BEFORE SYSTEM.TEXT.JSON UPDATE + // /// + // /// Deserialize a model from JSON. + // /// + // /// The JSON representing the model. + // /// A collection of deserialization errors. + // /// Option to force reloading the internal type cache. Use if you add types dynamically in your code. + // public static Model FromJson(string json, out List errors, bool forceTypeReload = false) + // { + // // When user elements have been loaded into the app domain, they haven't always been + // // loaded into the InheritanceConverter's Cache. This does have some overhead, + // // but is useful here, at the Model level, to ensure user types are available. + // var deserializationErrors = new List(); + // if (forceTypeReload) + // { + // JsonInheritanceConverter.RefreshAppDomainTypeCache(out var typeLoadErrors); + // deserializationErrors.AddRange(typeLoadErrors); + // } + + // var model = Newtonsoft.Json.JsonConvert.DeserializeObject(json, new JsonSerializerSettings() + // { + // Error = (sender, args) => + // { + // deserializationErrors.Add(args.ErrorContext.Error.Message); + // args.ErrorContext.Handled = true; + // } + // }); + // deserializationErrors.AddRange(JsonInheritanceConverter.GetAndClearDeserializationWarnings()); + // errors = deserializationErrors; + // JsonInheritanceConverter.Elements.Clear(); + // return model; + // } + + /// /// Deserialize a model from JSON. /// /// The JSON representing the model. - /// A collection of deserialization errors. - /// Option to force reloading the internal type cache. Use if you add types dynamically in your code. - public static Model FromJson(string json, out List errors, bool forceTypeReload = false) + public static Model FromJson(string json) { - // When user elements have been loaded into the app domain, they haven't always been - // loaded into the InheritanceConverter's Cache. This does have some overhead, - // but is useful here, at the Model level, to ensure user types are available. - var deserializationErrors = new List(); - if (forceTypeReload) + var typeCache = AppDomainTypeCache.BuildAppDomainTypeCache(out _); + + Model model = null; + using (var document = JsonDocument.Parse(json)) { - JsonInheritanceConverter.RefreshAppDomainTypeCache(out var typeLoadErrors); - deserializationErrors.AddRange(typeLoadErrors); + JsonElement root = document.RootElement; + JsonElement elementsElement = root.GetProperty("Elements"); + + var options = new JsonSerializerOptions() + { + PropertyNameCaseInsensitive = true, + AllowTrailingCommas = true, + IncludeFields = true // needed for tuples + }; + + options.Converters.Add(new SolidConverter()); + + // Our custom reference handler will cache elements by id as + // they are deserialized, supporting reading elements by id + // from JSON. + var refHandler = new ElementReferenceHandler(typeCache, elementsElement); + options.ReferenceHandler = refHandler; + + // Use the model converter here so that we have a chance to + // intercept the creation of elements when things go wrong. + // Using the model converter adds 100ms because it has to + // call deserialize for each element and trap if the element + // is null and report an error. + // options.Converters.Add(new ModelConverter()); + + model = JsonSerializer.Deserialize(json, options); + + // Resetting the reference handler, empties the internal + // elements cache. + refHandler.Reset(typeCache, elementsElement); } - var model = Newtonsoft.Json.JsonConvert.DeserializeObject(json, new JsonSerializerSettings() + // Remove null elements that are the result of the deserializer + // not being able to handle an element. + foreach (var nullElement in model.Elements.Where(e => e.Value == null).ToList()) { - Error = (sender, args) => - { - deserializationErrors.Add(args.ErrorContext.Error.Message); - args.ErrorContext.Handled = true; - } - }); - deserializationErrors.AddRange(JsonInheritanceConverter.GetAndClearDeserializationWarnings()); - errors = deserializationErrors; - JsonInheritanceConverter.Elements.Clear(); - return model; - } + model.Elements.Remove(nullElement); + } - public static Model FromJson(string json, bool forceTypeReload = false) - { - return FromJson(json, out _, forceTypeReload); + return model; } private List RecursiveGatherSubElements(object obj, out List elementsToIgnore) @@ -674,6 +895,24 @@ private static bool IsValidListType(Type t) || typeof(SharedObject).IsAssignableFrom(t) || typeof(RepresentationInstance).IsAssignableFrom(t); } + + private static BoundedCurve DeserializeCurve(JsonElement jsonCurve) + { + var discriminator = jsonCurve.GetProperty("discriminator").GetString(); + switch (discriminator) + { + case "Elements.Geometry.Line": + return JsonSerializer.Deserialize(jsonCurve); + case "Elements.Geometry.Polygon": + return JsonSerializer.Deserialize(jsonCurve); + case "Elements.Geometry.Polyline": + return JsonSerializer.Deserialize(jsonCurve); + case "Elements.Geometry.Arc": + return JsonSerializer.Deserialize(jsonCurve); + default: + throw new JsonException($"The curve type, {discriminator}, could not be deserialized."); + } + } } public static class ModelExtensions diff --git a/Elements/src/ModelArrows.cs b/Elements/src/ModelArrows.cs index 6c37370b2..7fdf8df58 100644 --- a/Elements/src/ModelArrows.cs +++ b/Elements/src/ModelArrows.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { diff --git a/Elements/src/ModelCurve.cs b/Elements/src/ModelCurve.cs index c93b0300f..843eeaaa5 100644 --- a/Elements/src/ModelCurve.cs +++ b/Elements/src/ModelCurve.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry; namespace Elements diff --git a/Elements/src/ModelLines.cs b/Elements/src/ModelLines.cs index 1e4f04f5d..e33ba5fc5 100644 --- a/Elements/src/ModelLines.cs +++ b/Elements/src/ModelLines.cs @@ -1,5 +1,5 @@ using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Text; diff --git a/Elements/src/ModelPoints.cs b/Elements/src/ModelPoints.cs index 1c84dc7b3..3ed43b334 100644 --- a/Elements/src/ModelPoints.cs +++ b/Elements/src/ModelPoints.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { diff --git a/Elements/src/ModelText.cs b/Elements/src/ModelText.cs index c27dcbadf..74422b3e7 100644 --- a/Elements/src/ModelText.cs +++ b/Elements/src/ModelText.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using System.IO; using System.Reflection; +using System.Text.Json.Serialization; using Elements.Geometry; using SixLabors.Fonts; using SixLabors.ImageSharp; @@ -71,6 +72,7 @@ public class ModelText : MeshElement /// /// The font size of the model text. /// + [JsonConverter(typeof(JsonStringEnumConverter))] public FontSize FontSize { get; set; } /// diff --git a/Elements/src/OpenCeiling.cs b/Elements/src/OpenCeiling.cs index d5cd70f40..b45662789 100644 --- a/Elements/src/OpenCeiling.cs +++ b/Elements/src/OpenCeiling.cs @@ -1,6 +1,6 @@ using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; namespace Elements diff --git a/Elements/src/Opening.cs b/Elements/src/Opening.cs index 80be2d6e6..a5c19bfc8 100644 --- a/Elements/src/Opening.cs +++ b/Elements/src/Opening.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { diff --git a/Elements/src/Panel.cs b/Elements/src/Panel.cs index 5502fd816..da2389fba 100644 --- a/Elements/src/Panel.cs +++ b/Elements/src/Panel.cs @@ -2,6 +2,7 @@ using Elements.Geometry.Solids; using System; using System.Collections.Generic; +using System.Text.Json.Serialization; namespace Elements { @@ -16,7 +17,7 @@ public class Panel : GeometricElement /// /// The perimeter of the panel. /// - public Polygon Perimeter { get; } + public Polygon Perimeter { get; internal set; } /// /// Create a panel. @@ -29,6 +30,7 @@ public class Panel : GeometricElement /// The id of the panel. /// The name of the panel. /// Thrown when the provided perimeter points are not coplanar. + [JsonConstructor] public Panel(Polygon perimeter, Material material = null, Transform transform = null, diff --git a/Elements/src/Representations/SolidRepresentation.cs b/Elements/src/Representations/SolidRepresentation.cs index f512c7155..0d6ec0ed2 100644 --- a/Elements/src/Representations/SolidRepresentation.cs +++ b/Elements/src/Representations/SolidRepresentation.cs @@ -1,13 +1,13 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Geometry.Tessellation; using Elements.Search; using Elements.Utilities; using glTFLoader.Schema; -using Newtonsoft.Json; namespace Elements { @@ -17,7 +17,8 @@ namespace Elements public class SolidRepresentation : ElementRepresentation { /// A collection of solid operations. - [JsonProperty("SolidOperations", Required = Required.Always)] + [JsonPropertyName("SolidOperations")] + [JsonInclude] [System.ComponentModel.DataAnnotations.Required] public IList SolidOperations { get; set; } = new List(); @@ -54,7 +55,7 @@ public static implicit operator SolidRepresentation(SolidOperation solidOperatio /// A flag to disable CSG operations on this representation. Instead, /// all solids will be meshed, and all voids will be ignored. /// - [Newtonsoft.Json.JsonIgnore] + [JsonIgnore] [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] public bool SkipCSGUnion { get; set; } = false; diff --git a/Elements/src/Serialization/JSON/AdditionalPropertiesConverter.cs b/Elements/src/Serialization/JSON/AdditionalPropertiesConverter.cs new file mode 100644 index 000000000..01c7d830b --- /dev/null +++ b/Elements/src/Serialization/JSON/AdditionalPropertiesConverter.cs @@ -0,0 +1,69 @@ +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Elements.Serialization.JSON +{ + /// + /// Convert the additional properties collection. + /// This converter is required because System.Text.Json will read + /// string values in the dictionary as JsonValue objects. + /// + public class AdditionalPropertiesConverter : JsonConverter> + { + /// + /// Read the dictionary. + /// + /// + /// + /// + /// + public override IDictionary Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + var result = new Dictionary(); + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + foreach (var p in root.EnumerateObject()) + { + switch (p.Value.ValueKind) + { + case JsonValueKind.Number: + if (p.Value.TryGetInt32(out var intValue)) + { + result.Add(p.Name, intValue); + } + else if (p.Value.TryGetDouble(out var doubleValue)) + { + result.Add(p.Name, doubleValue); + } + break; + case JsonValueKind.String: + if (p.Value.TryGetGuid(out var guidValue)) + { + result.Add(p.Name, guidValue); + } + else + { + result.Add(p.Name, p.Value.GetString()); + } + break; + } + } + return result; + } + } + + /// + /// Write the dictionary. + /// + /// + /// + /// + public override void Write(Utf8JsonWriter writer, IDictionary value, JsonSerializerOptions options) + { + JsonSerializer.Serialize(writer, value); + } + } +} \ No newline at end of file diff --git a/Elements/src/Serialization/JSON/AppDomainTypeCache.cs b/Elements/src/Serialization/JSON/AppDomainTypeCache.cs new file mode 100644 index 000000000..cce811c10 --- /dev/null +++ b/Elements/src/Serialization/JSON/AppDomainTypeCache.cs @@ -0,0 +1,89 @@ +#pragma warning disable CS1591 + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using Elements.Geometry; +using Elements.Geometry.Solids; + +namespace Elements.Serialization.JSON +{ + public static class AppDomainTypeCache + { + /// + /// The type cache needs to contains all types that will have a discriminator. + /// This includes base types, like elements, and all derived types like Wall. + /// We use reflection to find all public types available in the app domain + /// that have a JsonConverterAttribute whose converter type is the + /// Elements.Serialization.JSON.JsonInheritanceConverter. + /// + /// A dictionary containing all found types keyed by their full name. + internal static Dictionary BuildAppDomainTypeCache(out List failedAssemblyErrors) + { + var typeCache = new Dictionary(); + + failedAssemblyErrors = new List(); + + var skipAssembliesPrefices = new[] { "System", "SixLabors" }; + foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies().Where(a => + { + var name = a.GetName().Name; + return !skipAssembliesPrefices.Any(p => name.StartsWith(p)); + })) + { + var types = Array.Empty(); + try + { + types = assembly.GetTypes(); + } + catch (ReflectionTypeLoadException) + { + failedAssemblyErrors.Add($"Failed to load assembly: {assembly.FullName}"); + continue; + } + foreach (var t in types) + { + try + { + if (IsValidTypeForElements(t) && !typeCache.ContainsKey(t.FullName)) + { + // At this point we don't know the generic type arguments, + // so we key the type in the cache as Elements.ProxyElement<> + // Later, when we set the discriminator, we include the + // type argument like Elements.ProxyElement, and + // we do some string deconstruction to match the two and to + // extract the type arguments. + typeCache.Add(t.IsGenericType ? $"{t.FullName.Split('`').First()}<>" : t.FullName, t.IsGenericType ? t.GetGenericTypeDefinition() : t); + } + } + catch (TypeLoadException) + { + failedAssemblyErrors.Add($"Failed to load type: {t.FullName}"); + continue; + } + } + } + + return typeCache; + } + + private static bool IsValidTypeForElements(Type t) + { + if (t.IsPublic && t.IsClass) + { + var attrib = t.GetCustomAttribute(); + if (attrib != null && attrib.ConverterType.GenericTypeArguments.Length > 0) + { + var valid = attrib.ConverterType.GenericTypeArguments[0] == t + || attrib.ConverterType == typeof(ElementConverter) + || attrib.ConverterType == typeof(ElementConverter) + || attrib.ConverterType == typeof(ElementConverter); + return valid; + } + } + + return false; + } + } +} \ No newline at end of file diff --git a/Elements/src/Serialization/JSON/ElementConverter.cs b/Elements/src/Serialization/JSON/ElementConverter.cs new file mode 100644 index 000000000..8beee70f8 --- /dev/null +++ b/Elements/src/Serialization/JSON/ElementConverter.cs @@ -0,0 +1,402 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Reflection; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Elements.Serialization.JSON +{ + /// + /// Convert elements, lists of elements, and dictionaries of elements, + /// and elements with generic type parameters. + /// + /// + /// + public class ElementConverter : JsonConverter + { + public bool ElementwiseSerialization { get; internal set; } = false; + + public override T Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + if (options.ReferenceHandler == null) + { + throw new Exception("You are deserializing an element, but you don't have a reference resolver. Try using Element.Deserialize instead."); + } + + var resolver = options.ReferenceHandler.CreateResolver() as ElementReferenceResolver; + + if (reader.TokenType == JsonTokenType.String) + { + // Convert an id reference into an element. + var id = reader.GetString(); + return (T)resolver.ResolveReference(id); + } + else + { + if (IsAcceptedCollectionType(typeToConvert, out var collectionType)) + { + var elements = Activator.CreateInstance(typeToConvert); + var mi = typeToConvert.GetMethod("Add"); + switch (collectionType) + { + case CollectionType.List: + // At this point we'll be at the start of an array. + while (reader.Read() && reader.TokenType != JsonTokenType.EndArray) + { + var id = reader.GetString(); + mi.Invoke(elements, new[] { resolver.ResolveReference(id) }); + } + + break; + case CollectionType.Dictionary: + var args = typeToConvert.GetGenericArguments(); + // At this point we'll be at the start of an object + // This will be a dictionary that looks like id: id + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + foreach (var prop in root.EnumerateObject()) + { + if (args[0] == typeof(Guid)) + { + mi.Invoke(elements, new[] { Guid.Parse(prop.Name), resolver.ResolveReference(prop.Value.GetString()) }); + } + else + { + mi.Invoke(elements, new[] { prop.Name, resolver.ResolveReference(prop.Value.GetString()) }); + } + } + } + break; + } + return (T)elements; + } + else + { + using (var doc = JsonDocument.ParseValue(ref reader)) + { + // Deserialize an element. + var root = doc.RootElement; + + var discriminator = root.GetProperty("discriminator").GetString(); + Type derivedType; + + // Handle discriminators like ElementProxy + if (discriminator.Contains("<")) + { + // Strip the element type from the discriminator. + int start = discriminator.LastIndexOf("<") + 1; + int end = discriminator.IndexOf(">", start); + string result = discriminator.Remove(start, end - start); + if (!TryGetElementTypeWithFallbackToGeometricElement(resolver, result, root, out derivedType)) + { + return default; + } + } + else + { + if (!TryGetElementTypeWithFallbackToGeometricElement(resolver, discriminator, root, out derivedType)) + { + return default; + } + } + + if (derivedType.IsGenericType) + { + // Recover the type argument from the discriminator. + // TODO: Support multiple type arguments. + int start = discriminator.LastIndexOf("<") + 1; + int end = discriminator.IndexOf(">", start); + string elementType = discriminator.Substring(start, end - start); + if (!resolver.TypeCache.TryGetValue(elementType, out var genericType)) + { + // This may occur if the object is a proxy of a type we don't have the class for. Fallback to `Element`. + genericType = typeof(Element); + } + var typeArgs = new[] { genericType }; + var genericElementType = derivedType.MakeGenericType(typeArgs); + + if (discriminator.Contains("Elements.ElementProxy")) + { + var id = root.GetProperty("Id").GetGuid(); + var name = root.GetProperty("Name").GetString(); + var elementId = root.GetProperty("elementId").GetGuid(); + var dependency = root.GetProperty("dependency").GetString(); + var genericElement = (T)Activator.CreateInstance(genericElementType, new object[] { elementId, dependency, id, name }); + + return genericElement; + } + + throw new Exception("Generic element types other than ElementProxy are not currently supported."); + } + else + { + // Use the type info to get all properties which are Element + // references, and deserialize those first. + + // TODO: This *should* support serialization of elements in + // any order, removing the requirement to do any kind of recursive + // sub-element searching. We can remove that code from the model. + DeserializeElementProperties(derivedType, root, resolver, resolver.DocumentElements); + + // Use this for debugging. If you can't figure out + // where serialization is going berserk, it'll print + // the element ids as they serialize. This is useful + // when things like stack overflows happen, to identify + // the last element entered before the overflow. Then you + // can go and look at that element in the JSON and + // try to understand what's happening. + // if (root.TryGetProperty("Id", out var id)) + // { + // var strId = id.GetString(); + // Console.WriteLine($"Deserializing element {strId}"); + // } + T e = (T)root.Deserialize(derivedType, options); + if (typeof(Element).IsAssignableFrom(derivedType)) + { + resolver.AddReference(((Element)(object)e).Id.ToString(), e); + } + return e; + } + } + } + } + } + + /// + /// The type could not be found. See if it has the hallmarks + /// of a geometric element and deserialize it as such if possible. + /// + /// The element reference resolver. + /// The discriminator. + /// The json element within which we'll search for geometric element properties. + /// The found derived type. + /// True if the element is a geometric element, otherwise false. + private bool TryGetElementTypeWithFallbackToGeometricElement(ElementReferenceResolver resolver, string discriminator, JsonElement root, out Type derivedType) + { + if (!resolver.TypeCache.TryGetValue(discriminator, out derivedType)) + { + if (root.TryGetProperty("Representation", out _)) + { + derivedType = typeof(GeometricElement); + return true; + } + else + { + derivedType = null; + return false; + } + } + return true; + } + + public override void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options) + { + var isElement = typeof(Element).IsAssignableFrom(value.GetType()); + if (writer.CurrentDepth > 2 && isElement && !ElementwiseSerialization) + { + writer.WriteStringValue(((Element)(object)value).Id.ToString()); + } + else + { + writer.WriteStartObject(); + WriteProperties(value, writer, options); + writer.WriteEndObject(); + } + } + + public void WriteProperties(object value, Utf8JsonWriter writer, JsonSerializerOptions options) + { + // Inject the discriminator into the serialized JSON. + writer.WriteString("discriminator", GetDiscriminatorName(value)); + + var pinfos = value.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance); + foreach (var pinfo in pinfos) + { + // Skip ignored properties + var ignoreAttrib = pinfo.GetCustomAttribute(); + if (ignoreAttrib != null) + { + continue; + } + + // Honor the renaming of a property + var nameAttrib = pinfo.GetCustomAttribute(); + + writer.WritePropertyName(nameAttrib != null ? nameAttrib.Name : pinfo.Name); + JsonSerializer.Serialize(writer, pinfo.GetValue(value), pinfo.PropertyType, options); + } + + // Support public fields. + var finfos = value.GetType().GetFields(BindingFlags.Public | BindingFlags.Instance); + foreach (var finfo in finfos) + { + var nameAttrib = finfo.GetCustomAttribute(); + + writer.WritePropertyName(nameAttrib != null ? nameAttrib.Name : finfo.Name); + JsonSerializer.Serialize(writer, finfo.GetValue(value), finfo.FieldType, options); + } + } + + private void DeserializeElementProperties(Type derivedType, + JsonElement root, + ReferenceResolver resolver, + JsonElement documentElements) + { + var elementReferenceResolver = resolver as ElementReferenceResolver; + + var elementProperties = derivedType.GetProperties(BindingFlags.Public | BindingFlags.Instance).Where(p => + { + // Properties which are elements. + if (typeof(Element).IsAssignableFrom(p.PropertyType)) + { + return true; + }; + + return IsAcceptedCollectionType(p.PropertyType, out _); + }); + + foreach (var elementProperty in elementProperties) + { + if (!root.TryGetProperty(elementProperty.Name, out var prop) || + prop.ValueKind == JsonValueKind.Null) + { + // You'll get here when you've got a null reference to an element, + // or you've got no element at all in the json. + // Resolve to an empty id, causing the resolver to return null. + elementReferenceResolver.ResolveReference(string.Empty); + continue; + } + else if (prop.ValueKind == JsonValueKind.Array) + { + foreach (var value in prop.EnumerateArray()) + { + if (value.TryGetGuid(out var referenceId)) + { + if (documentElements.TryGetProperty(referenceId.ToString(), out var foundElement)) + { + if (foundElement.TryGetProperty("discriminator", out var discriminatorProp)) + { + if (elementReferenceResolver.TypeCache.TryGetValue(discriminatorProp.GetString(), out var discriminatorValue)) + { + HandleReferenceId(value, referenceId, resolver, documentElements, discriminatorValue); + } + } + } + } + else + { + // The array element is not an element. + // Just deserialize it. + } + } + continue; + } + else if (prop.ValueKind == JsonValueKind.Object) + { + foreach (var innerProp in prop.EnumerateObject()) + { + if (innerProp.Value.TryGetGuid(out var referenceId)) + { + if (documentElements.TryGetProperty(referenceId.ToString(), out var foundElement)) + { + if (foundElement.TryGetProperty("discriminator", out var discriminatorProp)) + { + if (elementReferenceResolver.TypeCache.TryGetValue(discriminatorProp.GetString(), out var discriminatorValue)) + { + HandleReferenceId(innerProp.Value, referenceId, resolver, documentElements, discriminatorValue); + } + } + } + } + } + continue; + } + + if (prop.TryGetGuid(out var referencedId)) + { + HandleReferenceId(prop, referencedId, resolver, documentElements, elementProperty.PropertyType); + } + } + } + + private bool IsAcceptedCollectionType(Type propertyType, out CollectionType collectionType) + { + if (propertyType.IsGenericType) + { + var def = propertyType.GetGenericTypeDefinition(); + var args = propertyType.GetGenericArguments(); + + // Properties which are List + if (def == typeof(List<>)) + { + if (typeof(Element).IsAssignableFrom(args[0])) + { + collectionType = CollectionType.List; + return true; + } + } + // Properties which are Dictionary or Dictionary + else if (def == typeof(Dictionary<,>)) + { + if ((args[0] == typeof(Guid) || args[0] == typeof(string)) && typeof(Element).IsAssignableFrom(args[1])) + { + collectionType = CollectionType.Dictionary; + return true; + } + } + } + collectionType = CollectionType.None; + return false; + } + + internal static void HandleReferenceId(JsonElement elementToDeserialize, + Guid referencedId, + ReferenceResolver resolver, + JsonElement documentElements, + Type propertyType) + { + if (resolver.ResolveReference(referencedId.ToString()) != null) + { + return; + } + + if (documentElements.TryGetProperty(referencedId.ToString(), out var propertyBody)) + { + if (propertyBody.TryGetProperty("discriminator", out _)) + { + var referencedElement = (Element)elementToDeserialize.Deserialize(propertyType); + resolver.AddReference(referencedId.ToString(), referencedElement); + } + } + else + { + // The reference cannot be found. It's either not + // a direct reference, as in the case of a cross-model + // reference, or it's just broken. + resolver.AddReference(referencedId.ToString(), null); + } + } + + private string GetDiscriminatorName(object value) + { + var t = value.GetType(); + if (t.IsGenericType) + { + return $"{t.FullName.Split('`').First()}<{string.Join(",", t.GenericTypeArguments.Select(arg => arg.FullName))}>"; + } + else + { + return t.FullName.Split('`').First(); + } + } + } + + internal enum CollectionType + { + None, + List, + Dictionary + } +} \ No newline at end of file diff --git a/Elements/src/Serialization/JSON/ElementConverterFactory.cs b/Elements/src/Serialization/JSON/ElementConverterFactory.cs new file mode 100644 index 000000000..a1aceb15e --- /dev/null +++ b/Elements/src/Serialization/JSON/ElementConverterFactory.cs @@ -0,0 +1,37 @@ +using System; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Elements.Serialization.JSON +{ + internal class ElementConverterFactory : JsonConverterFactory + { + private readonly bool _elementwiseSerialization; + + /// + /// Should the elements be serialized completely? If this option is false, + /// elements will be serialized to ids. + /// + /// + public ElementConverterFactory(bool elementwiseSerialization = false) + { + _elementwiseSerialization = elementwiseSerialization; + } + + public override bool CanConvert(Type typeToConvert) + { + return typeof(Element).IsAssignableFrom(typeToConvert); + } + + public override JsonConverter CreateConverter(Type typeToConvert, JsonSerializerOptions options) + { + var elementConverter = typeof(ElementConverter<>); + var typeArgs = new[] { typeToConvert }; + var converterType = elementConverter.MakeGenericType(typeArgs); + var converter = Activator.CreateInstance(converterType) as JsonConverter; + var pi = converterType.GetProperty("ElementwiseSerialization"); + pi.SetValue(converter, _elementwiseSerialization); + return converter; + } + } +} \ No newline at end of file diff --git a/Elements/src/Serialization/JSON/ElementReferenceResolver.cs b/Elements/src/Serialization/JSON/ElementReferenceResolver.cs new file mode 100644 index 000000000..e0555003d --- /dev/null +++ b/Elements/src/Serialization/JSON/ElementReferenceResolver.cs @@ -0,0 +1,86 @@ +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace Elements.Serialization.JSON +{ + // This is a hack of the reference resolver. + // We don't actually use reference resolution (ex: $ref, $id) in our element converter, + // but we use a reference resolver because it can be passed down through + // serialization and made available to both properties with converter + // attributes, and objects serialized/deserialized using converters + // from the serializer's options. + // https://docs.microsoft.com/en-us/dotnet/standard/serialization/system-text-json-preserve-references?pivots=dotnet-6-0#persist-reference-metadata-across-multiple-serialization-and-deserialization-calls + internal class ElementReferenceResolver : ReferenceResolver + { + public Dictionary TypeCache { get; } + public JsonElement DocumentElements { get; } + + private readonly Dictionary _referenceIdToObjectMap = new Dictionary(); + private readonly Dictionary _objectToReferenceIdMap = new Dictionary(); + + public ElementReferenceResolver(Dictionary typeCache, JsonElement documentElements) + { + TypeCache = typeCache; + DocumentElements = documentElements; + } + + public override void AddReference(string referenceId, object value) + { + // TODO: Enable this when we move to a .net version that supports TryAdd + // if (!_referenceIdToObjectMap.TryAdd(referenceId, value)) + // { + // throw new JsonException(); + // } + + if (_referenceIdToObjectMap == null) + { + throw new JsonException(nameof(_referenceIdToObjectMap)); + } + + if (!_referenceIdToObjectMap.ContainsKey(referenceId)) + { + _referenceIdToObjectMap.Add(referenceId, value); + } + } + + public override string GetReference(object value, out bool alreadyExists) + { + if (_objectToReferenceIdMap.TryGetValue(value, out string referenceId)) + { + alreadyExists = true; + } + else + { + // _referenceCount++; + // referenceId = _referenceCount.ToString(); + _objectToReferenceIdMap.Add(value, referenceId); + alreadyExists = false; + } + + return referenceId; + } + + public override object ResolveReference(string referenceId) + { + if (!_referenceIdToObjectMap.TryGetValue(referenceId, out object value)) + { + // In the default version of this reference resolver + // they throw an exception when a reference cannot be found. + // But we want to be more permissive and just return null. + return null; + } + + return value; + } + } + + internal class ElementReferenceHandler : ReferenceHandler + { + public ElementReferenceHandler(Dictionary typeCache, JsonElement documentElements) => Reset(typeCache, documentElements); + private ReferenceResolver _rootedResolver; + public override ReferenceResolver CreateResolver() => _rootedResolver; + public void Reset(Dictionary typeCache, JsonElement documentElements) => _rootedResolver = new ElementReferenceResolver(typeCache, documentElements); + } +} \ No newline at end of file diff --git a/Elements/src/Serialization/JSON/JsonInheritanceConverter.cs b/Elements/src/Serialization/JSON/JsonInheritanceConverter.cs deleted file mode 100644 index d240af76e..000000000 --- a/Elements/src/Serialization/JSON/JsonInheritanceConverter.cs +++ /dev/null @@ -1,371 +0,0 @@ -#pragma warning disable CS1591 - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Reflection; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; - -namespace Elements.Serialization.JSON -{ - public class JsonInheritanceConverter : JsonConverter - { - internal static readonly string DefaultDiscriminatorName = "discriminator"; - - private readonly string _discriminator; - - [System.ThreadStatic] - private static bool _isReading; - - [System.ThreadStatic] - private static bool _isWriting; - - [System.ThreadStatic] - private static Dictionary _typeCache; - private static Dictionary TypeCache - { - get - { - if (_typeCache == null) - { - _typeCache = BuildAppDomainTypeCache(out _); - } - return _typeCache; - } - } - - [System.ThreadStatic] - private static Dictionary _elements; - - public static Dictionary Elements - { - get - { - if (_elements == null) - { - _elements = new Dictionary(); - } - return _elements; - } - } - - private static List _deserializationWarnings = new List(); - - public JsonInheritanceConverter() - { - _discriminator = DefaultDiscriminatorName; - } - - public JsonInheritanceConverter(string discriminator) - { - _discriminator = discriminator; - } - - private static readonly List TypePrefixesExcludedFromTypeCache = new List { "System", "SixLabors", "Newtonsoft" }; - - /// - /// When we build up the element type cache, we iterate over all types in the app domain. - /// Excluding other types can speed up the process and reduce deserialization issues. - /// - /// - public static void ExcludeTypePrefixesFromTypeCache(params string[] prefixes) - { - TypePrefixesExcludedFromTypeCache.AddRange(prefixes); - } - - /// - /// The type cache needs to contains all types that will have a discriminator. - /// This includes base types, like elements, and all derived types like Wall. - /// We use reflection to find all public types available in the app domain - /// that have a JsonConverterAttribute whose converter type is the - /// Elements.Serialization.JSON.JsonInheritanceConverter. - /// - /// A dictionary containing all found types keyed by their full name. - private static Dictionary BuildAppDomainTypeCache(out List failedAssemblyErrors) - { - var typeCache = new Dictionary(); - - failedAssemblyErrors = new List(); - - foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies().Where(a => - { - var name = a.GetName().Name; - return !TypePrefixesExcludedFromTypeCache.Any(p => name.StartsWith(p)); - })) - { - var types = Array.Empty(); - try - { - types = assembly.GetTypes(); - } - catch (ReflectionTypeLoadException) - { - failedAssemblyErrors.Add($"Failed to load assembly: {assembly.FullName}"); - continue; - } - foreach (var t in types) - { - try - { - if (IsValidTypeForElements(t) && !typeCache.ContainsKey(t.FullName)) - { - typeCache.Add(t.FullName, t); - } - } - catch (TypeLoadException) - { - failedAssemblyErrors.Add($"Failed to load type: {t.FullName}"); - continue; - } - } - } - - return typeCache; - } - - private static bool IsValidTypeForElements(Type t) - { - if (t.IsPublic && t.IsClass) - { - var attrib = t.GetCustomAttribute(); - if (attrib != null && attrib.ConverterType == typeof(JsonInheritanceConverter)) - { - return true; - } - } - - return false; - } - - /// - /// Call this method after assemblies have been loaded into the app - /// domain to ensure that the converter's cache is up to date. - /// - internal static void RefreshAppDomainTypeCache(out List errors) - { - _typeCache = BuildAppDomainTypeCache(out errors); - } - - public static bool ElementwiseSerialization { get; set; } = false; - - public override void WriteJson(Newtonsoft.Json.JsonWriter writer, object value, Newtonsoft.Json.JsonSerializer serializer) - { - try - { - _isWriting = true; - - // Operate on all identifiable Elements with a path less than Entities.xxxxx - // This will get all properties. - if (value is Element element && !WritingTopLevelElement(writer.Path) && !ElementwiseSerialization) - { - var ident = element; - writer.WriteValue(ident.Id); - } - else - { - var jObject = Newtonsoft.Json.Linq.JObject.FromObject(value, serializer); - - var discriminatorName = GetDiscriminatorName(value); - - if (jObject.TryGetValue(_discriminator, out JToken token)) - { - // Don't update the discriminator value if it is a base class of `GeometricElement` or `Element`. - // This means that the type was likely set due to fallback when a type wasn't found when deserializing. - // So, we should keep the discriminator value until another serializer can handle it. - if (discriminatorName != "Elements.GeometricElement" && discriminatorName != "Elements.Element") - { - ((JValue)token).Value = discriminatorName; - } - } - else - { - jObject.AddFirst(new Newtonsoft.Json.Linq.JProperty(_discriminator, discriminatorName)); - } - writer.WriteToken(jObject.CreateReader()); - } - } - finally - { - _isWriting = false; - } - } - - private static bool WritingTopLevelElement(string path) - { - var parts = path.Split('.'); - if (parts.Length == 2 && parts[0] == "Elements" && Guid.TryParse(parts[1], out var _)) - { - return true; - } - return false; - } - - private static string GetDiscriminatorName(object value) - { - var t = value.GetType(); - if (t.IsGenericType) - { - return $"{t.FullName.Split('`').First()}<{String.Join(",", t.GenericTypeArguments.Select(arg => arg.FullName))}>"; - } - else - { - return t.FullName.Split('`').First(); - } - } - - public override bool CanWrite - { - get - { - if (_isWriting) - { - _isWriting = false; - return false; - } - return true; - } - } - - public override bool CanRead - { - get - { - if (_isReading) - { - _isReading = false; - return false; - } - return true; - } - } - - public override bool CanConvert(System.Type objectType) - { - return true; - } - - public static List GetAndClearDeserializationWarnings() - { - var warnings = _deserializationWarnings.ToList(); - _deserializationWarnings.Clear(); - return warnings; - } - - public override object ReadJson(Newtonsoft.Json.JsonReader reader, System.Type objectType, object existingValue, Newtonsoft.Json.JsonSerializer serializer) - { - // The serialized value is an identifier, so the expectation is - // that the element with that id has already been deserialized. - if (typeof(Element).IsAssignableFrom(objectType) && !WritingTopLevelElement(reader.Path) && reader.Value != null) - { - var id = Guid.Parse(reader.Value.ToString()); - if (!Elements.ContainsKey(id)) - { - _deserializationWarnings.Add($"Element {id} was not found during deserialization. Check for other deserialization errors."); - return null; - } - return Elements[id]; - } - - var jObject = serializer.Deserialize(reader); - if (jObject == null) - { - return null; - } - - // We need to handle both cases where we're receiving JSON that has a - // discriminator, like that produced by serializing using this - // converter, and the case where the JSON does not have a discriminator, - // but the type is known during deserialization. - Type subtype; - string discriminator = null; - jObject.TryGetValue(_discriminator, out JToken discriminatorToken); - if (discriminatorToken != null) - { - discriminator = Newtonsoft.Json.Linq.Extensions.Value(discriminatorToken); - subtype = GetObjectSubtype(objectType, discriminator, jObject); - } - else - { - // Without a discriminator the call to GetObjectSubtype will - // fall through to returning either a [UserElement] type or - // the object type. - subtype = GetObjectSubtype(objectType, null, jObject); - } - - try - { - _isReading = true; - var obj = serializer.Deserialize(jObject.CreateReader(), subtype); - - // Write the id to the cache so that we can retrieve it next time - // instead of de-serializing it again. - if (typeof(Element).IsAssignableFrom(objectType) && WritingTopLevelElement(reader.Path)) - { - var ident = (Element)obj; - if (!Elements.ContainsKey(ident.Id)) - { - Elements.Add(ident.Id, ident); - } - } - - return obj; - } - catch (Exception ex) - { - var baseMessage = "This may happen if the type is not recognized in the system."; - var moreInfoMessage = "See the inner exception for more details."; - - if (discriminator != null) - { - _deserializationWarnings.Add($"An object with the discriminator, {discriminator}, could not be deserialized. {baseMessage}"); - return null; - - } - else - { - throw new Exception($"{baseMessage} {moreInfoMessage}", ex); - } - } - finally - { - _isReading = false; - } - } - - private System.Type GetObjectSubtype(System.Type objectType, string discriminator, JObject jObject) - { - // Check the type cache. - if (discriminator != null && TypeCache.ContainsKey(discriminator)) - { - return TypeCache[discriminator]; - } - - // Check for proxy generics. - if (discriminator != null && discriminator.StartsWith("Elements.ElementProxy<")) - { - var typeNames = discriminator.Split('<')[1].Split('>')[0].Split(','); // We do this split because in theory we can serialize with multiple generics - var typeName = typeNames.FirstOrDefault(); - var generic = TypeCache[typeName]; - var proxy = typeof(ElementProxy<>).MakeGenericType(generic); - return proxy; - } - - // If it's not in the type cache see if it's got a representation. - // Import it as a GeometricElement. - if (jObject.TryGetValue("Representation", out _)) - { - return typeof(GeometricElement); - } - // If nothing else has worked, see if it has an ID and treat it as a generic element - if (jObject.TryGetValue("Id", out _)) - { - return typeof(Element); - } - - // The default behavior for this converter, as provided by nJSONSchema - // is to return the base objectType if a derived type can't be found. - return objectType; - } - } -} \ No newline at end of file diff --git a/Elements/src/Serialization/JSON/LineConverter.cs b/Elements/src/Serialization/JSON/LineConverter.cs new file mode 100644 index 000000000..d7744ac9b --- /dev/null +++ b/Elements/src/Serialization/JSON/LineConverter.cs @@ -0,0 +1,54 @@ +using System; +using System.Text.Json; +using System.Text.Json.Serialization; +using Elements.Geometry; + +namespace Elements.Serialization.JSON +{ + internal class LineConverter : JsonConverter + { + public override Line Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + Vector3 start = default; + Vector3 end = default; + + while (reader.Read()) + { + if (reader.TokenType == JsonTokenType.PropertyName) + { + var propertyName = reader.GetString(); + reader.Read(); + switch (propertyName) + { + case "Start": + start = JsonSerializer.Deserialize(ref reader, options); + break; + case "End": + end = JsonSerializer.Deserialize(ref reader, options); + break; + } + } + + if (reader.TokenType == JsonTokenType.EndObject) + { + return new Line(start, end); + } + } + + throw new JsonException("Error reading Line object."); + } + + public override void Write(Utf8JsonWriter writer, Line value, JsonSerializerOptions options) + { + writer.WriteStartObject(); + + writer.WritePropertyName("Start"); + JsonSerializer.Serialize(writer, value.Start, options); + + writer.WritePropertyName("End"); + JsonSerializer.Serialize(writer, value.End, options); + + writer.WriteEndObject(); + } + } +} diff --git a/Elements/src/Serialization/JSON/MeshConverter.cs b/Elements/src/Serialization/JSON/MeshConverter.cs index 8f1ebe3c8..329930f54 100644 --- a/Elements/src/Serialization/JSON/MeshConverter.cs +++ b/Elements/src/Serialization/JSON/MeshConverter.cs @@ -4,22 +4,16 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; +using System.Text.Json.Serialization; +using System.Text.Json; namespace Elements.Serialization.JSON { /// /// Triangle converter. /// - public class MeshConverter : JsonConverter + public class MeshConverter : JsonConverter { - public override bool CanConvert(Type objectType) - { - return objectType == typeof(Mesh); - } - - // There are currently two version of the Mesh schema used on our platform. // One used in explore and one used in the Elements Library. // Explore - https://hypar.io/Schemas/Mesh.json - used in input_schema @@ -27,103 +21,106 @@ public override bool CanConvert(Type objectType) // TODO These schemas should converge to one. They both should change to match the serialized format of the // data that is being transmitted on the platform. Neither schema matches the desired serialization format currently. // The desired schema format is the one this converter reads/writes, it is very compact. - public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) + public override Mesh Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) { - if (reader.Value == null && reader.TokenType == JsonToken.Null) + if (reader.TokenType == JsonTokenType.Null) { return null; } - var obj = JObject.Load(reader); - var mesh = new Mesh(); - if (obj.TryGetValue("vertices", out var vertices)) + using (var doc = JsonDocument.ParseValue(ref reader)) { - //input_schema Mesh path - var allVertices = new List(vertices.Count()); - foreach (var v in vertices) - { - var i = v["index"].ToObject(); - var p = v["position"]; - var x2 = p["X"].ToObject(); - - allVertices.Insert(i, new Vertex(new Vector3( - v["position"]["X"].ToObject(), - v["position"]["Y"].ToObject(), - v["position"]["Z"].ToObject() - ) - )); - } - foreach (var v in allVertices) - { - mesh.AddVertex(v); - } + var root = doc.RootElement; - foreach (var t in obj["triangles"]) - { - var indices = t["vertexIndices"]; - mesh.AddTriangle(allVertices[indices[0].ToObject()], - allVertices[indices[1].ToObject()], - allVertices[indices[2].ToObject()]); - } - } - else - { - //Elements Mesh path - var positions = obj["Positions"].ToObject>(); - var colors = obj["Colors"].ToObject>(); - var normals = obj["Normals"].ToObject>(); - var uvs = obj["UVs"].ToObject>(); + var mesh = new Mesh(); - for (var i = 0; i < positions.Count / 3; i++) + if (root.TryGetProperty("vertices", out var verticesElement)) { - var pi = i * 3; - var ui = i * 2; - var ci = i * 4; - mesh.AddVertex(new Vector3(positions[pi], - positions[pi + 1], - positions[pi + 2]), new UV(uvs[ui], - uvs[ui + 1]), new Vector3(normals[pi], - normals[pi + 1], - normals[pi + 2]), new Color(colors[ci], - colors[ci + 1], - colors[ci + 2], - colors[ci + 3])); + //input_schema Mesh path + var allVertices = new List(verticesElement.GetArrayLength()); + foreach (var v in verticesElement.EnumerateArray()) + { + ; + var i = v.GetProperty("index").GetInt32(); + var p = v.GetProperty("position"); + + allVertices.Insert(i, new Vertex(new Vector3( + p.GetProperty("X").GetDouble(), + p.GetProperty("Y").GetDouble(), + p.GetProperty("Z").GetDouble() + ) + )); + } + foreach (var v in allVertices) + { + mesh.AddVertex(v); + } + + foreach (var t in root.GetProperty("triangles").EnumerateArray()) + { + var indices = t.GetProperty("vertexIndices"); + mesh.AddTriangle(allVertices[indices[0].GetInt32()], + allVertices[indices[1].GetInt32()], + allVertices[indices[2].GetInt32()]); + } } - - var triangles = obj["Triangles"].ToObject>(); - for (var i = 0; i < triangles.Count; i += 3) + else { - var a = mesh.Vertices[triangles[i]]; - var b = mesh.Vertices[triangles[i + 1]]; - var c = mesh.Vertices[triangles[i + 2]]; - var tri = new Triangle(a, b, c); - mesh.AddTriangle(tri); + //Elements Mesh path + var positions = root.GetProperty("Positions").Deserialize>(); + var colors = root.GetProperty("Colors").Deserialize>(); + var normals = root.GetProperty("Normals").Deserialize>(); + var uvs = root.GetProperty("UVs").Deserialize>(); + + for (var i = 0; i < positions.Count / 3; i++) + { + var pi = i * 3; + var ui = i * 2; + var ci = i * 4; + mesh.AddVertex(new Vector3(positions[pi], + positions[pi + 1], + positions[pi + 2]), new UV(uvs[ui], + uvs[ui + 1]), new Vector3(normals[pi], + normals[pi + 1], + normals[pi + 2]), new Color(colors[ci], + colors[ci + 1], + colors[ci + 2], + colors[ci + 3])); + } + + var triangles = root.GetProperty("Triangles").Deserialize>(); + for (var i = 0; i < triangles.Count; i += 3) + { + var a = mesh.Vertices[triangles[i]]; + var b = mesh.Vertices[triangles[i + 1]]; + var c = mesh.Vertices[triangles[i + 2]]; + var tri = new Triangle(a, b, c); + mesh.AddTriangle(tri); + } } - } - return mesh; + return mesh; + } } - public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) + public override void Write(Utf8JsonWriter writer, Mesh value, JsonSerializerOptions options) { - var m = (Mesh)value; - writer.WriteStartObject(); writer.WritePropertyName("Positions"); - serializer.Serialize(writer, m.Vertices.SelectMany(v => new[] { v.Position.X, v.Position.Y, v.Position.Z })); + JsonSerializer.Serialize(writer, value.Vertices.SelectMany(v => new[] { v.Position.X, v.Position.Y, v.Position.Z })); writer.WritePropertyName("Normals"); - serializer.Serialize(writer, m.Vertices.SelectMany(v => new[] { v.Normal.X, v.Normal.Y, v.Normal.Z })); + JsonSerializer.Serialize(writer, value.Vertices.SelectMany(v => new[] { v.Normal.X, v.Normal.Y, v.Normal.Z })); writer.WritePropertyName("UVs"); - serializer.Serialize(writer, m.Vertices.SelectMany(v => new[] { v.UV.U, v.UV.V })); + JsonSerializer.Serialize(writer, value.Vertices.SelectMany(v => new[] { v.UV.U, v.UV.V })); writer.WritePropertyName("Colors"); - serializer.Serialize(writer, m.Vertices.SelectMany(v => new[] { v.Color.Red, v.Color.Green, v.Color.Blue, v.Color.Alpha })); + JsonSerializer.Serialize(writer, value.Vertices.SelectMany(v => new[] { v.Color.Red, v.Color.Green, v.Color.Blue, v.Color.Alpha })); writer.WritePropertyName("Triangles"); - serializer.Serialize(writer, m.Triangles.SelectMany(t => new[] { t.Vertices[0].Index, t.Vertices[1].Index, t.Vertices[2].Index })); + JsonSerializer.Serialize(writer, value.Triangles.SelectMany(t => new[] { t.Vertices[0].Index, t.Vertices[1].Index, t.Vertices[2].Index })); writer.WriteEndObject(); } diff --git a/Elements/src/Serialization/JSON/ModelConverter.cs b/Elements/src/Serialization/JSON/ModelConverter.cs new file mode 100644 index 000000000..2f686710e --- /dev/null +++ b/Elements/src/Serialization/JSON/ModelConverter.cs @@ -0,0 +1,53 @@ +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Elements.GeoJSON; +using Elements.Geometry; + +namespace Elements.Serialization.JSON +{ + internal class ModelConverter : JsonConverter + { + public override Model Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + var elements = new Dictionary(); + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + var elementsElement = root.GetProperty("Elements"); + var transform = JsonSerializer.Deserialize(root.GetProperty("Transform")); + + foreach (var element in elementsElement.EnumerateObject()) + { + // TODO: This try/catch is only here to protect against + // situations like null property values when the serializer + // expects a value, or validation errors. Unlike json.net, system.text.json doesn't + // have null value handling on read. + try + { + var id = Guid.Parse(element.Name); + var e = JsonSerializer.Deserialize(element.Value, options); + if (e != null) + { + elements.Add(id, e); + } + } + catch (Exception ex) + { + Console.WriteLine(ex.Message); + continue; + } + } + + var model = new Model(transform, elements); + return model; + } + } + + public override void Write(Utf8JsonWriter writer, Model value, JsonSerializerOptions options) + { + JsonSerializer.Serialize(writer, value, options); + } + } +} \ No newline at end of file diff --git a/Elements/src/Serialization/JSON/PolygonConverter.cs b/Elements/src/Serialization/JSON/PolygonConverter.cs new file mode 100644 index 000000000..b87f8a50a --- /dev/null +++ b/Elements/src/Serialization/JSON/PolygonConverter.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Elements.Geometry; + +namespace Elements.Serialization.JSON +{ + internal class PolygonConverter : JsonConverter + { + public override Polygon Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + var vertices = new List(); + + foreach (var vObj in root.GetProperty("Vertices").EnumerateArray()) + { + var x = vObj.GetProperty("X").GetDouble(); + var y = vObj.GetProperty("Y").GetDouble(); + var z = vObj.GetProperty("Z").GetDouble(); + vertices.Add(new Vector3(x, y, z)); + } + + return new Polygon(vertices); + } + } + + public override void Write(Utf8JsonWriter writer, Polygon value, JsonSerializerOptions options) + { + writer.WriteStartObject(); + + writer.WritePropertyName("Vertices"); + writer.WriteStartArray(); + foreach (var vertex in value.Vertices) + { + writer.WriteStartObject(); + writer.WritePropertyName("X"); + writer.WriteNumberValue(vertex.X); + writer.WritePropertyName("Y"); + writer.WriteNumberValue(vertex.Y); + writer.WritePropertyName("Z"); + writer.WriteNumberValue(vertex.Z); + writer.WriteEndObject(); + } + writer.WriteEndArray(); + + writer.WriteEndObject(); + } + } +} diff --git a/Elements/src/Serialization/JSON/PolylineConverter.cs b/Elements/src/Serialization/JSON/PolylineConverter.cs new file mode 100644 index 000000000..ba0eba0ca --- /dev/null +++ b/Elements/src/Serialization/JSON/PolylineConverter.cs @@ -0,0 +1,52 @@ +using System; +using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; +using Elements.Geometry; + +namespace Elements.Serialization.JSON +{ + internal class PolylineConverter : JsonConverter + { + public override Polyline Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + using (var doc = JsonDocument.ParseValue(ref reader)) + { + var root = doc.RootElement; + var vertices = new List(); + + foreach (var vObj in root.GetProperty("Vertices").EnumerateArray()) + { + var x = vObj.GetProperty("X").GetDouble(); + var y = vObj.GetProperty("Y").GetDouble(); + var z = vObj.GetProperty("Z").GetDouble(); + vertices.Add(new Vector3(x, y, z)); + } + + return new Polyline(vertices); + } + } + + public override void Write(Utf8JsonWriter writer, Polyline value, JsonSerializerOptions options) + { + writer.WriteStartObject(); + + writer.WritePropertyName("Vertices"); + writer.WriteStartArray(); + foreach (var vertex in value.Vertices) + { + writer.WriteStartObject(); + writer.WritePropertyName("X"); + writer.WriteNumberValue(vertex.X); + writer.WritePropertyName("Y"); + writer.WriteNumberValue(vertex.Y); + writer.WritePropertyName("Z"); + writer.WriteNumberValue(vertex.Z); + writer.WriteEndObject(); + } + writer.WriteEndArray(); + + writer.WriteEndObject(); + } + } +} diff --git a/Elements/src/Serialization/JSON/SolidConverter.cs b/Elements/src/Serialization/JSON/SolidConverter.cs index 7f1fe6c6f..844a1f968 100644 --- a/Elements/src/Serialization/JSON/SolidConverter.cs +++ b/Elements/src/Serialization/JSON/SolidConverter.cs @@ -2,27 +2,27 @@ using Elements.Geometry.Solids; using System; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; using System.Collections.Generic; using Elements.Geometry; using System.Linq; using System.Reflection; +using System.Text.Json.Serialization; +using System.Text.Json; namespace Elements.Serialization.JSON { /// - /// The SolidConverter is used to serialize and deserialize a Solid. + /// The SolidConverter is used to deserialize a Solid. /// Solids have a self-referencing structure which does not serialize /// effectively using the default serialization logic. The SolidConverter /// serializes and deserializes starting at the Solid's Faces, using /// Vertex and Edge ids to reconstruct and link the Edges and Vertices as necessary. /// - internal class SolidConverter : JsonConverter + internal class SolidConverter : JsonConverter { private List _solidTypes; - public SolidConverter(IDictionary materials) + public SolidConverter() { LoadSolidTypes(); } @@ -33,7 +33,7 @@ private void LoadSolidTypes() { _solidTypes = Assembly.GetExecutingAssembly().GetTypes().Where(t => typeof(Solid).IsAssignableFrom(t)).ToList(); } - catch (System.Reflection.ReflectionTypeLoadException ex) + catch (ReflectionTypeLoadException ex) { foreach (var x in ex.LoaderExceptions) { @@ -42,87 +42,101 @@ private void LoadSolidTypes() } } - public SolidConverter() + public override Solid Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) { - LoadSolidTypes(); - } + using (var obj = JsonDocument.ParseValue(ref reader)) + { + // TODO: REMOVE OLD CODE BEFORE SYSTEM.TEXT.JSON UPDATES + // throw new Exception($"The object with type name, {typeName}, could not be deserialzed."); + // } - public override bool CanConvert(Type objectType) - { - return typeof(Solid).IsAssignableFrom(objectType); - } + // var solid = (Solid)Activator.CreateInstance(foundType, new object[] { }); - public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) - { - var obj = JObject.Load(reader); - var typeName = (string)obj.GetValue("type"); - var foundType = _solidTypes.FirstOrDefault(t => t.FullName.ToLower() == typeName); - if (foundType == null) - { - throw new Exception($"The object with type name, {typeName}, could not be deserialzed."); - } + // foreach (JObject vobj in (JArray)obj.GetValue("vertices")) + // { + // var id = (uint)vobj.GetValue("id"); + // var x = (double)vobj.GetValue("x"); + // var y = (double)vobj.GetValue("y"); + // var z = (double)vobj.GetValue("z"); + // solid.AddVertex(id, new Vector3(x, y, z)); + // } - var solid = (Solid)Activator.CreateInstance(foundType, new object[] { }); + // foreach (JObject face in (JArray)obj.GetValue("faces")) + // { + // var id = (uint)face.GetValue("id"); - foreach (JObject vobj in (JArray)obj.GetValue("vertices")) - { - var id = (uint)vobj.GetValue("id"); - var x = (double)vobj.GetValue("x"); - var y = (double)vobj.GetValue("y"); - var z = (double)vobj.GetValue("z"); - solid.AddVertex(id, new Vector3(x, y, z)); - } + // var outer = new Loop(); - foreach (JObject face in (JArray)obj.GetValue("faces")) - { - var id = (uint)face.GetValue("id"); + // foreach (JObject heobj in (JArray)face.GetValue("outer")) + + var root = obj.RootElement; + var typeName = root.GetProperty("Type").GetString(); + var foundType = _solidTypes.FirstOrDefault(t => t.FullName.ToLower() == typeName); + if (foundType == null) + { + throw new Exception($"The object with type name, {typeName}, could not be deserialzed."); + } - var outer = new Loop(); + var solid = (Solid)Activator.CreateInstance(foundType, new object[] { }); - foreach (JObject heobj in (JArray)face.GetValue("outer")) + foreach (var vobj in root.GetProperty("Vertices").EnumerateArray()) { - ReadHalfEdge(heobj, outer, solid); + var id = (uint)vobj.GetProperty("Id").GetInt64(); + var x = vobj.GetProperty("X").GetDouble(); + var y = vobj.GetProperty("Y").GetDouble(); + var z = vobj.GetProperty("Z").GetDouble(); + solid.AddVertex(id, new Vector3(x, y, z)); } - JToken innerobjs; - var inners = new List(); - if (face.TryGetValue("inner", out innerobjs)) + foreach (var face in root.GetProperty("Faces").EnumerateArray()) { - foreach (JArray innerobj in innerobjs) + var id = (uint)face.GetProperty("Id").GetInt64(); + + var outer = new Loop(); + + foreach (var heobj in face.GetProperty("Outer").EnumerateArray()) { - var inner = new Loop(); - inners.Add(inner); - foreach (JObject heobj in innerobj) + ReadHalfEdge(heobj, outer, solid); + } + + var inners = new List(); + if (face.TryGetProperty("Inner", out var innerobjs)) + { + foreach (var innerobj in innerobjs.EnumerateArray()) { - ReadHalfEdge(heobj, inner, solid); + var inner = new Loop(); + inners.Add(inner); + foreach (var heobj in innerobj.EnumerateArray()) + { + ReadHalfEdge(heobj, inner, solid); + } } } + solid.AddFace(id, outer, inners.ToArray()); } - solid.AddFace(id, outer, inners.ToArray()); - } - return solid; + return solid; + } } - private void ReadHalfEdge(JObject heobj, Loop loop, Solid solid) + private void ReadHalfEdge(JsonElement heobj, Loop loop, Solid solid) { - var vobj = (JObject)heobj.GetValue("vertex"); - var vid = (long)heobj.GetValue("vertex_id"); + // var vobj = heobj.GetProperty("vertex"); + var vid = heobj.GetProperty("vertex_id").GetInt64(); var v = solid.Vertices[vid]; var he = new HalfEdge(v, loop); loop.AddEdgeToEnd(he); - var eid = (uint)heobj.GetValue("edge_id"); - Edge edge; - if (!solid.Edges.TryGetValue(eid, out edge)) + var eid = (uint)heobj.GetProperty("edge_id").GetInt64(); + if (!solid.Edges.TryGetValue(eid, out Edge edge)) { edge = solid.AddEdge(eid); } he.Edge = edge; - var side = (string)heobj.GetValue("edge_side"); + var side = heobj.GetProperty("edge_side").GetString(); if (side == "left") { edge.Left = he; @@ -133,52 +147,50 @@ private void ReadHalfEdge(JObject heobj, Loop loop, Solid solid) } } - public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) + public override void Write(Utf8JsonWriter writer, Solid value, JsonSerializerOptions options) { - var solid = (Solid)value; - writer.WriteStartObject(); - writer.WritePropertyName("type"); - writer.WriteValue(value.GetType().FullName.ToLower()); + writer.WritePropertyName("Type"); + writer.WriteStringValue(value.GetType().FullName.ToLower()); - writer.WritePropertyName("vertices"); + writer.WritePropertyName("Vertices"); writer.WriteStartArray(); - foreach (var v in solid.Vertices.Values) + foreach (var v in value.Vertices.Values) { writer.WriteStartObject(); - writer.WritePropertyName("id"); - writer.WriteValue(v.Id); - writer.WritePropertyName("x"); - writer.WriteValue(v.Point.X); - writer.WritePropertyName("y"); - writer.WriteValue(v.Point.Y); - writer.WritePropertyName("z"); - writer.WriteValue(v.Point.Z); + writer.WritePropertyName("Id"); + writer.WriteNumberValue(v.Id); + writer.WritePropertyName("X"); + writer.WriteNumberValue(v.Point.X); + writer.WritePropertyName("Y"); + writer.WriteNumberValue(v.Point.Y); + writer.WritePropertyName("Z"); + writer.WriteNumberValue(v.Point.Z); writer.WriteEndObject(); } writer.WriteEndArray(); - writer.WritePropertyName("faces"); + writer.WritePropertyName("Faces"); writer.WriteStartArray(); - foreach (var f in solid.Faces.Values) + foreach (var f in value.Faces.Values) { writer.WriteStartObject(); - writer.WritePropertyName("id"); - writer.WriteValue(f.Id); + writer.WritePropertyName("Id"); + writer.WriteNumberValue(f.Id); - writer.WritePropertyName("outer"); + writer.WritePropertyName("Outer"); writer.WriteStartArray(); foreach (var he in f.Outer.Edges) { - WriteHalfEdge(he, writer, value); + WriteHalfEdge(he, writer); } writer.WriteEndArray(); if (f.Inner != null) { - writer.WritePropertyName("inner"); + writer.WritePropertyName("Inner"); writer.WriteStartArray(); foreach (var loop in f.Inner) @@ -186,7 +198,7 @@ public override void WriteJson(JsonWriter writer, object value, JsonSerializer s writer.WriteStartArray(); foreach (var he in loop.Edges) { - WriteHalfEdge(he, writer, value); + WriteHalfEdge(he, writer); } writer.WriteEndArray(); } @@ -200,15 +212,15 @@ public override void WriteJson(JsonWriter writer, object value, JsonSerializer s writer.WriteEndObject(); } - private void WriteHalfEdge(HalfEdge he, JsonWriter writer, object value) + private void WriteHalfEdge(HalfEdge he, Utf8JsonWriter writer) { writer.WriteStartObject(); writer.WritePropertyName("vertex_id"); - writer.WriteValue(he.Vertex.Id); + writer.WriteNumberValue(he.Vertex.Id); writer.WritePropertyName("edge_id"); - writer.WriteValue(he.Edge.Id); + writer.WriteNumberValue(he.Edge.Id); writer.WritePropertyName("edge_side"); - writer.WriteValue(he.Edge.Left == he ? "left" : "right"); + writer.WriteStringValue(he.Edge.Left == he ? "left" : "right"); writer.WriteEndObject(); } } diff --git a/Elements/src/Serialization/JSON/VectorListToByteArrayConverter.cs b/Elements/src/Serialization/JSON/VectorListToByteArrayConverter.cs index 35feb04c0..dfff33da6 100644 --- a/Elements/src/Serialization/JSON/VectorListToByteArrayConverter.cs +++ b/Elements/src/Serialization/JSON/VectorListToByteArrayConverter.cs @@ -1,36 +1,28 @@ using System; using System.Collections.Generic; +using System.Text.Json; +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Serialization.JSON { - internal class VectorListToByteArrayConverter : JsonConverter + internal class VectorListToByteArrayConverter : JsonConverter> { - public override bool CanRead => false; - - public override bool CanConvert(Type objectType) - { - return objectType == typeof(List); - } - - public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer) + public override List Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) { throw new NotImplementedException(); - } - public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) + public override void Write(Utf8JsonWriter writer, List value, JsonSerializerOptions options) { - var points = value as List; - var valueAsArray = new double[points.Count * 3]; - for (int i = 0; i < points.Count; i++) + var valueAsArray = new double[value.Count * 3]; + for (int i = 0; i < value.Count; i++) { - valueAsArray[i * 3] = points[i].X; - valueAsArray[i * 3 + 1] = points[i].Y; - valueAsArray[i * 3 + 2] = points[i].Z; + valueAsArray[i * 3] = value[i].X; + valueAsArray[i * 3 + 1] = value[i].Y; + valueAsArray[i * 3 + 2] = value[i].Z; } - serializer.Serialize(writer, valueAsArray); + JsonSerializer.Serialize(writer, valueAsArray, options); } } -} \ No newline at end of file +} diff --git a/Elements/src/Serialization/MappingConfiguration.cs b/Elements/src/Serialization/MappingConfiguration.cs index 8f3d8ffd9..21803cab5 100644 --- a/Elements/src/Serialization/MappingConfiguration.cs +++ b/Elements/src/Serialization/MappingConfiguration.cs @@ -1,5 +1,5 @@ -using System; using System.Collections.Generic; +using System.Text.Json.Serialization; using Elements.Geometry; namespace Elements.Serialization @@ -17,6 +17,7 @@ public MappingConfiguration() { this.Layers = new List(); } + /// /// The layer configurations for this model. /// @@ -34,6 +35,7 @@ public class Layer public Layer() { } + /// /// The name of the layer. /// @@ -48,6 +50,8 @@ public Layer() /// /// How items on this layer should have their colors determined. /// + [JsonConverter(typeof(JsonStringEnumConverter))] + public ElementColorSetting ElementColorSetting { get; set; } = ElementColorSetting.ByLayer; /// diff --git a/Elements/src/Serialization/glTF/GltfExtensions.cs b/Elements/src/Serialization/glTF/GltfExtensions.cs index 9937218bc..4d4ab4e4d 100644 --- a/Elements/src/Serialization/glTF/GltfExtensions.cs +++ b/Elements/src/Serialization/glTF/GltfExtensions.cs @@ -17,6 +17,7 @@ using SixLabors.ImageSharp; using Image = glTFLoader.Schema.Image; using System.Reflection; +using System.Diagnostics; [assembly: InternalsVisibleTo("Hypar.Elements.Tests")] [assembly: InternalsVisibleTo("Elements.Benchmarks")] @@ -129,7 +130,13 @@ public static void ToGlTF(this Model model, string path, bool useBinarySerializa /// A byte array representing the model. public static byte[] ToGlTF(this Model model, bool drawEdges = false, bool mergeVertices = false, bool updateElementsRepresentations = true) { + var sw = new Stopwatch(); + sw.Start(); + var gltf = InitializeGlTF(model, updateElementsRepresentations, out var buffers, out _, drawEdges, mergeVertices); + Debug.WriteLine($"glTF: {sw.ElapsedMilliseconds}ms total for initializing the glTF"); + sw.Restart(); + if (gltf == null) { return null; @@ -138,13 +145,14 @@ public static byte[] ToGlTF(this Model model, bool drawEdges = false, bool merge byte[] bytes; using (var ms = new MemoryStream()) - using (var writer = new BinaryWriter(ms)) { gltf.SaveBinaryModel(mergedBuffer, ms); // Avoid a copy of this array by using GetBuffer() instead // of ToArray() bytes = ms.GetBuffer(); } + Debug.WriteLine($"glTF: {sw.ElapsedMilliseconds}ms for saving the binary model"); + sw.Restart(); return bytes; } @@ -911,6 +919,7 @@ private static bool SaveGlb(Model model, string path, bool updateElementsReprese var mergedBuffer = gltf.CombineBufferAndFixRefs(buffers); gltf.SaveBinaryModel(mergedBuffer, path); + return true; } @@ -925,7 +934,9 @@ private static bool SaveGltf(Model model, string path, bool updateElementsRepres // Buffers must be saved first, URIs may be set or modified inside this method. gltf.SaveBuffersAndAddUris(path, buffers); + gltf.SaveModel(path); + return true; } @@ -942,6 +953,8 @@ internal static Gltf InitializeGlTF(Model model, bool drawEdges = false, bool mergeVertices = false) { + var sw = new Stopwatch(); + errors = new List(); var schemaBuffer = new glTFLoader.Schema.Buffer(); var schemaBuffers = new List { schemaBuffer }; diff --git a/Elements/src/Snapping/SnappingPoints.cs b/Elements/src/Snapping/SnappingPoints.cs index 8c00dfe61..53117d75f 100644 --- a/Elements/src/Snapping/SnappingPoints.cs +++ b/Elements/src/Snapping/SnappingPoints.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; +using System.Text.Json.Serialization; using Elements.Geometry; using Elements.Serialization.JSON; -using Newtonsoft.Json; namespace Elements { @@ -24,14 +24,14 @@ public SnappingPoints(IEnumerable points, SnappingEdgeMode edgeMode = S /// /// Snapping points. /// - [JsonProperty("points")] + [JsonPropertyName("points")] [JsonConverter(typeof(VectorListToByteArrayConverter))] public List Points { get; } = new List(); /// /// The modes for creating snap edges. /// - [JsonProperty("edgeMode")] + [JsonPropertyName("edgeMode")] public SnappingEdgeMode EdgeMode { get; set; } } } \ No newline at end of file diff --git a/Elements/src/SolidCeiling.cs b/Elements/src/SolidCeiling.cs index 357e6d3a7..01b74d56f 100644 --- a/Elements/src/SolidCeiling.cs +++ b/Elements/src/SolidCeiling.cs @@ -1,7 +1,7 @@ using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Interfaces; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; diff --git a/Elements/src/Space.cs b/Elements/src/Space.cs index 466086699..b02dc2e48 100644 --- a/Elements/src/Space.cs +++ b/Elements/src/Space.cs @@ -1,9 +1,10 @@ using Elements.Geometry; using System; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System.Collections.Generic; using System.Linq; +using Elements.Serialization.JSON; namespace Elements { @@ -18,6 +19,7 @@ public class Space : GeometricElement /// /// The profile of the space. /// + [JsonConverter(typeof(ElementConverter))] public Profile Profile { get; set; } /// diff --git a/Elements/src/Spatial/AdaptiveGrid/AdaptiveGrid.cs b/Elements/src/Spatial/AdaptiveGrid/AdaptiveGrid.cs index 1fd7530da..146dfdc2b 100644 --- a/Elements/src/Spatial/AdaptiveGrid/AdaptiveGrid.cs +++ b/Elements/src/Spatial/AdaptiveGrid/AdaptiveGrid.cs @@ -1,6 +1,5 @@ using Elements.Geometry; using Elements.Search; -using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; @@ -27,14 +26,12 @@ public class AdaptiveGrid /// /// Vertices by ID. /// - [JsonProperty] - private Dictionary _vertices = new Dictionary(); + public Dictionary Vertices = new Dictionary(); /// /// Edges by ID. /// - [JsonProperty] - private Dictionary _edges = new Dictionary(); + public Dictionary Edges = new Dictionary(); // See Edge.GetHash for how edges are identified as unique. private Dictionary _edgesLookup = new Dictionary(); @@ -325,7 +322,7 @@ public bool SubtractObstacle(Obstacle obstacle) /// public Vertex GetVertex(ulong vertexId) { - this._vertices.TryGetValue(vertexId, out var vertex); + this.Vertices.TryGetValue(vertexId, out var vertex); return vertex; } @@ -335,7 +332,7 @@ public Vertex GetVertex(ulong vertexId) /// public List GetVertices() { - return this._vertices.Values.ToList(); + return this.Vertices.Values.ToList(); } /// @@ -344,7 +341,7 @@ public List GetVertices() /// public List GetEdges() { - return this._edges.Values.ToList(); + return this.Edges.Values.ToList(); } /// @@ -374,7 +371,7 @@ public Vertex AddVertex(Vector3 point) id = this._vertexId; var vertex = new Vertex(id, point); AddToXYZLookup(vertex, yzLookup, zLookup); - _vertices[id] = vertex; + Vertices[id] = vertex; this._vertexId++; return vertex; } @@ -676,7 +673,7 @@ public void RemoveEdge(Edge edge) return; } - if (!this._edges.Remove(edge.Id)) + if (!this.Edges.Remove(edge.Id)) { return; } @@ -776,17 +773,18 @@ public AdaptiveGrid Clone() clone._edgeId = _edgeId; clone._vertexId = _vertexId; - clone._edges = _edges.ToDictionary( + clone.Edges = Edges.ToDictionary( e => e.Key, e => new Edge(e.Value.Id, e.Value.StartId, e.Value.EndId)); - clone._vertices = _vertices.ToDictionary( + clone.Vertices = Vertices.ToDictionary( e => e.Key, - e => { + e => + { var v = new Vertex(e.Value.Id, e.Value.Point); foreach (var edge in e.Value.Edges) { - v.Edges.Add(clone._edges[edge.Id]); + v.Edges.Add(clone.Edges[edge.Id]); } return v; }); @@ -839,7 +837,7 @@ private Edge AddInsertEdge(ulong vertexId1, ulong vertexId2) edgeId = edge.Id; this._edgesLookup[hash] = edgeId; - this._edges.Add(edgeId, edge); + this.Edges.Add(edgeId, edge); startVertex.Edges.Add(edge); endVertex.Edges.Add(edge); @@ -849,7 +847,7 @@ private Edge AddInsertEdge(ulong vertexId1, ulong vertexId2) } else { - this._edges.TryGetValue(edgeId, out var edge); + this.Edges.TryGetValue(edgeId, out var edge); return edge; } } @@ -1306,8 +1304,8 @@ private Vertex InsertFinalCut( private void DeleteVertex(ulong id) { - var vertex = _vertices[id]; - _vertices.Remove(id); + var vertex = Vertices[id]; + Vertices.Remove(id); DeleteFromXYZLookup(vertex); } @@ -1371,15 +1369,15 @@ private Transform FromGridUVTransform(Grid2d grid) points.Sort((p, q) => Math.Sign(lineVector.Dot(p.Point - q.Point))); for (int i = 1; i < points.Count; ++i) { - resultingSegments.Add((points[i-1], points[i])); + resultingSegments.Add((points[i - 1], points[i])); } return resultingSegments; } private List<(Vertex Start, Vertex End)> SplitLineSegmentsWithParameters( - IEnumerable segmentsToSplit, - double lineParameter, - List parametersOnLine, + IEnumerable segmentsToSplit, + double lineParameter, + List parametersOnLine, bool isU, List collectedPoints, Transform fromGrid) diff --git a/Elements/src/Spatial/AdaptiveGrid/Vertex.cs b/Elements/src/Spatial/AdaptiveGrid/Vertex.cs index fc63149ac..6697f003e 100644 --- a/Elements/src/Spatial/AdaptiveGrid/Vertex.cs +++ b/Elements/src/Spatial/AdaptiveGrid/Vertex.cs @@ -1,5 +1,5 @@ using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; diff --git a/Elements/src/Spatial/CellComplex/Cell.cs b/Elements/src/Spatial/CellComplex/Cell.cs index 4d990ebd5..1954f0b53 100644 --- a/Elements/src/Spatial/CellComplex/Cell.cs +++ b/Elements/src/Spatial/CellComplex/Cell.cs @@ -3,7 +3,7 @@ using System.Linq; using Elements.Geometry.Solids; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Spatial.CellComplex { @@ -68,7 +68,7 @@ internal Cell(CellComplex cellComplex, ulong id, List faces, Face bottomFa /// Used for deserialization only! /// [JsonConstructor] - internal Cell(ulong id, List faceIds, ulong? bottomFaceId, ulong? topFaceId) : base(id, null) + public Cell(ulong id, List faceIds, ulong? bottomFaceId, ulong? topFaceId) : base(id, null) { this.FaceIds = faceIds; this.BottomFaceId = bottomFaceId; diff --git a/Elements/src/Spatial/CellComplex/CellComplex.cs b/Elements/src/Spatial/CellComplex/CellComplex.cs index 958cd2463..b99d3da1f 100644 --- a/Elements/src/Spatial/CellComplex/CellComplex.cs +++ b/Elements/src/Spatial/CellComplex/CellComplex.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Elements.Geometry; -using Newtonsoft.Json; namespace Elements.Spatial.CellComplex { @@ -12,7 +12,7 @@ namespace Elements.Spatial.CellComplex /// /// [!code-csharp[Main](../../Elements/test/CellComplexTests.cs?name=example)] /// - public class CellComplex : Elements.Element + public class CellComplex : Element { /// /// Tolerance for points being considered the same. @@ -35,38 +35,32 @@ public class CellComplex : Elements.Element /// /// Vertices by ID. /// - [JsonProperty] - private Dictionary _vertices = new Dictionary(); + public Dictionary Vertices = new Dictionary(); /// /// U or V directions by ID. /// - [JsonProperty] - private Dictionary _orientations = new Dictionary(); + public Dictionary Orientations = new Dictionary(); /// /// Edges by ID. /// - [JsonProperty] - private Dictionary _edges = new Dictionary(); + public Dictionary Edges = new Dictionary(); /// /// DirectedEdges by ID. /// - [JsonProperty] - private Dictionary _directedEdges = new Dictionary(); + public Dictionary DirectedEdges = new Dictionary(); /// /// Faces by ID. /// - [JsonProperty] - private Dictionary _faces = new Dictionary(); + public Dictionary Faces = new Dictionary(); /// /// Cells by ID. /// - [JsonProperty] - private Dictionary _cells = new Dictionary(); + public Dictionary Cells = new Dictionary(); // Vertex lookup by x, y, z coordinate. private Dictionary>> _verticesLookup = new Dictionary>>(); @@ -78,7 +72,7 @@ public class CellComplex : Elements.Element private Dictionary _edgesLookup = new Dictionary(); // Same as edgesLookup, with an addition level of dictionary for whether lesserVertexId is the start point or not - private Dictionary<(ulong, ulong), Dictionary> _directedEdgesLookup = new Dictionary<(ulong, ulong), Dictionary>(); + private Dictionary<(ulong, ulong), Dictionary> _directedEdgesLookup = new Dictionary<(ulong, ulong), Dictionary>(); // See Face.GetHash for how faces are identified as unique. private Dictionary _facesLookup = new Dictionary(); @@ -88,45 +82,56 @@ public class CellComplex : Elements.Element /// /// Optional ID: If blank, a new Guid will be created. /// Optional name of your CellComplex. - /// - public CellComplex(Guid id = default(Guid), string name = null) : base(id != default(Guid) ? id : Guid.NewGuid(), name) { } + public CellComplex(Guid id = default(Guid), + string name = null) : base(id != default(Guid) ? id : Guid.NewGuid(), + name) + { } + + // [JsonConstructor] + // public CellComplex( + // Dictionary vertices, + // Dictionary orientations, + // Dictionary edges, + // Dictionary directedEdges, + // Dictionary faces, + // Dictionary cells + // ) : this(Guid.NewGuid(), "Foo", vertices, orientations, edges, directedEdges, faces, cells) { } /// /// This constructor is intended for serialization and deserialization only. /// /// /// - /// - /// - /// - /// - /// - /// - /// + /// + /// + /// + /// + /// + /// [JsonConstructor] - internal CellComplex( + public CellComplex( Guid id, string name, - Dictionary _vertices, - Dictionary _orientations, - Dictionary _edges, - Dictionary _directedEdges, - Dictionary _faces, - Dictionary _cells + Dictionary vertices, + Dictionary orientations, + Dictionary edges, + Dictionary directedEdges, + Dictionary faces, + Dictionary cells ) : base(id, name) { - foreach (var vertex in _vertices.Values) + foreach (var vertex in vertices.Values) { var added = this.AddVertexOrOrientation(vertex.Value, vertex.Id); added.Name = vertex.Name; } - foreach (var orientation in _orientations.Values) + foreach (var orientation in orientations.Values) { this.AddVertexOrOrientation(orientation.Value, orientation.Id); } - foreach (var edge in _edges.Values) + foreach (var edge in edges.Values) { if (!this.AddEdge(new List() { edge.StartVertexId, edge.EndVertexId }, edge.Id, out var addedEdge)) { @@ -134,7 +139,7 @@ Dictionary _cells } } - foreach (var directedEdge in _directedEdges.Values) + foreach (var directedEdge in directedEdges.Values) { var edge = this.GetEdge(directedEdge.EdgeId); if (!this.AddDirectedEdge(edge, edge.StartVertexId == directedEdge.StartVertexId, directedEdge.Id, out var addedDirectedEdge)) @@ -143,7 +148,7 @@ Dictionary _cells } } - foreach (var face in _faces.Values) + foreach (var face in faces.Values) { face.CellComplex = this; // CellComplex not included on deserialization, add it back for processing even though we will discard this and create a new one var polygon = face.GetGeometry(); @@ -154,7 +159,7 @@ Dictionary _cells } } - foreach (var cell in _cells.Values) + foreach (var cell in cells.Values) { var cellFaces = cell.FaceIds.Select(fId => this.GetFace(fId)).ToList(); var bottomFace = this.GetFace(cell.BottomFaceId); @@ -255,16 +260,16 @@ private DirectedEdge AddDirectedEdge(Line line) /// /// /// Whether the cell was successfully added. Will be false if cellId already exists. - private Boolean AddCell(ulong cellId, List faces, Face bottomFace, Face topFace, out Cell cell) + private bool AddCell(ulong cellId, List faces, Face bottomFace, Face topFace, out Cell cell) { - if (this._cells.ContainsKey(cellId)) + if (this.Cells.ContainsKey(cellId)) { cell = null; return false; } cell = new Cell(this, cellId, faces, bottomFace, topFace); - this._cells.Add(cell.Id, cell); + this.Cells.Add(cell.Id, cell); foreach (var face in faces) { @@ -284,7 +289,7 @@ private Boolean AddCell(ulong cellId, List faces, Face bottomFace, Face to /// /// /// Whether the face was successfully added. Will be false if idIfNew already exists - private Boolean AddFace(Polygon polygon, ulong idIfNew, Orientation u, Orientation v, out Face face) + private bool AddFace(Polygon polygon, ulong idIfNew, Orientation u, Orientation v, out Face face) { var lines = polygon.Segments(); var directedEdges = new List(); @@ -300,7 +305,7 @@ private Boolean AddFace(Polygon polygon, ulong idIfNew, Orientation u, Orientati face = new Face(this, idIfNew, directedEdges, u, v); faceId = face.Id; this._facesLookup.Add(hash, faceId); - this._faces.Add(faceId, face); + this.Faces.Add(faceId, face); foreach (var directedEdge in directedEdges) { @@ -312,7 +317,7 @@ private Boolean AddFace(Polygon polygon, ulong idIfNew, Orientation u, Orientati } else { - this._faces.TryGetValue(faceId, out face); + this.Faces.TryGetValue(faceId, out face); return false; } } @@ -325,7 +330,7 @@ private Boolean AddFace(Polygon polygon, ulong idIfNew, Orientation u, Orientati /// /// /// Whether the directedEdge was successfully added. Will be false if idIfNew already exists. - private Boolean AddDirectedEdge(Edge edge, Boolean edgeTupleIsInOrder, ulong idIfNew, out DirectedEdge directedEdge) + private bool AddDirectedEdge(Edge edge, bool edgeTupleIsInOrder, ulong idIfNew, out DirectedEdge directedEdge) { var edgeTuple = (edge.StartVertexId, edge.EndVertexId); @@ -341,7 +346,7 @@ private Boolean AddDirectedEdge(Edge edge, Boolean edgeTupleIsInOrder, ulong idI directedEdgeId = directedEdge.Id; directedEdgeDict.Add(edgeTupleIsInOrder, directedEdgeId); - this._directedEdges.Add(directedEdgeId, directedEdge); + this.DirectedEdges.Add(directedEdgeId, directedEdge); edge.DirectedEdges.Add(directedEdge); @@ -351,7 +356,7 @@ private Boolean AddDirectedEdge(Edge edge, Boolean edgeTupleIsInOrder, ulong idI } else { - this._directedEdges.TryGetValue(directedEdgeId, out directedEdge); + this.DirectedEdges.TryGetValue(directedEdgeId, out directedEdge); return false; } @@ -364,7 +369,7 @@ private Boolean AddDirectedEdge(Edge edge, Boolean edgeTupleIsInOrder, ulong idI /// /// /// Whether the edge was successfully added. Will be false if idIfNew already exists. - private Boolean AddEdge(List vertexIds, ulong idIfNew, out Edge edge) + private bool AddEdge(List vertexIds, ulong idIfNew, out Edge edge) { var hash = Edge.GetHash(vertexIds); @@ -374,7 +379,7 @@ private Boolean AddEdge(List vertexIds, ulong idIfNew, out Edge edge) edgeId = edge.Id; this._edgesLookup[hash] = edgeId; - this._edges.Add(edgeId, edge); + this.Edges.Add(edgeId, edge); this.GetVertex(edge.StartVertexId).Edges.Add(edge); this.GetVertex(edge.EndVertexId).Edges.Add(edge); @@ -385,7 +390,7 @@ private Boolean AddEdge(List vertexIds, ulong idIfNew, out Edge edge) } else { - this._edges.TryGetValue(edgeId, out edge); + this.Edges.TryGetValue(edgeId, out edge); return false; } } @@ -401,7 +406,7 @@ private Dictionary GetVertexOrOrientationDictionary() where T : Ver { throw new Exception("Unsupported type provided, expected Vertex or Orientation"); } - return typeof(T) == typeof(Orientation) ? this._orientations as Dictionary : this._vertices as Dictionary; + return typeof(T) == typeof(Orientation) ? this.Orientations as Dictionary : this.Vertices as Dictionary; } /// @@ -462,7 +467,7 @@ private T AddVertexOrOrientation(Vector3 point, ulong id) where T : VertexBas /// ID of created or existing item. /// Vertex or Orientation. /// Whether the item was successfully added. Will be false if idIfNew already exists. - private Boolean AddVertexOrOrientation(Vector3 point, ulong idIfNew, out ulong id) where T : VertexBase + private bool AddVertexOrOrientation(Vector3 point, ulong idIfNew, out ulong id) where T : VertexBase { var lookups = this.GetVertexOrOrientationLookup(); var dict = this.GetVertexOrOrientationDictionary(); @@ -496,7 +501,7 @@ private Boolean AddVertexOrOrientation(Vector3 point, ulong idIfNew, out ulon /// public Vertex GetVertex(ulong vertexId) { - this._vertices.TryGetValue(vertexId, out var vertex); + this.Vertices.TryGetValue(vertexId, out var vertex); return vertex; } @@ -506,7 +511,7 @@ public Vertex GetVertex(ulong vertexId) /// public List GetVertices() { - return this._vertices.Values.ToList(); + return this.Vertices.Values.ToList(); } /// @@ -520,7 +525,7 @@ public Orientation GetOrientation(ulong? orientationId) { return null; } - this._orientations.TryGetValue((ulong)orientationId, out var orientation); + this.Orientations.TryGetValue((ulong)orientationId, out var orientation); return orientation; } @@ -530,7 +535,7 @@ public Orientation GetOrientation(ulong? orientationId) /// internal List GetOrientations() { - return this._orientations.Values.ToList(); + return this.Orientations.Values.ToList(); } /// @@ -540,7 +545,7 @@ internal List GetOrientations() /// public Edge GetEdge(ulong edgeId) { - this._edges.TryGetValue(edgeId, out var edge); + this.Edges.TryGetValue(edgeId, out var edge); return edge; } @@ -550,7 +555,7 @@ public Edge GetEdge(ulong edgeId) /// public List GetEdges() { - return this._edges.Values.ToList(); + return this.Edges.Values.ToList(); } /// @@ -564,7 +569,7 @@ public Face GetFace(ulong? faceId) { return null; } - this._faces.TryGetValue((ulong)faceId, out var face); + this.Faces.TryGetValue((ulong)faceId, out var face); return face; } @@ -574,7 +579,7 @@ public Face GetFace(ulong? faceId) /// public List GetFaces() { - return this._faces.Values.ToList(); + return this.Faces.Values.ToList(); } /// @@ -584,7 +589,7 @@ public List GetFaces() /// public Cell GetCell(ulong cellId) { - this._cells.TryGetValue(cellId, out var cell); + this.Cells.TryGetValue(cellId, out var cell); return cell; } @@ -594,7 +599,7 @@ public Cell GetCell(ulong cellId) /// public List GetCells() { - return this._cells.Values.ToList(); + return this.Cells.Values.ToList(); } /// @@ -644,7 +649,7 @@ public Cell GetClosestCell(Vector3 point) /// internal DirectedEdge GetDirectedEdge(ulong directedEdgeId) { - this._directedEdges.TryGetValue(directedEdgeId, out var directedEdge); + this.DirectedEdges.TryGetValue(directedEdgeId, out var directedEdge); return directedEdge; } @@ -654,7 +659,7 @@ internal DirectedEdge GetDirectedEdge(ulong directedEdgeId) /// internal List GetDirectedEdges() { - return this._directedEdges.Values.ToList(); + return this.DirectedEdges.Values.ToList(); } /// @@ -682,7 +687,7 @@ public List GetVerticesMatchingXY(double x, double y, Nullable f /// The ID of the Vertex, if a match is found. /// Amount of tolerance in the search against each component of the coordinate. /// - public Boolean VertexExists(Vector3 point, out ulong id, Nullable fuzzyFactor = null) + public bool VertexExists(Vector3 point, out ulong id, Nullable fuzzyFactor = null) { return ValueExists(this._verticesLookup, point, out id, fuzzyFactor); } @@ -713,7 +718,7 @@ private static HashSet AddValue(Dictionary> dict, u /// Whether to create the dictionary address if it didn't previously exist. /// Amount of tolerance in the search against each component of the coordinate. /// The created or existing last level of values. This can be null if the dictionary address didn't exist previously, and we chose not to add it. - private static Dictionary GetAddressParent(Dictionary>> dict, Vector3 point, Boolean addAddressIfNonExistent = false, Nullable fuzzyFactor = null) + private static Dictionary GetAddressParent(Dictionary>> dict, Vector3 point, bool addAddressIfNonExistent = false, Nullable fuzzyFactor = null) { if (!TryGetValue>>(dict, point.X, out var yzDict, fuzzyFactor)) { @@ -752,7 +757,7 @@ private static Dictionary GetAddressParent(DictionaryID of the found vertex or orientation, if found. /// Amount of tolerance in the search against each component of the coordinate. /// - private static Boolean ValueExists(Dictionary>> dict, Vector3 point, out ulong id, Nullable fuzzyFactor = null) + private static bool ValueExists(Dictionary>> dict, Vector3 point, out ulong id, Nullable fuzzyFactor = null) { var zDict = GetAddressParent(dict, point, fuzzyFactor: fuzzyFactor); if (zDict == null) @@ -772,7 +777,7 @@ private static Boolean ValueExists(DictionaryAmount of tolerance in the search for the key. /// The type of the dictionary values. /// Whether a match was found. - private static Boolean TryGetValue(Dictionary dict, double key, out T value, Nullable fuzzyFactor = null) + private static bool TryGetValue(Dictionary dict, double key, out T value, Nullable fuzzyFactor = null) { if (dict.TryGetValue(key, out value)) { diff --git a/Elements/src/Spatial/CellComplex/ChildBase.cs b/Elements/src/Spatial/CellComplex/ChildBase.cs index 3803c92d6..6e65c4fd0 100644 --- a/Elements/src/Spatial/CellComplex/ChildBase.cs +++ b/Elements/src/Spatial/CellComplex/ChildBase.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; namespace Elements.Spatial.CellComplex diff --git a/Elements/src/Spatial/CellComplex/DirectedEdge.cs b/Elements/src/Spatial/CellComplex/DirectedEdge.cs index 0244a646a..802dbadea 100644 --- a/Elements/src/Spatial/CellComplex/DirectedEdge.cs +++ b/Elements/src/Spatial/CellComplex/DirectedEdge.cs @@ -1,4 +1,4 @@ -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System.Collections.Generic; using System.Linq; @@ -10,13 +10,12 @@ namespace Elements.Spatial.CellComplex /// There is a maximum of two DirectedEdges per Edge. /// This class is completely internal and only used for utilities inside of CellComplex. /// - internal class DirectedEdge : EdgeBase + public class DirectedEdge : EdgeBase { /// /// ID of the associated, direction-agnostic Edge. /// - [JsonProperty] - internal ulong EdgeId; + public ulong EdgeId; /// /// The unique Faces that are associated with this DirectedEdge. @@ -55,7 +54,7 @@ internal DirectedEdge(CellComplex cellComplex, ulong id, Edge edge, bool edgeOrd /// Used for deserialization only! /// [JsonConstructor] - internal DirectedEdge(ulong id, ulong edgeId, ulong startVertexId, ulong endVertexId) : base(id, null) + public DirectedEdge(ulong id, ulong edgeId, ulong startVertexId, ulong endVertexId) : base(id, null) { this.EdgeId = edgeId; this.StartVertexId = startVertexId; diff --git a/Elements/src/Spatial/CellComplex/Edge.cs b/Elements/src/Spatial/CellComplex/Edge.cs index 11b2ef06f..68615843e 100644 --- a/Elements/src/Spatial/CellComplex/Edge.cs +++ b/Elements/src/Spatial/CellComplex/Edge.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Elements.Geometry; namespace Elements.Spatial.CellComplex @@ -39,9 +39,8 @@ internal Edge(CellComplex cellComplex, ulong id, ulong vertexId1, ulong vertexId /// /// /// - /// [JsonConstructor] - internal Edge(ulong id, ulong startVertexId, ulong endVertexId) : base(id, null) + public Edge(ulong id, ulong startVertexId, ulong endVertexId) : base(id, null) { this.SetVerticesFromIds(startVertexId, endVertexId); } diff --git a/Elements/src/Spatial/CellComplex/Face.cs b/Elements/src/Spatial/CellComplex/Face.cs index a9d208283..3d7c885d8 100644 --- a/Elements/src/Spatial/CellComplex/Face.cs +++ b/Elements/src/Spatial/CellComplex/Face.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Elements.Geometry; namespace Elements.Spatial.CellComplex @@ -19,14 +19,12 @@ public class Face : ChildBase, Interfaces.IHasNeighbors /// ID of U orientation. /// - [JsonProperty] - private ulong? _orientationUId; + public ulong? OrientationUId; /// /// ID of V orientation. /// - [JsonProperty] - private ulong? _orientationVId; + public ulong? OrientationVId; /// /// Cells that reference this Face. @@ -48,11 +46,11 @@ internal Face(CellComplex cellComplex, ulong id, List directedEdge this.DirectedEdgeIds = directedEdges.Select(ds => ds.Id).ToList(); if (u != null) { - this._orientationUId = u.Id; + this.OrientationUId = u.Id; } if (v != null) { - this._orientationVId = v.Id; + this.OrientationVId = v.Id; } } @@ -60,12 +58,12 @@ internal Face(CellComplex cellComplex, ulong id, List directedEdge /// Used for deserialization only! /// [JsonConstructor] - internal Face(ulong id, List directedEdgeIds, ulong? _orientationUId = null, ulong? _orientationVId = null) : base(id, null) + public Face(ulong id, List directedEdgeIds, ulong? orientationUId, ulong? orientationVId) : base(id, null) { this.Id = id; this.DirectedEdgeIds = directedEdgeIds; - this._orientationUId = _orientationUId; - this._orientationVId = _orientationVId; + this.OrientationUId = orientationUId; + this.OrientationVId = orientationVId; } /// @@ -192,7 +190,7 @@ public Cell GetClosestCell(Vector3 point) /// public (Orientation U, Orientation V) GetOrientation() { - return (U: this.CellComplex.GetOrientation(this._orientationUId), V: this.CellComplex.GetOrientation(this._orientationVId)); + return (U: this.CellComplex.GetOrientation(this.OrientationUId), V: this.CellComplex.GetOrientation(this.OrientationVId)); } /// diff --git a/Elements/src/Spatial/CellComplex/Interfaces/IDistanceTo.cs b/Elements/src/Spatial/CellComplex/Interfaces/IDistanceTo.cs index a47006669..945aebdb9 100644 --- a/Elements/src/Spatial/CellComplex/Interfaces/IDistanceTo.cs +++ b/Elements/src/Spatial/CellComplex/Interfaces/IDistanceTo.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; namespace Elements.Spatial.CellComplex.Interfaces diff --git a/Elements/src/Spatial/CellComplex/Interfaces/IHasNeighbors.cs b/Elements/src/Spatial/CellComplex/Interfaces/IHasNeighbors.cs index 56b27bd65..629e5d433 100644 --- a/Elements/src/Spatial/CellComplex/Interfaces/IHasNeighbors.cs +++ b/Elements/src/Spatial/CellComplex/Interfaces/IHasNeighbors.cs @@ -1,7 +1,7 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; namespace Elements.Spatial.CellComplex.Interfaces diff --git a/Elements/src/Spatial/CellComplex/Orientation.cs b/Elements/src/Spatial/CellComplex/Orientation.cs index da235e192..fc01fc55a 100644 --- a/Elements/src/Spatial/CellComplex/Orientation.cs +++ b/Elements/src/Spatial/CellComplex/Orientation.cs @@ -1,3 +1,4 @@ +using System.Text.Json.Serialization; using Elements.Geometry; namespace Elements.Spatial.CellComplex @@ -7,6 +8,16 @@ namespace Elements.Spatial.CellComplex /// public class Orientation : VertexBase { + /// + /// Create an orientation. + /// + /// + /// + /// + /// + [JsonConstructor] + public Orientation(ulong id, Vector3 value, string name = null) : base(id, value, name) { } + /// /// Represents a unique orientation direction within a CellComplex. /// Is not intended to be created or modified outside of the CellComplex class code. @@ -15,8 +26,7 @@ public class Orientation : VertexBase /// /// The orientation direction /// Optional name - /// - internal Orientation(CellComplex cellComplex, ulong id, Vector3 orientation, string name = null) : base(cellComplex, id, orientation, name) { } + public Orientation(CellComplex cellComplex, ulong id, Vector3 orientation, string name = null) : base(cellComplex, id, orientation, name) { } /// /// Do not use this method: it just throws an exception. diff --git a/Elements/src/Spatial/CellComplex/Vertex.cs b/Elements/src/Spatial/CellComplex/Vertex.cs index 21999aa7e..4b0f2edc9 100644 --- a/Elements/src/Spatial/CellComplex/Vertex.cs +++ b/Elements/src/Spatial/CellComplex/Vertex.cs @@ -1,6 +1,6 @@ using Elements.Geometry; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System.Linq; namespace Elements.Spatial.CellComplex @@ -22,19 +22,18 @@ public class Vertex : VertexBase /// /// CellComplex that this belongs to /// - /// Location of the vertex + /// Location of the vertex /// Optional name - internal Vertex(CellComplex cellComplex, ulong id, Vector3 point, string name = null) : base(cellComplex, id, point, name) { } + internal Vertex(CellComplex cellComplex, ulong id, Vector3 value, string name = null) : base(cellComplex, id, value, name) { } /// /// For deserialization only! /// /// - /// + /// /// - /// [JsonConstructor] - internal Vertex(ulong id, Vector3 point, string name = null) : base(id, point, name) { } + public Vertex(ulong id, Vector3 value, string name = null) : base(id, value, name) { } /// /// Get associated Edges. diff --git a/Elements/src/Spatial/CellComplex/VertexBase.cs b/Elements/src/Spatial/CellComplex/VertexBase.cs index bbf60e543..639cc9ced 100644 --- a/Elements/src/Spatial/CellComplex/VertexBase.cs +++ b/Elements/src/Spatial/CellComplex/VertexBase.cs @@ -1,5 +1,5 @@ using Elements.Geometry; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Spatial.CellComplex { @@ -36,20 +36,18 @@ internal VertexBase(CellComplex cellComplex, ulong id, Vector3 point, string nam /// For deserialization only! /// /// - /// + /// /// - /// [JsonConstructor] - internal VertexBase(ulong id, Vector3 point, string name = null) : base(id, null) + public VertexBase(ulong id, Vector3 value, string name = null) : base(id, null) { - this.Value = point; + this.Value = value; this.Name = name; } /// /// Get the Vector3 that represents this Vertex or Orientation. /// - /// public override Vector3 GetGeometry() { return this.Value; @@ -59,7 +57,6 @@ public override Vector3 GetGeometry() /// Get the shortest distance from a point to the geometry representing this vertex. /// /// - /// public override double DistanceTo(Vector3 point) { return point.DistanceTo(this.GetGeometry()); diff --git a/Elements/src/Spatial/Grid1d.cs b/Elements/src/Spatial/Grid1d.cs index 8b7388065..954d2e46a 100644 --- a/Elements/src/Spatial/Grid1d.cs +++ b/Elements/src/Spatial/Grid1d.cs @@ -2,7 +2,8 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry; -using Newtonsoft.Json; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; namespace Elements.Spatial { @@ -12,7 +13,6 @@ namespace Elements.Spatial /// /// [!code-csharp[Main](../../Elements/test/Grid1dTests.cs?name=example)] /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public class Grid1d { #region Properties @@ -20,16 +20,17 @@ public class Grid1d /// /// An optional type designation for this cell. /// + [JsonPropertyName("Type")] public string Type { get; set; } /// /// Child cells of this Grid. If null, this Grid is a complete cell with no subdivisions. /// - [JsonProperty("Cells", NullValueHandling = NullValueHandling.Ignore)] + [JsonPropertyName("Cells")] public List Cells { get => cells; - private set + set { //invalidate the 2d grid this belongs to parent?.TryInvalidateGrid(); @@ -40,6 +41,7 @@ private set /// /// Numerical domain of this Grid /// + [JsonPropertyName("Domain")] public Domain1d Domain { get; } /// @@ -84,8 +86,8 @@ public BoundedCurve Curve // we have to maintain an internal curve domain because subsequent subdivisions of a grid // based on a curve retain the entire curve; this domain allows us to map from the subdivided // domain back to the original curve. - [JsonProperty("CurveDomain")] - internal readonly Domain1d curveDomain; + [JsonPropertyName("CurveDomain")] + public readonly Domain1d curveDomain; // if this 1d grid is the axis of a 2d grid, this is where we store that reference. If not, it will be null private Grid2d parent; @@ -94,8 +96,8 @@ public BoundedCurve Curve // is useful in serialization so we only store the base curve once. private Grid1d topLevelParentGrid; - [JsonProperty("TopLevelParentCurve", NullValueHandling = NullValueHandling.Ignore)] - private Curve topLevelParentCurve + [JsonPropertyName("TopLevelParentCurve")] + public Curve topLevelParentCurve { get { diff --git a/Elements/src/Spatial/Grid2d.cs b/Elements/src/Spatial/Grid2d.cs index b1ba8bd04..3c04b8857 100644 --- a/Elements/src/Spatial/Grid2d.cs +++ b/Elements/src/Spatial/Grid2d.cs @@ -3,7 +3,8 @@ using System.Linq; using Elements.Geometry; using Elements.Geometry.Interfaces; -using Newtonsoft.Json; +using Elements.Serialization.JSON; +using System.Text.Json.Serialization; namespace Elements.Spatial { @@ -13,7 +14,6 @@ namespace Elements.Spatial /// /// [!code-csharp[Main](../../Elements/test/Grid2dTests.cs?name=example)] /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public class Grid2d { #region Properties @@ -49,30 +49,28 @@ public string Type /// /// A transform from grid space to world space /// - [JsonProperty("FromGrid")] - internal Transform fromGrid = new Transform(); + [JsonPropertyName("FromGrid")] + public Transform fromGrid = new Transform(); /// /// A transform from world space to grid space /// - [JsonProperty("ToGrid")] - internal Transform toGrid = new Transform(); + [JsonPropertyName("ToGrid")] + public Transform toGrid = new Transform(); - [JsonProperty("UDomainInternal")] - private Domain1d UDomainInternal = new Domain1d(0, 0); + public Domain1d UDomainInternal = new Domain1d(0, 0); - [JsonProperty("VDomainInternal")] - private Domain1d VDomainInternal = new Domain1d(0, 0); + public Domain1d VDomainInternal = new Domain1d(0, 0); /// /// Any boundary curves, transformed to grid space. /// - [JsonProperty("BoundariesInGridSpace", NullValueHandling = NullValueHandling.Ignore)] - private IList boundariesInGridSpace; + [JsonPropertyName("BoundariesInGridSpace")] + public IList boundariesInGridSpace; + private List> cells; - [JsonProperty("ModifiedChildCells", NullValueHandling = NullValueHandling.Ignore)] - internal List ModifiedChildCells => GetModifiedChildCells(); + public List ModifiedChildCells => GetModifiedChildCells(); // for serialization purposes, we store only those cells that are not a natural consequence of the U and V 1d grids composing this grid. private List GetModifiedChildCells() @@ -161,12 +159,20 @@ public Grid2d() /// [JsonConstructor] [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)] - public Grid2d(Transform fromGrid, Transform toGrid, Domain1d uDomainInternal, Domain1d vDomainInternal, List boundariesInGridSpace, Grid1d u, Grid1d v, string type, List modifiedChildCells) + public Grid2d(Transform fromGrid, + Transform toGrid, + Domain1d uDomainInternal, + Domain1d vDomainInternal, + IList boundariesInGridSpace, + Grid1d u, + Grid1d v, + string type, + List modifiedChildCells) { this.fromGrid = fromGrid; this.toGrid = toGrid; this.UDomainInternal = uDomainInternal; - this.VDomainInternal = uDomainInternal; + this.VDomainInternal = vDomainInternal; this.boundariesInGridSpace = boundariesInGridSpace; this.U = u; this.V = v; diff --git a/Elements/src/StructuralFraming.cs b/Elements/src/StructuralFraming.cs index 776af0de1..84524ed47 100644 --- a/Elements/src/StructuralFraming.cs +++ b/Elements/src/StructuralFraming.cs @@ -1,7 +1,9 @@ using System; using System.Collections.Generic; +using System.Text.Json.Serialization; using Elements.Geometry; using Elements.Geometry.Solids; +using Elements.Serialization.JSON; namespace Elements { @@ -13,6 +15,7 @@ public abstract class StructuralFraming : GeometricElement /// /// The center line of the framing element. /// + [JsonConverter(typeof(ElementConverter))] public BoundedCurve Curve { get; set; } /// @@ -28,6 +31,7 @@ public abstract class StructuralFraming : GeometricElement /// /// The structural framing's profile. /// + [JsonConverter(typeof(ElementConverter))] public Profile Profile { get; set; } /// @@ -36,7 +40,15 @@ public abstract class StructuralFraming : GeometricElement public double Rotation { get; set; } /// - /// Construct a beam. + /// Construct a structural framing element. + /// + public StructuralFraming() + { + // Empty construction for JSON serialization. + } + + /// + /// Construct a structural framing element. /// /// The center line of the beam. /// The structural framing's profile. @@ -70,11 +82,6 @@ public StructuralFraming(BoundedCurve curve, this.UpdateRepresentations(); } - /// - /// Construct a framing element. - /// - public StructuralFraming() { } - private void SetProperties(BoundedCurve curve, Profile profile, double startSetback, diff --git a/Elements/src/Symbol.cs b/Elements/src/Symbol.cs index c875e488d..7794c6f42 100644 --- a/Elements/src/Symbol.cs +++ b/Elements/src/Symbol.cs @@ -4,8 +4,9 @@ using System.Linq; using System.Net; using System.Threading.Tasks; -using Newtonsoft.Json; -using Newtonsoft.Json.Linq; +using System.Text.Json.Serialization; +using System.Text.Json; +using Elements.Serialization.JSON; namespace Elements { @@ -17,12 +18,11 @@ public class Symbol /// /// The geometry of the symbol. /// - [JsonProperty("Geometry", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonConverter(typeof(ElementConverter))] public GeometryReference Geometry { get; set; } /// A named camera position for this representation, indicating the direction from which the camera is looking (a top view looks from top down, a north view looks from north to south.) - [JsonProperty("CameraPosition", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] - [JsonConverter(typeof(Newtonsoft.Json.Converters.StringEnumConverter))] + [JsonConverter(typeof(JsonStringEnumConverter))] public SymbolCameraPosition CameraPosition { get; set; } /// @@ -40,7 +40,6 @@ public Symbol(GeometryReference @geometry, SymbolCameraPosition @cameraPosition) /// /// Get the geometry from this symbol. /// - /// public async Task> GetGeometryAsync() { if (this.Geometry.InternalGeometry != null) @@ -56,14 +55,18 @@ public async Task> GetGeometryAsync() var stream = response.GetResponseStream(); var streamReader = new StreamReader(stream); var json = streamReader.ReadToEnd(); - var objects = JsonConvert.DeserializeObject>(json); - var loadedTypes = typeof(Element).Assembly.GetTypes().ToList(); - return objects.Select(obj => + using (var doc = JsonDocument.Parse(json)) { - var discriminator = obj.Value("discriminator"); - var matchingType = loadedTypes.FirstOrDefault(t => t.FullName.Equals(discriminator)); - return obj.ToObject(matchingType); - }); + var root = doc.RootElement; + var geometry = new List(); + var loadedTypes = typeof(Element).Assembly.GetTypes().ToList(); + foreach (var obj in root.EnumerateArray()) + { + var discriminator = obj.GetProperty("discriminator").GetString(); + var matchingType = loadedTypes.FirstOrDefault(t => t.FullName.Equals(discriminator)); + root.Deserialize(matchingType); + } + } } catch { diff --git a/Elements/src/TiledCeiling.cs b/Elements/src/TiledCeiling.cs index 06ae71d9e..205af67de 100644 --- a/Elements/src/TiledCeiling.cs +++ b/Elements/src/TiledCeiling.cs @@ -2,7 +2,7 @@ using Elements.Geometry.Solids; using Elements.Interfaces; using Elements.Spatial; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; using System.Linq; diff --git a/Elements/src/Topography.cs b/Elements/src/Topography.cs index 1e1edba54..c377865fa 100644 --- a/Elements/src/Topography.cs +++ b/Elements/src/Topography.cs @@ -5,7 +5,7 @@ using Elements.Geometry.Interfaces; using Elements.Geometry.Solids; using LibTessDotNet.Double; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Vertex = Elements.Geometry.Vertex; namespace Elements @@ -131,8 +131,22 @@ public Topography(Vector3 origin, RegisterPropertyChangeHandlers(); } + /// + /// Create a topography. + /// + /// A mesh representing the topography. + /// An array of elevation samples which will be converted to a square array of width. + /// The origin of the topography. + /// The number of cells 'across' the topography. + /// The distance between two elevation samples along a row. + /// The distance between two elevation samples along a column. + /// The topography's material. + /// The topography's transform. + /// The topography's id. + /// The topography's name. + /// [JsonConstructor] - internal Topography(Mesh mesh, + public Topography(Mesh mesh, double[] elevations, Vector3 origin, int rowWidth, diff --git a/Elements/src/Wall.cs b/Elements/src/Wall.cs index a09a8cf8f..3cf20ccaa 100644 --- a/Elements/src/Wall.cs +++ b/Elements/src/Wall.cs @@ -1,9 +1,10 @@ using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Interfaces; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using System; using System.Collections.Generic; +using Elements.Serialization.JSON; namespace Elements { @@ -21,12 +22,14 @@ public class Wall : GeometricElement, IHasOpenings /// /// The profile of the wall. /// + [JsonConverter(typeof(ElementConverter))] [Obsolete("The profile property on the Wall base class is obsolete, check the methods of an inherited class like StandardWall or WallByProfile.")] public Profile Profile { get; protected set; } /// /// A collection of openings in the wall. /// + [JsonConverter(typeof(ElementConverter>))] public List Openings { get; } = new List(); /// diff --git a/Elements/src/WallByProfile.cs b/Elements/src/WallByProfile.cs index 670ea9505..d0734fbfc 100644 --- a/Elements/src/WallByProfile.cs +++ b/Elements/src/WallByProfile.cs @@ -3,29 +3,25 @@ using System.Linq; using Elements.Geometry; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { /// /// A wall drawn using the elevation profile /// - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public class WallByProfile : Wall { /// The overall thickness of the Wall - [JsonProperty("Thickness", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public double Thickness { get; set; } /// /// The perimeter of the Wall's elevation. It is assumed to be in the same Plane as the Centerline, /// and will often be projected to that Plane during internal operations. /// - [JsonProperty("Perimeter", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Polygon Perimeter { get; set; } /// The Centerline of the wall - [JsonProperty("Centerline", Required = Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Line Centerline { get; set; } /// diff --git a/Elements/test/ArcTests.cs b/Elements/test/ArcTests.cs index e4e2f0d37..cd4f74bfb 100644 --- a/Elements/test/ArcTests.cs +++ b/Elements/test/ArcTests.cs @@ -445,7 +445,7 @@ private void TestPointAtNormalized(BoundedCurve curve) // The start, end, and mid points are the same, but we also want to ensure // that the curve didn't flip directions as well. We do this by testing - // another random parameter. + // another random parameter. Assert.Equal(curve.PointAt(equivalentTestParam), curve.PointAtNormalized(testParam)); } diff --git a/Elements/test/BBox3Tests.cs b/Elements/test/BBox3Tests.cs index 5bfe2e276..d58210438 100644 --- a/Elements/test/BBox3Tests.cs +++ b/Elements/test/BBox3Tests.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json; using Elements.Geometry; -using Newtonsoft.Json; using Xunit; namespace Elements.Tests @@ -12,7 +12,7 @@ public class Bbox3Tests : ModelTest [Fact] public void Bbox3Calculates() { - var polygon = JsonConvert.DeserializeObject("{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-30.52885,\"Y\":-5.09393,\"Z\":0.0},{\"X\":-48.41906,\"Y\":111.94723,\"Z\":0.0},{\"X\":-95.02982,\"Y\":70.39512,\"Z\":0.0},{\"X\":-72.98057,\"Y\":-34.12159,\"Z\":0.0}]}"); + var polygon = JsonSerializer.Deserialize("{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-30.52885,\"Y\":-5.09393,\"Z\":0.0},{\"X\":-48.41906,\"Y\":111.94723,\"Z\":0.0},{\"X\":-95.02982,\"Y\":70.39512,\"Z\":0.0},{\"X\":-72.98057,\"Y\":-34.12159,\"Z\":0.0}]}"); var bbox = new BBox3(polygon); var diagonal = bbox.Max.DistanceTo(bbox.Min); Assert.Equal(159.676157, diagonal, 4); @@ -69,10 +69,11 @@ public void BBoxesForElements() { Name = nameof(BBoxesForElements); - var elements = new List(); - - // mass with weird transform - elements.Add(new Mass(Polygon.Star(5, 3, 5), 1, null, new Transform(new Vector3(4, 3, 2), new Vector3(1, 1, 1)))); + var elements = new List + { + // mass with weird transform + new Mass(Polygon.Star(5, 3, 5), 1, null, new Transform(new Vector3(4, 3, 2), new Vector3(1, 1, 1))) + }; // element instances var contentJson = @" @@ -142,7 +143,8 @@ public void BBoxesForElements() ""Opaque"": 1 }"; - var contentElement = JsonConvert.DeserializeObject(contentJson); + var contentElement = Element.Deserialize(contentJson); + elements.Add(contentElement.CreateInstance(new Transform(-6, 0, 0), null)); elements.Add(contentElement.CreateInstance(new Transform(new Vector3(-8, 0, 0), 45), null)); diff --git a/Elements/test/BezierTests.cs b/Elements/test/BezierTests.cs index 2df434b0e..c30809e5b 100644 --- a/Elements/test/BezierTests.cs +++ b/Elements/test/BezierTests.cs @@ -147,8 +147,8 @@ public void IntersectsPolycurve() var polygon = new Polygon(new Vector3[]{ (0, 3), (6, 3), (4, 1), (-2, 1) - }); - + }); + Assert.True(bezier.Intersects(polygon, out var results)); Assert.Equal(4, results.Count); Assert.Contains(new Vector3(0.93475, 3), results); diff --git a/Elements/test/BoxTests.cs b/Elements/test/BoxTests.cs index aea0d7d4a..ea7ded5fa 100644 --- a/Elements/test/BoxTests.cs +++ b/Elements/test/BoxTests.cs @@ -4,7 +4,7 @@ using Elements.Geometry; using Elements.Geometry.Profiles; using Elements.Geometry.Solids; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Xunit; namespace Elements.Tests diff --git a/Elements/test/ColorScaleTests.cs b/Elements/test/ColorScaleTests.cs index 3df86bf2c..826cf5d10 100644 --- a/Elements/test/ColorScaleTests.cs +++ b/Elements/test/ColorScaleTests.cs @@ -3,7 +3,8 @@ using Elements.Analysis; using Elements.Geometry; using Xunit; -using Newtonsoft.Json; +using System.Text.Json.Serialization; +using System.Text.Json; namespace Elements.Tests { @@ -85,13 +86,13 @@ public void ThrowsOnDuplicatedValues() public void DeserializesCorrectly() { var bandedColorScale = new ColorScale(new List() { Colors.Cyan, Colors.Purple, Colors.Orange }, 10); - var bandedSerialized = JsonConvert.SerializeObject(bandedColorScale); - var bandedDeserialized = JsonConvert.DeserializeObject(bandedSerialized); + var bandedSerialized = JsonSerializer.Serialize(bandedColorScale); + var bandedDeserialized = JsonSerializer.Deserialize(bandedSerialized); Assert.Equal(bandedColorScale.GetColor(0.12345), bandedDeserialized.GetColor(0.12345)); var linearColorScale = new ColorScale(new List() { Colors.Cyan, Colors.Purple, Colors.Orange }); - var linearSerialized = JsonConvert.SerializeObject(linearColorScale); - var linearDeserialized = JsonConvert.DeserializeObject(linearSerialized); + var linearSerialized = JsonSerializer.Serialize(linearColorScale); + var linearDeserialized = JsonSerializer.Deserialize(linearSerialized); Assert.Equal(linearColorScale.GetColor(0.12345), linearDeserialized.GetColor(0.12345)); Assert.NotEqual(linearColorScale.GetColor(0.12345), bandedColorScale.GetColor(0.12345)); diff --git a/Elements/test/ColorTests.cs b/Elements/test/ColorTests.cs index 4595a8d53..86758d16f 100644 --- a/Elements/test/ColorTests.cs +++ b/Elements/test/ColorTests.cs @@ -3,7 +3,7 @@ using Elements.Analysis; using Elements.Geometry; using Xunit; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Tests { diff --git a/Elements/test/CsgTests.cs b/Elements/test/CsgTests.cs index 48c077a28..3aaa35134 100644 --- a/Elements/test/CsgTests.cs +++ b/Elements/test/CsgTests.cs @@ -5,8 +5,8 @@ using System; using Xunit; using System.Linq; -using Newtonsoft.Json; using Elements.Geometry.Tessellation; +using System.Text.Json; using Xunit.Abstractions; namespace Elements.Tests @@ -100,7 +100,7 @@ public void SubtractWithProblematicPolygons() [Fact] public void UnionWithPolygonsWhichCreateZeroAreaTessElement() { - var profile1 = JsonConvert.DeserializeObject( + var profile1 = JsonSerializer.Deserialize( @"{ ""Vertices"": [ { @@ -135,7 +135,7 @@ public void UnionWithPolygonsWhichCreateZeroAreaTessElement() } ]} "); - var profile2 = JsonConvert.DeserializeObject( + var profile2 = JsonSerializer.Deserialize( @"{ ""Vertices"": [ { diff --git a/Elements/test/ElementProxyTests.cs b/Elements/test/ElementProxyTests.cs index d0a37247d..ca164fcab 100644 --- a/Elements/test/ElementProxyTests.cs +++ b/Elements/test/ElementProxyTests.cs @@ -1,6 +1,4 @@ -using Elements.Spatial; using Xunit; -using Newtonsoft.Json; using Elements.Geometry; namespace Elements.Tests diff --git a/Elements/test/Elements.Tests.csproj b/Elements/test/Elements.Tests.csproj index 2108fd58b..ec9cfde16 100644 --- a/Elements/test/Elements.Tests.csproj +++ b/Elements/test/Elements.Tests.csproj @@ -9,6 +9,7 @@ + diff --git a/Elements/test/GeoJSONTests.cs b/Elements/test/GeoJSONTests.cs index 5724d2ce7..0ef1b0ad6 100644 --- a/Elements/test/GeoJSONTests.cs +++ b/Elements/test/GeoJSONTests.cs @@ -1,14 +1,14 @@ using Elements.GeoJSON; -using Newtonsoft.Json; using System; using Xunit; using Line = Elements.GeoJSON.Line; +using System.Text.Json; namespace Elements.Tests { - + public class GeoJSONTests - { + { private const string feature = @" [ { @@ -61,8 +61,8 @@ public class GeoJSONTests public void Position_Serialize_Valid() { var p = new Position(10.0, 5.0); - var json = JsonConvert.SerializeObject(p); - var newP = JsonConvert.DeserializeObject(json); + var json = JsonSerializer.Serialize(p); + var newP = JsonSerializer.Deserialize(json); Assert.Equal(5.0, newP.Longitude); Assert.Equal(10.0, newP.Latitude); } @@ -70,21 +70,21 @@ public void Position_Serialize_Valid() [Fact] public void Point_Serialize_Valid() { - var p = new Point(new Position(10.0,5.0)); - var json = JsonConvert.SerializeObject(p); - var newP = JsonConvert.DeserializeObject(json); + var p = new Point(new Position(10.0, 5.0)); + var json = JsonSerializer.Serialize(p); + var newP = JsonSerializer.Deserialize(json); Assert.Equal("Point", newP.Type); - Assert.Equal(new Position(10.0,5.0), newP.Coordinates); + Assert.Equal(new Position(10.0, 5.0), newP.Coordinates); } [Fact] public void Line_Serialize_Valid() { - var a = new Position(0,0); - var b = new Position(5,5); - var l = new Line(new[]{a,b}); - var json = JsonConvert.SerializeObject(l); - var newL = JsonConvert.DeserializeObject(json); + var a = new Position(0, 0); + var b = new Position(5, 5); + var l = new Line(new[] { a, b }); + var json = JsonSerializer.Serialize(l); + var newL = JsonSerializer.Deserialize(json); Assert.Equal(a, newL.Coordinates[0]); Assert.Equal(b, newL.Coordinates[1]); Assert.Equal("Line", newL.Type); @@ -93,12 +93,12 @@ public void Line_Serialize_Valid() [Fact] public void LineString_Serialize_Valid() { - var a = new Position(0,0); - var b = new Position(5,5); - var c = new Position(10,10); - var ls = new LineString(new[]{a,b,c}); - var json = JsonConvert.SerializeObject(ls); - var newLs = JsonConvert.DeserializeObject(json); + var a = new Position(0, 0); + var b = new Position(5, 5); + var c = new Position(10, 10); + var ls = new LineString(new[] { a, b, c }); + var json = JsonSerializer.Serialize(ls); + var newLs = JsonSerializer.Deserialize(json); Assert.Equal(a, newLs.Coordinates[0]); Assert.Equal(b, newLs.Coordinates[1]); Assert.Equal(c, newLs.Coordinates[2]); @@ -108,27 +108,28 @@ public void LineString_Serialize_Valid() [Fact] public void Polygon_Serialize_Valid() { - var a = new Position(0,0); - var b = new Position(5,5); - var c = new Position(10,10); - var p = new Polygon(new[]{new[]{a,b,c,a}}); - var json = JsonConvert.SerializeObject(p); + var a = new Position(0, 0); + var b = new Position(5, 5); + var c = new Position(10, 10); + var p = new Polygon(new[] { new[] { a, b, c, a } }); + var json = JsonSerializer.Serialize(p); - Assert.Throws(()=>{ + Assert.Throws(() => + { // End point coincidence test. - var pFail = new Polygon(new[]{new[]{a,b,c}}); + var pFail = new Polygon(new[] { new[] { a, b, c } }); }); } [Fact] public void MultiLineString_Serialize_Valid() { - var a = new Position(0,0); - var b = new Position(5,5); - var c = new Position(10,10); - var mls = new MultiLineString(new[]{new[]{a,b,c},new[]{c,b,a}}); - var json = JsonConvert.SerializeObject(mls); - var newMls = JsonConvert.DeserializeObject(json); + var a = new Position(0, 0); + var b = new Position(5, 5); + var c = new Position(10, 10); + var mls = new MultiLineString(new[] { new[] { a, b, c }, new[] { c, b, a } }); + var json = JsonSerializer.Serialize(mls); + var newMls = JsonSerializer.Deserialize(json); Assert.Equal(2, newMls.Coordinates.GetLength(0)); Assert.Equal(3, newMls.Coordinates[0].Length); Assert.Equal(3, newMls.Coordinates[1].Length); @@ -137,12 +138,14 @@ public void MultiLineString_Serialize_Valid() [Fact] public void FeatureCollection_SerializeValid() { - var p = new Point(new Position(0,0)); - var l = new Line(new []{new Position(0,0), new Position(10,10)}); - var f1 = new Feature(p,null); - var f2 = new Feature(l,null); - var fc = new FeatureCollection(new[]{f1,f2}); - var json = JsonConvert.SerializeObject(fc); + var p = new Point(new Position(0, 0)); + var l = new Line(new[] { new Position(0, 0), new Position(10, 10) }); + var f1 = new Feature(p, null); + var f2 = new Feature(l, null); + var fc = new FeatureCollection(new[] { f1, f2 }); + f1.Properties.Add("foo", "This is foo."); + f2.Properties.Add("bar", 42); + var json = JsonSerializer.Serialize(fc); } // [Fact] @@ -173,7 +176,7 @@ public void FeatureCollection_SerializeValid() [Fact] public void Feature_Deserialize_Valid() { - var f = JsonConvert.DeserializeObject(feature); + var f = JsonSerializer.Deserialize(feature); var p = (Polygon)f[0].Geometry; Assert.Equal(7, p.Coordinates[0].Length); Assert.Equal("Feature", f[0].Type); diff --git a/Elements/test/GltfTests.cs b/Elements/test/GltfTests.cs index 45b0e5277..0e58f4f43 100644 --- a/Elements/test/GltfTests.cs +++ b/Elements/test/GltfTests.cs @@ -6,9 +6,8 @@ using glTFLoader.Schema; using System; using System.IO; -using Newtonsoft.Json; using Elements.Geometry.Solids; -using Newtonsoft.Json.Linq; +using System.Text.Json; namespace Elements.Tests { @@ -83,7 +82,7 @@ public void GeometricElementWithoutMaterialUsesDefaultMaterial() public void ThinObjectsGenerateCorrectly() { var json = File.ReadAllText("../../../models/Geometry/Single-Panel.json"); - var panel = JsonConvert.DeserializeObject(json); + var panel = Element.Deserialize(json); var model = new Model(); model.AddElement(panel); var modelsDir = Path.Combine(Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location), "models"); @@ -118,7 +117,7 @@ public void CsgCreationErrorIsHandledWhenGeometricElementIsScaledToZero() // Add one more solid operation to ensure that we hit the path // which computes CSGs. Attempting to create a CSG with scale 0 // will throw an exception which will be handled and added to - // the errors collection. + // the errors collection. var t = l.TransformAt(0.5); beam.Representation.SolidOperations.Add(new Extrude(Polygon.Rectangle(0.5, 0.5), 0.5, t.ZAxis, isVoid: false)); @@ -174,43 +173,62 @@ public void IdAndSelectabilityIsStoredInGLTF() model.ToGlTF(gltfPath, true); var gltf = Interface.LoadModel(gltfPath); + Assert.Contains(gltf.ExtensionsUsed, (s) => "HYPAR_info" == s); + Assert.Contains(gltf.Nodes, (n) => { - return n.Extensions != null && - n.Extensions.TryGetValue("HYPAR_info", out var info) && - info is JObject j && - j["id"].Value() == modelCurve.Id.ToString() && - j["selectable"].Value() == false; + if (n.Extensions != null && + n.Extensions.TryGetValue("HYPAR_info", out object obj) && // Get the value as an object + obj is JsonElement info) // Cast the object to JsonElement + { + if (info.TryGetProperty("id", out JsonElement idElement) && + idElement.GetString() == modelCurve.Id.ToString() && + info.TryGetProperty("selectable", out JsonElement selectableElement) && + selectableElement.GetBoolean() == false) + { + return true; + } + } + return false; }); + Assert.Contains(gltf.Nodes, (n) => { return n.Extensions != null && - n.Extensions.TryGetValue("HYPAR_info", out var info) && - info is JObject j && - j["id"].Value() == mass.Id.ToString(); + n.Extensions.TryGetValue("HYPAR_info", out object obj) && + obj is JsonElement info && + info.TryGetProperty("id", out JsonElement idElement) && + idElement.GetString() == mass.Id.ToString(); }); + Assert.Contains(gltf.Nodes, (n) => { return n.Extensions != null && - n.Extensions.TryGetValue("HYPAR_info", out var info) && - info is JObject j && - j["id"].Value() == instance.Id.ToString(); + n.Extensions.TryGetValue("HYPAR_info", out object obj) && + obj is JsonElement info && + info.TryGetProperty("id", out JsonElement idElement) && + idElement.GetString() == instance.Id.ToString(); }); + Assert.Contains(gltf.Nodes, (n) => { return n.Extensions != null && - n.Extensions.TryGetValue("HYPAR_info", out var info) && - info is JObject j && - j["id"].Value() == contentElement.Id.ToString(); + n.Extensions.TryGetValue("HYPAR_info", out object obj) && + obj is JsonElement info && + info.TryGetProperty("id", out JsonElement idElement) && + idElement.GetString() == contentElement.Id.ToString(); }); + Assert.Contains(gltf.Nodes, (n) => { return n.Extensions != null && - n.Extensions.TryGetValue("HYPAR_info", out var info) && - info is JObject j && - j["id"].Value() == contentInstance.Id.ToString(); + n.Extensions.TryGetValue("HYPAR_info", out object obj) && + obj is JsonElement info && + info.TryGetProperty("id", out JsonElement idElement) && + idElement.GetString() == contentInstance.Id.ToString(); }); + } } } \ No newline at end of file diff --git a/Elements/test/Grid1dTests.cs b/Elements/test/Grid1dTests.cs index 4da5575fd..3d72c1ed7 100644 --- a/Elements/test/Grid1dTests.cs +++ b/Elements/test/Grid1dTests.cs @@ -4,7 +4,9 @@ using Xunit; using Elements.Geometry; using System.Collections.Generic; -using Newtonsoft.Json; +using System.Text.Json; +using System.Text.Json.Serialization; +using Elements.Serialization.JSON; namespace Elements.Tests { @@ -160,8 +162,21 @@ public void Grid1dSerializes() var grid = new Grid1d(polyline); grid.DivideByCount(4); grid[3].DivideByFixedLength(0.4); - var json = JsonConvert.SerializeObject(grid); - var deserialized = JsonConvert.DeserializeObject(json); + + var options = new JsonSerializerOptions() + { + PropertyNameCaseInsensitive = true, + AllowTrailingCommas = true, + IncludeFields = true, + DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull + }; + + options.Converters.Add(new ElementConverterFactory()); + options.Converters.Add(new PolylineConverter()); + options.Converters.Add(new ElementConverter()); + + var json = JsonSerializer.Serialize(grid, options); + var deserialized = Element.Deserialize(json); Assert.Equal(grid.GetCells().Count, deserialized.GetCells().Count); Assert.Equal(0, (grid.Curve as Polyline).Start.DistanceTo((deserialized.Curve as Polyline).Start)); } diff --git a/Elements/test/Grid2dElement.cs b/Elements/test/Grid2dElement.cs index ba89920a4..bf690746f 100644 --- a/Elements/test/Grid2dElement.cs +++ b/Elements/test/Grid2dElement.cs @@ -1,14 +1,12 @@ using Elements.Spatial; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements { /// Just a test - [JsonConverter(typeof(Elements.Serialization.JSON.JsonInheritanceConverter), "discriminator")] public partial class Grid2dElement : Element { /// contains a grid - [JsonProperty("Grid", Required = Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] public Grid2d Grid { get; set; } [JsonConstructor] diff --git a/Elements/test/Grid2dTests.cs b/Elements/test/Grid2dTests.cs index a8fc326b3..8af2a8fb7 100644 --- a/Elements/test/Grid2dTests.cs +++ b/Elements/test/Grid2dTests.cs @@ -3,9 +3,9 @@ using System.Linq; using Elements.Spatial; using Xunit; -using Newtonsoft.Json; using Elements.Geometry; using System.Collections.Generic; +using System.Text.Json; namespace Elements.Tests { @@ -66,7 +66,7 @@ public void TrimBehavior() { Name = "TrimBehavior"; var polygonjson = "[{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-14.371519985751306,\"Y\":-4.8816304299427005,\"Z\":0.0},{\"X\":-17.661873645682569,\"Y\":9.2555712951713573,\"Z\":0.0},{\"X\":12.965610421927806,\"Y\":9.2555712951713573,\"Z\":0.0},{\"X\":12.965610421927806,\"Y\":3.5538269529982784,\"Z\":0.0},{\"X\":6.4046991240848143,\"Y\":3.5538269529982784,\"Z\":0.0},{\"X\":1.3278034769444158,\"Y\":-4.8816304299427005,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-9.4508365123690652,\"Y\":0.20473478280229102,\"Z\":0.0},{\"X\":-1.8745460850979974,\"Y\":0.20473478280229102,\"Z\":0.0},{\"X\":-1.8745460850979974,\"Y\":5.4378426037008651,\"Z\":0.0},{\"X\":-9.4508365123690652,\"Y\":5.4378426037008651,\"Z\":0.0}]}]\r\n"; - var polygons = JsonConvert.DeserializeObject>(polygonjson); + var polygons = JsonSerializer.Deserialize>(polygonjson); var grid = new Grid2d(polygons); foreach (var pt in polygons[1].Vertices) { @@ -196,8 +196,8 @@ public void Grid2dSerializes() grid2d.U.DivideByCount(10); grid2d.V.DivideByCount(3); grid2d[2, 2].U.DivideByCount(4); - var json = JsonConvert.SerializeObject(grid2d); - var deserialized = JsonConvert.DeserializeObject(json); + var json = JsonSerializer.Serialize(grid2d); + var deserialized = Element.Deserialize(json); Assert.Equal(grid2d.GetCells().Count, deserialized.GetCells().Count); var grid2dElem = new Grid2dElement(grid2d, Guid.NewGuid(), "Grid"); @@ -477,7 +477,7 @@ public void SkewedGridsWithNearlyParallelBoundary() ] } }"; - var transform = JsonConvert.DeserializeObject(transformStr); + var transform = JsonSerializer.Deserialize(transformStr); var origin = transform.Origin; var uDirection = transform.XAxis; var vDirection = transform.YAxis; @@ -547,7 +547,8 @@ public void RotateGridWithClosePointDoNotThrow() public void SeparatorsFromBadPolygon() { var json = File.ReadAllText("../../../models/Geometry/bad_grid.json"); - var grid = JsonConvert.DeserializeObject(json); + + var grid = Element.Deserialize(json); var cellSeparators = grid.GetCellSeparators(GridDirection.V, true); } @@ -555,7 +556,7 @@ public void SeparatorsFromBadPolygon() public void NoTrimmedCells() { var json = File.ReadAllText("../../../models/Geometry/badGridTrimmed.json"); - var grid = JsonConvert.DeserializeObject(json); + var grid = Element.Deserialize(json); foreach (var c in grid.GetCells()) { Assert.False(c.IsTrimmed()); diff --git a/Elements/test/HalfEdgeGraph2dTests.cs b/Elements/test/HalfEdgeGraph2dTests.cs index 0317a19f8..6c3970a80 100644 --- a/Elements/test/HalfEdgeGraph2dTests.cs +++ b/Elements/test/HalfEdgeGraph2dTests.cs @@ -6,7 +6,7 @@ using Elements.Spatial; using Elements.Serialization.JSON; using System.IO; -using Newtonsoft.Json; +using System.Text.Json.Serialization; namespace Elements.Tests { diff --git a/Elements/test/IndexedPolyCurveTests.cs b/Elements/test/IndexedPolyCurveTests.cs index f952bb078..04fd0bc94 100644 --- a/Elements/test/IndexedPolyCurveTests.cs +++ b/Elements/test/IndexedPolyCurveTests.cs @@ -1,8 +1,8 @@ using System.Collections.Generic; using System.Linq; using Elements.Geometry; -using Newtonsoft.Json; using Xunit; +using System.Text.Json; namespace Elements.Tests { @@ -160,8 +160,8 @@ public void RenderVertices() public void Serialization() { var pc = CreateTestPolycurve(); - var json = JsonConvert.SerializeObject(pc); - var pc2 = JsonConvert.DeserializeObject(json); + var json = JsonSerializer.Serialize(pc); + var pc2 = JsonSerializer.Deserialize(json); var mc1 = new ModelCurve(pc, BuiltInMaterials.XAxis); var mc2 = new ModelCurve(pc2, BuiltInMaterials.YAxis); Assert.Equal(pc.Vertices, pc2.Vertices); @@ -210,7 +210,7 @@ public void GetSubdivisionParameters() { var pc = new IndexedPolycurve(new List() { - (0, 0), (2, 0), (2, 2), (0, 2), (0, 3) + (0, 0), (2, 0), (2, 2), (0, 2), (0, 3) }); var parameters = pc.GetSubdivisionParameters(); Assert.Equal(5, parameters.Count()); diff --git a/Elements/test/LineTests.cs b/Elements/test/LineTests.cs index 507c7b61c..df7e23d4b 100644 --- a/Elements/test/LineTests.cs +++ b/Elements/test/LineTests.cs @@ -3,8 +3,9 @@ using System.IO; using System.Linq; using Elements.Tests; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Xunit; +using System.Text.Json; namespace Elements.Geometry.Tests { @@ -326,8 +327,8 @@ public void LineTrimToInYZ() [Fact] public void TrimLineThatStartsAtPolygonEdge() { - var polygon = JsonConvert.DeserializeObject(File.ReadAllText("../../../models/Geometry/ConcavePolygon.json")); - var line = JsonConvert.DeserializeObject(File.ReadAllText("../../../models/Geometry/LineThatFailsTrim.json")); + var polygon = JsonSerializer.Deserialize(File.ReadAllText("../../../models/Geometry/ConcavePolygon.json")); + var line = JsonSerializer.Deserialize(File.ReadAllText("../../../models/Geometry/LineThatFailsTrim.json")); var lines = line.Trim(polygon, out var _); Assert.Equal(4.186147, lines[0].Length(), 2); @@ -336,8 +337,8 @@ public void TrimLineThatStartsAtPolygonEdge() [Fact] public void LineIntersectAtEnd() { - var line1 = JsonConvert.DeserializeObject("{\"discriminator\":\"Elements.Geometry.Line\",\"Start\":{\"X\":22.63192881973488,\"Y\":23.07673264883112,\"Z\":0.0},\"End\":{\"X\":26.239210000000003,\"Y\":32.009170000000005,\"Z\":0.0}}"); - var line2 = JsonConvert.DeserializeObject("{\"discriminator\":\"Elements.Geometry.Line\",\"Start\":{\"X\":26.23921,\"Y\":32.00917,\"Z\":0.0},\"End\":{\"X\":24.47373,\"Y\":32.72215,\"Z\":0.0}}"); + var line1 = JsonSerializer.Deserialize("{\"discriminator\":\"Elements.Geometry.Line\",\"Start\":{\"X\":22.63192881973488,\"Y\":23.07673264883112,\"Z\":0.0},\"End\":{\"X\":26.239210000000003,\"Y\":32.009170000000005,\"Z\":0.0}}"); + var line2 = JsonSerializer.Deserialize("{\"discriminator\":\"Elements.Geometry.Line\",\"Start\":{\"X\":26.23921,\"Y\":32.00917,\"Z\":0.0},\"End\":{\"X\":24.47373,\"Y\":32.72215,\"Z\":0.0}}"); line1.Intersects(line2, out var intersection, false, true); } @@ -424,13 +425,13 @@ public void LineTrimWithPolygonInfinite() public void ExtendToProfile() { Name = "ExtendToProfile"; - var polygons = JsonConvert.DeserializeObject>("[{\"Vertices\":[{\"X\":-3.3239130434782611,\"Y\":2.534782608695652,\"Z\":0.0},{\"X\":1.924698097225491,\"Y\":6.0910303088278326,\"Z\":0.0},{\"X\":2.5714592294272105,\"Y\":3.5518940120358997,\"Z\":0.0},{\"X\":1.1956521739130428,\"Y\":2.1760869565217393,\"Z\":0.0},{\"X\":1.7456521739130428,\"Y\":0.47826086956521707,\"Z\":0.0},{\"X\":0.69347826086956554,\"Y\":-1.2195652173913047,\"Z\":0.0},{\"X\":2.9652173913043476,\"Y\":-1.3391304347826083,\"Z\":0.0},{\"X\":3.2760869565217394,\"Y\":-2.7978260869565217,\"Z\":0.0},{\"X\":1.5065217391304346,\"Y\":-3.347826086956522,\"Z\":0.0},{\"X\":-0.43043478260869589,\"Y\":-1.482608695652174,\"Z\":0.0},{\"X\":-1.4586956521739132,\"Y\":-1.7695652173913039,\"Z\":0.0},{\"X\":-3.3239130434782611,\"Y\":-2.1043478260869568,\"Z\":0.0}]},{\"Vertices\":[{\"X\":0.070768827751857444,\"Y\":-0.75686629107050352,\"Z\":0.0},{\"X\":1.1928650019807621,\"Y\":0.39683822609442632,\"Z\":0.0},{\"X\":-1.1303482038171115,\"Y\":2.5936180601481968,\"Z\":0.0},{\"X\":-1.3358024329012763,\"Y\":2.2617304593199297,\"Z\":0.0}]}]"); + var polygons = JsonSerializer.Deserialize>("[{\"Vertices\":[{\"X\":-3.3239130434782611,\"Y\":2.534782608695652,\"Z\":0.0},{\"X\":1.924698097225491,\"Y\":6.0910303088278326,\"Z\":0.0},{\"X\":2.5714592294272105,\"Y\":3.5518940120358997,\"Z\":0.0},{\"X\":1.1956521739130428,\"Y\":2.1760869565217393,\"Z\":0.0},{\"X\":1.7456521739130428,\"Y\":0.47826086956521707,\"Z\":0.0},{\"X\":0.69347826086956554,\"Y\":-1.2195652173913047,\"Z\":0.0},{\"X\":2.9652173913043476,\"Y\":-1.3391304347826083,\"Z\":0.0},{\"X\":3.2760869565217394,\"Y\":-2.7978260869565217,\"Z\":0.0},{\"X\":1.5065217391304346,\"Y\":-3.347826086956522,\"Z\":0.0},{\"X\":-0.43043478260869589,\"Y\":-1.482608695652174,\"Z\":0.0},{\"X\":-1.4586956521739132,\"Y\":-1.7695652173913039,\"Z\":0.0},{\"X\":-3.3239130434782611,\"Y\":-2.1043478260869568,\"Z\":0.0}]},{\"Vertices\":[{\"X\":0.070768827751857444,\"Y\":-0.75686629107050352,\"Z\":0.0},{\"X\":1.1928650019807621,\"Y\":0.39683822609442632,\"Z\":0.0},{\"X\":-1.1303482038171115,\"Y\":2.5936180601481968,\"Z\":0.0},{\"X\":-1.3358024329012763,\"Y\":2.2617304593199297,\"Z\":0.0}]}]"); var profile = new Profile(polygons); var mcs = profile.ToModelCurves(material: BuiltInMaterials.XAxis); Model.AddElements(mcs); - var intersectsAtVertex = JsonConvert.DeserializeObject("{\"X\":1.9248644534137522,\"Y\":-2.3794833726732039,\"Z\":0.0}"); - var doesntIntersect = JsonConvert.DeserializeObject("{\"X\":-3.5077580495618728,\"Y\":3.5797588753975274,\"Z\":0.0}"); - var hitsVoid = JsonConvert.DeserializeObject("{\"X\":-0.73780074305628141,\"Y\":-0.976285760075414,\"Z\":0.0}"); + var intersectsAtVertex = JsonSerializer.Deserialize("{\"X\":1.9248644534137522,\"Y\":-2.3794833726732039,\"Z\":0.0}"); + var doesntIntersect = JsonSerializer.Deserialize("{\"X\":-3.5077580495618728,\"Y\":3.5797588753975274,\"Z\":0.0}"); + var hitsVoid = JsonSerializer.Deserialize("{\"X\":-0.73780074305628141,\"Y\":-0.976285760075414,\"Z\":0.0}"); var lineDir = new Vector3(0.1, 0.1); var iavLine = new Line(intersectsAtVertex, intersectsAtVertex + lineDir).ExtendTo(profile); var diLine = new Line(doesntIntersect, doesntIntersect + lineDir).ExtendTo(profile); diff --git a/Elements/test/MeshTests.cs b/Elements/test/MeshTests.cs index bc12f376b..c5ea7024f 100644 --- a/Elements/test/MeshTests.cs +++ b/Elements/test/MeshTests.cs @@ -6,8 +6,9 @@ using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Serialization.JSON; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using Xunit; +using System.Text.Json; namespace Elements.Tests { @@ -39,6 +40,7 @@ public void Volume() var v = l1Mesh.Volume(); Assert.Equal((l.Area() - l1.Area()) * 5, l1Mesh.Volume(), 5); } + [Fact] public void ReadMeshSerializedAsNull() { @@ -47,7 +49,12 @@ public void ReadMeshSerializedAsNull() ""Mesh"": null, } "; - Newtonsoft.Json.JsonConvert.DeserializeObject(json, new[] { new MeshConverter() }); + var options = new JsonSerializerOptions + { + AllowTrailingCommas = true + }; + + JsonSerializer.Deserialize(json, options); } [Fact] @@ -113,12 +120,12 @@ public void MergeOnFirstVertexAdd() public class InputsWithMesh { [JsonConstructor] - public InputsWithMesh(Mesh @mesh, string bucketName, string uploadsBucket, Dictionary modelInputKeys, string gltfKey, string elementsKey, string ifcKey) + public InputsWithMesh(Mesh @mesh) { this.Mesh = @mesh; } - [JsonProperty("Mesh", Required = Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] + [JsonConverter(typeof(MeshConverter))] public Mesh Mesh { get; set; } } } diff --git a/Elements/test/ModelTest.cs b/Elements/test/ModelTest.cs index 4a990a6a2..75c71dc00 100644 --- a/Elements/test/ModelTest.cs +++ b/Elements/test/ModelTest.cs @@ -70,7 +70,8 @@ public virtual void Dispose() if (this.GenerateJson) { var jsonPath = $"models/{this._name}.json"; - File.WriteAllText(jsonPath, this._model.ToJson()); + var json = this._model.ToJson(); + File.WriteAllText(jsonPath, json); var newModel = Model.FromJson(File.ReadAllText(jsonPath)); diff --git a/Elements/test/ModelTests.cs b/Elements/test/ModelTests.cs index 703156312..c634936a3 100644 --- a/Elements/test/ModelTests.cs +++ b/Elements/test/ModelTests.cs @@ -5,12 +5,12 @@ using Elements.Serialization.glTF; using System.Collections.Generic; using Elements.Generate; -using Newtonsoft.Json; using Elements.Geometry.Solids; using System.Linq; using Xunit.Abstractions; -using Newtonsoft.Json.Linq; using System.Threading.Tasks; +using System.Text.Json; +using System.Text; namespace Elements.Tests { @@ -74,20 +74,21 @@ public void HasOriginAfterSerialization() [Fact] public void UnknownTypesConvertToBaseElementDuringDeserialization() { - // We've changed an Elements.Beam to Elements.Foo - var modelStr = "{'Transform':{'Matrix':{'Components':[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},'Elements':{'c6d1dc68-f800-47c1-9190-745b525ad569':{'discriminator':'Elements.Baz'}, '37f161d6-a892-4588-ad65-457b04b97236':{'discriminator':'Elements.Geometry.Profiles.WideFlangeProfile','d':1.1176,'tw':0.025908,'bf':0.4064,'tf':0.044958,'Perimeter':{'discriminator':'Elements.Geometry.Polygon','Vertices':[{'X':-0.2032,'Y':0.5588,'Z':0.0},{'X':-0.2032,'Y':0.51384199999999991,'Z':0.0},{'X':-0.012954,'Y':0.51384199999999991,'Z':0.0},{'X':-0.012954,'Y':-0.51384199999999991,'Z':0.0},{'X':-0.2032,'Y':-0.51384199999999991,'Z':0.0},{'X':-0.2032,'Y':-0.5588,'Z':0.0},{'X':0.2032,'Y':-0.5588,'Z':0.0},{'X':0.2032,'Y':-0.51384199999999991,'Z':0.0},{'X':0.012954,'Y':-0.51384199999999991,'Z':0.0},{'X':0.012954,'Y':0.51384199999999991,'Z':0.0},{'X':0.2032,'Y':0.51384199999999991,'Z':0.0},{'X':0.2032,'Y':0.5588,'Z':0.0}]},'Voids':null,'Id':'37f161d6-a892-4588-ad65-457b04b97236','Name':'W44x335'},'6b77d69a-204e-40f9-bc1f-ed84683e64c6':{'discriminator':'Elements.Material','Color':{'Red':0.60000002384185791,'Green':0.5,'Blue':0.5,'Alpha':1.0},'SpecularFactor':0.0,'GlossinessFactor':0.0,'Id':'6b77d69a-204e-40f9-bc1f-ed84683e64c6','Name':'steel'},'fd35bd2c-0108-47df-8e6d-42cc43e4eed0':{'discriminator':'Elements.Foo','Curve':{'discriminator':'Elements.Geometry.Arc','Center':{'X':0.0,'Y':0.0,'Z':0.0},'Radius':2.0,'StartAngle':0.0,'EndAngle':90.0},'StartSetback':0.25,'EndSetback':0.25,'Profile':'37f161d6-a892-4588-ad65-457b04b97236','Transform':{'Matrix':{'Components':[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},'Material':'6b77d69a-204e-40f9-bc1f-ed84683e64c6','Representation':{'SolidOperations':[{'discriminator':'Elements.Geometry.Solids.Sweep','Profile':'37f161d6-a892-4588-ad65-457b04b97236','Curve':{'discriminator':'Elements.Geometry.Arc','Center':{'X':0.0,'Y':0.0,'Z':0.0},'Radius':2.0,'StartAngle':0.0,'EndAngle':90.0},'StartSetback':0.25,'EndSetback':0.25,'Rotation':0.0,'IsVoid':false}]},'Id':'fd35bd2c-0108-47df-8e6d-42cc43e4eed0','Name':null}}}"; - var model = Model.FromJson(modelStr, out var errors); - foreach (var e in errors) - { - this._output.WriteLine(e); - } + // We've put in an Elements.Baz with nothing but a discriminator. + var modelStr = "{\"Transform\":{\"Matrix\":{\"Components\":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},\"Elements\":{\"c6d1dc68-f800-47c1-9190-745b525ad569\":{\"discriminator\":\"Elements.Baz\"}, \"37f161d6-a892-4588-ad65-457b04b97236\":{\"discriminator\":\"Elements.Geometry.Profiles.WideFlangeProfile\",\"d\":1.1176,\"tw\":0.025908,\"bf\":0.4064,\"tf\":0.044958,\"Perimeter\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-0.2032,\"Y\":0.5588,\"Z\":0.0},{\"X\":-0.2032,\"Y\":0.51384199999999991,\"Z\":0.0},{\"X\":-0.012954,\"Y\":0.51384199999999991,\"Z\":0.0},{\"X\":-0.012954,\"Y\":-0.51384199999999991,\"Z\":0.0},{\"X\":-0.2032,\"Y\":-0.51384199999999991,\"Z\":0.0},{\"X\":-0.2032,\"Y\":-0.5588,\"Z\":0.0},{\"X\":0.2032,\"Y\":-0.5588,\"Z\":0.0},{\"X\":0.2032,\"Y\":-0.51384199999999991,\"Z\":0.0},{\"X\":0.012954,\"Y\":-0.51384199999999991,\"Z\":0.0},{\"X\":0.012954,\"Y\":0.51384199999999991,\"Z\":0.0},{\"X\":0.2032,\"Y\":0.51384199999999991,\"Z\":0.0},{\"X\":0.2032,\"Y\":0.5588,\"Z\":0.0}]},\"Voids\":null,\"Id\":\"37f161d6-a892-4588-ad65-457b04b97236\",\"Name\":\"W44x335\"},\"6b77d69a-204e-40f9-bc1f-ed84683e64c6\":{\"discriminator\":\"Elements.Material\",\"Color\":{\"Red\":0.60000002384185791,\"Green\":0.5,\"Blue\":0.5,\"Alpha\":1.0},\"SpecularFactor\":0.0,\"GlossinessFactor\":0.0,\"Id\":\"6b77d69a-204e-40f9-bc1f-ed84683e64c6\",\"Name\":\"steel\"},\"fd35bd2c-0108-47df-8e6d-42cc43e4eed0\":{\"discriminator\":\"Elements.Foo\",\"Curve\":{\"discriminator\":\"Elements.Geometry.Arc\",\"Center\":{\"X\":0.0,\"Y\":0.0,\"Z\":0.0},\"Radius\":2.0,\"StartAngle\":0.0,\"EndAngle\":90.0},\"StartSetback\":0.25,\"EndSetback\":0.25,\"Profile\":\"37f161d6-a892-4588-ad65-457b04b97236\",\"Transform\":{\"Matrix\":{\"Components\":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},\"Material\":\"6b77d69a-204e-40f9-bc1f-ed84683e64c6\",\"Representation\":{\"SolidOperations\":[{\"discriminator\":\"Elements.Geometry.Solids.Sweep\",\"Profile\":\"37f161d6-a892-4588-ad65-457b04b97236\",\"Curve\":{\"discriminator\":\"Elements.Geometry.Arc\",\"Center\":{\"X\":0.0,\"Y\":0.0,\"Z\":0.0},\"Radius\":2.0,\"StartAngle\":0.0,\"EndAngle\":90.0},\"StartSetback\":0.25,\"EndSetback\":0.25,\"Rotation\":0.0,\"IsVoid\":false}]},\"Id\":\"fd35bd2c-0108-47df-8e6d-42cc43e4eed0\",\"Name\":null}}}"; + var model = Model.FromJson(modelStr); + + // foreach (var e in errors) + // { + // this._output.WriteLine(e); + // } // We expect three geometric elements, // and one base element (Elements.Baz) Assert.Equal(4, model.Elements.Count); bool containsBaz = model.Elements.Select(x => x.Value.AdditionalProperties["discriminator"]).Contains("Elements.Baz"); Assert.True(containsBaz); - Assert.Single(errors); + // Assert.Single(errors); } /// @@ -108,10 +109,10 @@ public async Task MergesModelsWithUserDefinedTypes() Assert.NotNull(facadePanelType); var envelopeType = asm.Assembly.GetType("Elements.Envelope"); Assert.NotNull(envelopeType); - var model1 = JsonConvert.DeserializeObject(File.ReadAllText("../../../models/Merge/facade.json")); + var model1 = JsonSerializer.Deserialize(File.ReadAllText("../../../models/Merge/facade.json")); var count1 = model1.Elements.Count; - var model2 = JsonConvert.DeserializeObject(File.ReadAllText("../../../models/Merge/structure.json")); + var model2 = JsonSerializer.Deserialize(File.ReadAllText("../../../models/Merge/structure.json")); var count2 = model2.Elements.Count; var merge = new Model(); @@ -170,8 +171,8 @@ public void SaveMappingDictionaryWithoutRepeatingMappings() var model = new Model(new List { inst1, inst2 }); var json = model.ToJson(true); - var newModel = Model.FromJson(json, out var errors); - Assert.Empty(errors); + var newModel = Model.FromJson(json); + // Assert.Empty(errors); //Check that only a single mapping was serialized. var m = System.Text.RegularExpressions.Regex.Matches(json, @"""discriminator"":\s*""Elements.Tests.TestMapping"""); @@ -239,14 +240,23 @@ public void DeserializationSkipsUnknownProperties() var model = new Model(); model.AddElement(column); var json = model.ToJson(true); - // https://www.newtonsoft.com/json/help/html/ModifyJson.htm - var obj = JObject.Parse(json); - var elements = obj["Elements"]; - var c = (JObject)elements.Values().ElementAt(2); - // Inject an unknown property. - c.Property("Curve").AddAfterSelf(new JProperty("Foo", "Bar")); - var newModel = Model.FromJson(obj.ToString()); + // Parse the JSON and convert the specific part to a Dictionary + using var doc = JsonDocument.Parse(json); + var root = doc.RootElement.Clone(); + var elements = root.GetProperty("Elements").EnumerateObject().ToDictionary(p => p.Name, p => p.Value.Clone()); + + // Modify the specific element in the dictionary + var c = elements.Values.ElementAt(2); + var cDict = JsonSerializer.Deserialize>(c.GetRawText()); + cDict.Add("Foo", JsonDocument.Parse("\"Bar\"").RootElement); // Add new property + elements[elements.Keys.ElementAt(2)] = JsonSerializer.Deserialize(JsonSerializer.Serialize(cDict)); + + // Serialize the modified dictionary back to JSON + var modifiedJson = JsonSerializer.Serialize(new { Elements = elements }, new JsonSerializerOptions { WriteIndented = true }); + + // Deserialize the modified JSON + var newModel = Model.FromJson(modifiedJson); Assert.Single(newModel.AllElementsOfType()); var newColumn = newModel.AllElementsOfType().First(); Assert.Equal(column.Curve, newColumn.Curve); @@ -260,38 +270,55 @@ public void DeserializationConstructsWithMissingProperties() var model = new Model(); model.AddElement(column); var json = model.ToJson(true); - // https://www.newtonsoft.com/json/help/html/ModifyJson.htm - var obj = JObject.Parse(json); - var elements = obj["Elements"]; - var c = (JObject)elements.Values().ElementAt(2); // the column + + // Parse the JSON, convert to a dictionary, remove the property, and re-serialize + using var doc = JsonDocument.Parse(json); + var root = doc.RootElement.Clone(); + var rootDict = JsonSerializer.Deserialize>(root.GetRawText()); + + var elements = rootDict["Elements"].EnumerateObject().ToDictionary(p => p.Name, p => p.Value.Clone()); + var c = elements.Values.ElementAt(2).EnumerateObject().ToDictionary(p => p.Name, p => p.Value.Clone()); // Remove the Location property - c.Property("Location").Remove(); - var newModel = Model.FromJson(obj.ToString(), out var errors); + c.Remove("Location"); + elements[elements.Keys.ElementAt(2)] = JsonSerializer.Deserialize(JsonSerializer.Serialize(c)); + rootDict["Elements"] = JsonSerializer.Deserialize(JsonSerializer.Serialize(elements)); + + var modifiedJson = JsonSerializer.Serialize(rootDict, new JsonSerializerOptions { WriteIndented = true }); + + // Deserialize the modified JSON + var newModel = Model.FromJson(modifiedJson); + Assert.Single(newModel.AllElementsOfType()); var newColumn = newModel.AllElementsOfType().First(); Assert.Equal(Vector3.Origin, newColumn.Location); } - [Fact] + // With the move to System.Text.Json, this test is no longer valid. + // Previously we skipped elements that had properties that could not + // be converted to null. System.text.json handles this condition + // by using the default value. In this example, the column location + // is set to null in the json, but deserializes to (0,0,0), which is + // valid. This is a nicer way of handling this condition than not + // creating an element at all. + [Fact(Skip = "Outdated")] public void DeserializationSkipsNullProperties() { var material = BuiltInMaterials.Mass; var model = new Model(); model.AddElement(material); var json = model.ToJson(true); + // https://www.newtonsoft.com/json/help/html/ModifyJson.htm - var obj = JObject.Parse(json); - var elements = obj["Elements"]; - var c = (JObject)elements.Values().ElementAt(0); // the material - - // Nullify a property. - c.Property("Color").Value = null; - var newModel = Model.FromJson(obj.ToString(), out var errors); - foreach (var e in errors) - { - this._output.WriteLine(e); - } - Assert.Empty(newModel.AllElementsOfType()); + // var obj = JObject.Parse(json); + using var doc = JsonDocument.Parse(json); + + var obj = doc.RootElement.Clone(); + var elements = obj.GetProperty("Elements").EnumerateObject(); + var c = elements.ElementAt(2).Value; // the column + + var newModel = Model.FromJson(obj.ToString()); + + Assert.Empty(newModel.AllElementsOfType()); } [Fact] @@ -318,6 +345,14 @@ public void DeserializesToGeometricElementsWhenTypeIsUnknownAndRepresentationExi newModel.ToGlTF(modelPath, true); } + [Fact] + public void DeserializesToGeometricElements() + { + var json = File.ReadAllText("../../../models/Geometry/tower.json"); + var newModel = Model.GeometricElementModelFromJson(json); + newModel.ToGlTF("models/geometric_elements_2.glb"); + } + [Fact] public void SubElementIsAddedToModel() { @@ -424,5 +459,16 @@ private Model QuadPanelModel() model.AddElement(panel); return model; } + + [Fact] + public void ReadsExampleModels() + { + var models = Directory.EnumerateFiles("../../../models/ExampleModels", "*.json"); + foreach (var modelPath in models) + { + var json = File.ReadAllText(modelPath); + var model = Model.FromJson(json); + } + } } } diff --git a/Elements/test/ModelTextTests.cs b/Elements/test/ModelTextTests.cs index 9659a0ab7..7ec5a877a 100644 --- a/Elements/test/ModelTextTests.cs +++ b/Elements/test/ModelTextTests.cs @@ -10,7 +10,6 @@ public class ModelTextTests : ModelTest public ModelTextTests() { this.GenerateIfc = false; - this.GenerateJson = false; } [Fact, Trait("Category", "Example")] diff --git a/Elements/test/NetworkTests.cs b/Elements/test/NetworkTests.cs index b30c60ce4..402487e5c 100644 --- a/Elements/test/NetworkTests.cs +++ b/Elements/test/NetworkTests.cs @@ -7,7 +7,7 @@ using System.Linq; using System.Diagnostics; using System.IO; -using Newtonsoft.Json; +using System.Text.Json; namespace Elements.Tests { @@ -295,7 +295,7 @@ public void FindAllClosedRegionsDoesNotLoopInfinitely() { this.Name = nameof(FindAllClosedRegionsDoesNotLoopInfinitely); var json = File.ReadAllText("../../../models/Geometry/BadNetwork.json"); - var lines = JsonConvert.DeserializeObject>(json); + var lines = JsonSerializer.Deserialize>(json); var network = Network.FromSegmentableItems(lines, (l) => { return l; }, out var allNodeLocations, out var _); Model.AddElements(network.ToModelText(allNodeLocations, Colors.Black)); Model.AddElements(network.ToModelArrows(allNodeLocations, Colors.Blue)); @@ -397,16 +397,16 @@ public void FindClosedRegionWithInnerSegments() [Fact] public void FindClosedRegionWithOuterSegments() { - // An intersecting path that ends at the edge + // An intersecting path that ends at the edge // of a closed region. // - // / - // | + // / + // | // --------------- // | | // | | // | | - // | | + // | | // | | // --------------- @@ -438,7 +438,7 @@ public void IntersectingLeafPathFindsCorrectClosedRegions() // | | // |-------------| // | | - // | / | + // | / | // | | | // --------------- // | @@ -501,7 +501,7 @@ public void TwoInnerLeavesClosedRegions() // | 8 | // | ---| 1 // | 7 9/ | - // | \6 | + // | \6 | // | | | // --------------- // 4 5 0 diff --git a/Elements/test/PolygonTests.cs b/Elements/test/PolygonTests.cs index 959199c26..d0dbc5ab9 100644 --- a/Elements/test/PolygonTests.cs +++ b/Elements/test/PolygonTests.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using Xunit; using Xunit.Abstractions; -using Newtonsoft.Json; using Elements.Tests; using System.IO; using System.Diagnostics; +using System.Text.Json; namespace Elements.Geometry.Tests { @@ -806,8 +806,8 @@ public void UnionAllSequential() { Name = "UnionAllSequential"; // sample data contributed by Marco Juliani - var polygonsA = JsonConvert.DeserializeObject>(File.ReadAllText("../../../models/Geometry/testUnionAll.json")); - var polygonsB = JsonConvert.DeserializeObject>(File.ReadAllText("../../../models/Geometry/testUnionAll_2.json")); + var polygonsA = JsonSerializer.Deserialize>(File.ReadAllText("../../../models/Geometry/testUnionAll.json")); + var polygonsB = JsonSerializer.Deserialize>(File.ReadAllText("../../../models/Geometry/testUnionAll_2.json")); var unionA = Polygon.UnionAll(polygonsA); var unionB = Polygon.UnionAll(polygonsB); Model.AddElements(unionA.Select(u => new ModelCurve(u))); @@ -1128,12 +1128,12 @@ public void DeserializesWithoutDiscriminator() ] } "; - var polygon = JsonConvert.DeserializeObject(json); + var polygon = JsonSerializer.Deserialize(json); // We've created a new Polygon, which will have a discriminator // because it was created using the JsonInheritanceConverter. - var newJson = JsonConvert.SerializeObject(polygon); - var newPolygon = (Polygon)JsonConvert.DeserializeObject(newJson); + var newJson = JsonSerializer.Serialize(polygon); + var newPolygon = (Polygon)JsonSerializer.Deserialize(newJson); Assert.Equal(polygon.Vertices.Count, newPolygon.Vertices.Count); } @@ -1730,8 +1730,8 @@ public void CorrectWindingForTrims() var r = new Random(); - var bigPoly = JsonConvert.DeserializeObject(_bigPoly); - var splitters = JsonConvert.DeserializeObject>(_splitters); + var bigPoly = JsonSerializer.Deserialize(_bigPoly); + var splitters = JsonSerializer.Deserialize>(_splitters); foreach (var splitter in splitters) { @@ -2184,8 +2184,8 @@ public void ExtendWhereSomeSegmentsAreAtOrigin() public void LineTrim() { Name = nameof(LineTrim); - var boundary = JsonConvert.DeserializeObject("{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":27.25008,\"Y\":19.98296,\"Z\":0.0},{\"X\":-14.78244,\"Y\":19.98296,\"Z\":0.0},{\"X\":-14.78244,\"Y\":16.4675,\"Z\":0.0},{\"X\":27.25008,\"Y\":16.4675,\"Z\":0.0}]}"); - var line = JsonConvert.DeserializeObject("{\"discriminator\": \"Elements.Geometry.Line\",\"Start\": {\"X\": -0.771609999999999,\"Y\": 16.46749,\"Z\": 0.0},\"End\": {\"X\": -0.771609999999999,\"Y\": 19.98295,\"Z\": 0.0}\n}"); + var boundary = JsonSerializer.Deserialize("{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":27.25008,\"Y\":19.98296,\"Z\":0.0},{\"X\":-14.78244,\"Y\":19.98296,\"Z\":0.0},{\"X\":-14.78244,\"Y\":16.4675,\"Z\":0.0},{\"X\":27.25008,\"Y\":16.4675,\"Z\":0.0}]}"); + var line = JsonSerializer.Deserialize("{\"discriminator\": \"Elements.Geometry.Line\",\"Start\": {\"X\": -0.771609999999999,\"Y\": 16.46749,\"Z\": 0.0},\"End\": {\"X\": -0.771609999999999,\"Y\": 19.98295,\"Z\": 0.0}\n}"); var trimmed = line.Trim(boundary, out var remainder); Assert.True(trimmed.Sum(l => l.Length()) > 0); @@ -2285,7 +2285,7 @@ public void CoplanarWithinTolerance() // this polygon has some small amount of deviation from planar (6.3e-7) var json = "{\n \"discriminator\": \"Elements.Geometry.Polygon\",\n \"Vertices\": [\n {\n \"X\": 30.00108,\n \"Y\": 0.17123,\n \"Z\": 24.666666666666668\n },\n {\n \"X\": -2.5323,\n \"Y\": 0.17123,\n \"Z\": 24.666666666666668\n },\n {\n \"X\": -2.5322999954223633,\n \"Y\": -8.758851356437756,\n \"Z\": 24.66666603088379\n },\n {\n \"X\": -2.5323,\n \"Y\": -21.3088,\n \"Z\": 24.666666666666668\n },\n {\n \"X\": 7.8653690051598115,\n \"Y\": -21.308799743652344,\n \"Z\": 24.66666603088379\n },\n {\n \"X\": 14.06867950383497,\n \"Y\": -21.308799743652344,\n \"Z\": 24.66666603088379\n },\n {\n \"X\": 21.64777460957137,\n \"Y\": -21.308799743652344,\n \"Z\": 24.66666603088379\n },\n {\n \"X\": 30.00108,\n \"Y\": -21.3088,\n \"Z\": 24.666666666666668\n }\n ]\n }"; // verify does not throw - var polygon = JsonConvert.DeserializeObject(json); + var polygon = JsonSerializer.Deserialize(json); Assert.NotNull(polygon); } @@ -2306,7 +2306,7 @@ public void TrimSkyPlanePolygon1() { Name = nameof(TrimSkyPlanePolygon1); var json = "{\"Item1\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":5.456602446962343,\"Y\":-0.9024812458451947,\"Z\":60.0},{\"X\":22.56585182362492,\"Y\":32.63913758323735,\"Z\":60.0},{\"X\":12.232537580045737,\"Y\":37.91005939478421,\"Z\":31.000000000000313},{\"X\":-4.876711796617052,\"Y\":4.3684405657018885,\"Z\":30.9999999999996}]},\"Item2\":{\"Origin\":{\"X\":18.54496511754798,\"Y\":34.69015228590052,\"Z\":31.000000000000266},\"Normal\":{\"X\":0.4218903484051781,\"Y\":0.8270897771341386,\"Z\":0.3713906763541038}}}"; - var items = JsonConvert.DeserializeObject<(Polygon, Plane)>(json); + var items = JsonSerializer.Deserialize<(Polygon, Plane)>(json); var trimmed = items.Item1.Trimmed(items.Item2, true); Assert.Single(trimmed); Model.AddElement(new Panel(trimmed[0])); @@ -2319,7 +2319,7 @@ public void TrimSkyPlanePolygon2() { Name = nameof(TrimSkyPlanePolygon2); var json = "{\"Item1\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":14.11044881100593,\"Y\":-5.316723034955274,\"Z\":60.0},{\"X\":24.445333749146343,\"Y\":-10.58844604232641,\"Z\":30.999999999999876},{\"X\":40.96973706172442,\"Y\":23.25149700325788,\"Z\":30.999999999999172},{\"X\":30.63485212358372,\"Y\":28.523220010629068,\"Z\":60.0}]},\"Item2\":{\"Origin\":{\"X\":18.54496511754798,\"Y\":34.69015228590052,\"Z\":31.000000000000266},\"Normal\":{\"X\":0.4218903484051781,\"Y\":0.8270897771341386,\"Z\":0.3713906763541038}}}"; - var items = JsonConvert.DeserializeObject<(Polygon, Plane)>(json); + var items = JsonSerializer.Deserialize<(Polygon, Plane)>(json); var trimmed = items.Item1.Trimmed(items.Item2, true); Assert.Single(trimmed); Model.AddElement(new Panel(trimmed[0])); @@ -2332,7 +2332,7 @@ public void TrimSkyPlanePolygon3() { Name = nameof(TrimSkyPlanePolygon3); var json = "{\"Item1\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":23.128761583107114,\"Y\":-13.28462370583442,\"Z\":30.99999999999992},{\"X\":23.12876158310712,\"Y\":-13.284623705834392,\"Z\":-7.588341022412967E-15},{\"X\":40.969737061724466,\"Y\":23.251497003257874,\"Z\":-4.6993153936072985E-15},{\"X\":40.96973706172446,\"Y\":23.251497003257846,\"Z\":30.99999999999918}]},\"Item2\":{\"Origin\":{\"X\":18.54496511754798,\"Y\":34.69015228590052,\"Z\":31.000000000000266},\"Normal\":{\"X\":0.4218903484051781,\"Y\":0.8270897771341386,\"Z\":0.3713906763541038}}}"; - var items = JsonConvert.DeserializeObject<(Polygon, Plane)>(json); + var items = JsonSerializer.Deserialize<(Polygon, Plane)>(json); var trimmed = items.Item1.Trimmed(items.Item2, true); Assert.Null(trimmed); Model.AddElement(new Panel(Polygon.Rectangle(100, 100).TransformedPolygon(new Transform(items.Item2.Origin, items.Item2.Normal)), BuiltInMaterials.Glass)); diff --git a/Elements/test/ProfileTests.cs b/Elements/test/ProfileTests.cs index 6a639d98a..fc41e7bf2 100644 --- a/Elements/test/ProfileTests.cs +++ b/Elements/test/ProfileTests.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using Elements.Spatial; using System.IO; -using Newtonsoft.Json; +using System.Text.Json; namespace Elements.Tests { @@ -422,9 +422,9 @@ public void DifferenceFail() { // This test used to fail with an exception due to a very small polygon produced from the boolean. var aShapeJson = "{\"discriminator\":\"Elements.Geometry.Profile\",\"Perimeter\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-149.51680916003411,\"Y\":-545.6788101645068,\"Z\":0.0},{\"X\":-181.13449678692302,\"Y\":-508.57118930829984,\"Z\":0.0},{\"X\":-185.00173212061222,\"Y\":-476.0495417216826,\"Z\":0.0},{\"X\":-211.47915563014516,\"Y\":-479.19804234633307,\"Z\":0.0},{\"X\":-213.43484799507593,\"Y\":-627.6323068549372,\"Z\":0.0},{\"X\":-169.59832064900132,\"Y\":-624.8068240421294,\"Z\":0.0},{\"X\":-144.53329588528302,\"Y\":-620.4717620034767,\"Z\":0.0}]},\"Voids\":[{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-174.65966226538052,\"Y\":-581.4103523143159,\"Z\":0.0},{\"X\":-174.89675190025594,\"Y\":-599.4087908161704,\"Z\":0.0},{\"X\":-184.89588440128614,\"Y\":-599.2770743523507,\"Z\":0.0},{\"X\":-184.65879476641072,\"Y\":-581.2786358504962,\"Z\":0.0}]}],\"Id\":\"5b65b6a5-b0a4-4373-ba47-76380d379893\",\"Name\":null}"; - var p1 = Newtonsoft.Json.JsonConvert.DeserializeObject(aShapeJson); + var p1 = Element.Deserialize(aShapeJson); var otherPolysJson = "[{\"discriminator\":\"Elements.Geometry.Profile\",\"Perimeter\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-170.30455,\"Y\":-618.83988,\"Z\":0.0},{\"X\":-150.8792,\"Y\":-615.48022,\"Z\":0.0},{\"X\":-155.37154,\"Y\":-548.05882,\"Z\":0.0},{\"X\":-186.87827,\"Y\":-511.08143,\"Z\":0.0},{\"X\":-190.01511,\"Y\":-484.70206,\"Z\":0.0},{\"X\":-205.57554,\"Y\":-486.55239,\"Z\":0.0},{\"X\":-207.34994,\"Y\":-621.22765,\"Z\":0.0}]},\"Voids\":[{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-205.82871,\"Y\":-619.62649,\"Z\":0.0},{\"X\":-204.09299,\"Y\":-487.88667,\"Z\":0.0},{\"X\":-191.3275,\"Y\":-486.36869,\"Z\":0.0},{\"X\":-188.31421,\"Y\":-511.70899,\"Z\":0.0},{\"X\":-156.83522,\"Y\":-548.65382,\"Z\":0.0},{\"X\":-152.46567,\"Y\":-614.23233,\"Z\":0.0},{\"X\":-170.48117,\"Y\":-617.34816,\"Z\":0.0}]}],\"Id\":\"0fbf2cac-126b-45a3-b32e-e53c32c9e05a\",\"Name\":\"Corridor\"},{\"discriminator\":\"Elements.Geometry.Profile\",\"Perimeter\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-153.1705,\"Y\":-580.19402,\"Z\":0.0},{\"X\":-206.8,\"Y\":-579.48763,\"Z\":0.0},{\"X\":-206.81976,\"Y\":-580.98749,\"Z\":0.0},{\"X\":-184.6588,\"Y\":-581.27939,\"Z\":0.0},{\"X\":-184.65879,\"Y\":-581.27864,\"Z\":0.0},{\"X\":-174.65966,\"Y\":-581.41035,\"Z\":0.0},{\"X\":-174.65967,\"Y\":-581.41109,\"Z\":0.0},{\"X\":-153.19026,\"Y\":-581.69388,\"Z\":0.0}]},\"Voids\":[],\"Id\":\"a02d7813-883b-4bd4-8bd5-47aa0ce8ac05\",\"Name\":null},{\"discriminator\":\"Elements.Geometry.Profile\",\"Perimeter\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-184.89513,\"Y\":-599.27708,\"Z\":0.0},{\"X\":-184.89588,\"Y\":-599.27707,\"Z\":0.0},{\"X\":-184.65879,\"Y\":-581.27864,\"Z\":0.0},{\"X\":-184.65805,\"Y\":-581.27865,\"Z\":0.0},{\"X\":-183.76997,\"Y\":-513.85917,\"Z\":0.0},{\"X\":-185.26983,\"Y\":-513.83941,\"Z\":0.0},{\"X\":-186.66607,\"Y\":-619.83625,\"Z\":0.0},{\"X\":-185.16621,\"Y\":-619.85601,\"Z\":0.0}]},\"Voids\":[],\"Id\":\"59c1f71d-7c88-4fa3-8b79-6d799f6f80f0\",\"Name\":null},{\"discriminator\":\"Elements.Geometry.Profile\",\"Perimeter\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-151.87004,\"Y\":-599.71136,\"Z\":0.0},{\"X\":-174.89674,\"Y\":-599.40804,\"Z\":0.0},{\"X\":-174.89675,\"Y\":-599.40879,\"Z\":0.0},{\"X\":-184.89588,\"Y\":-599.27707,\"Z\":0.0},{\"X\":-184.89587,\"Y\":-599.27633,\"Z\":0.0},{\"X\":-207.05688,\"Y\":-598.98441,\"Z\":0.0},{\"X\":-207.07664,\"Y\":-600.48427,\"Z\":0.0},{\"X\":-151.8898,\"Y\":-601.21122,\"Z\":0.0}]},\"Voids\":[],\"Id\":\"b320c3f1-eac5-46a9-9ed5-3bb49a5e38e9\",\"Name\":null},{\"discriminator\":\"Elements.Geometry.Profile\",\"Perimeter\":{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-172.44555,\"Y\":-527.14991,\"Z\":0.0},{\"X\":-173.94541,\"Y\":-527.13015,\"Z\":0.0},{\"X\":-174.66041,\"Y\":-581.41034,\"Z\":0.0},{\"X\":-174.65966,\"Y\":-581.41035,\"Z\":0.0},{\"X\":-174.89675,\"Y\":-599.40879,\"Z\":0.0},{\"X\":-174.89749,\"Y\":-599.40878,\"Z\":0.0},{\"X\":-175.1568,\"Y\":-619.09442,\"Z\":0.0},{\"X\":-173.65694,\"Y\":-619.11418,\"Z\":0.0}]},\"Voids\":[],\"Id\":\"82060be1-c38b-4eaf-aa5f-6792f6839f37\",\"Name\":null}]"; - var otherPolys = Newtonsoft.Json.JsonConvert.DeserializeObject>(otherPolysJson); + var otherPolys = Element.Deserialize>(otherPolysJson); var result = Elements.Geometry.Profile.Difference(new[] { p1 }, otherPolys); } @@ -433,7 +433,7 @@ public void DifferenceFail2() { this.Name = nameof(DifferenceFail2); var json = File.ReadAllText("../../../models/Geometry/differenceFail2.json"); - var profiles = JsonConvert.DeserializeObject>>(json); + var profiles = Element.Deserialize>>(json); var firstSet = profiles["levelBoundaryCleaned"]; var secondSet = profiles["insetProfiles"]; var diff = Elements.Geometry.Profile.Difference(firstSet, secondSet); @@ -448,10 +448,10 @@ public void SplitDonutProfileFromFunction() { Name = "SplitDonutProfileFromFunction"; - var perim = Newtonsoft.Json.JsonConvert.DeserializeObject("{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":76.30921,\"Y\":46.63686,\"Z\":0.0},{\"X\":-75.42933,\"Y\":46.63686,\"Z\":0.0},{\"X\":-75.42933,\"Y\":-30.00397,\"Z\":0.0},{\"X\":76.30921,\"Y\":-30.00397,\"Z\":0.0}]}"); - var voids = Newtonsoft.Json.JsonConvert.DeserializeObject>("[{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-69.42933,\"Y\":-24.00397,\"Z\":0.0},{\"X\":-69.42933,\"Y\":40.63686,\"Z\":0.0},{\"X\":70.30921,\"Y\":40.63686,\"Z\":0.0},{\"X\":70.30921,\"Y\":-24.00397,\"Z\":0.0}]}]"); + var perim = JsonSerializer.Deserialize("{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":76.30921,\"Y\":46.63686,\"Z\":0.0},{\"X\":-75.42933,\"Y\":46.63686,\"Z\":0.0},{\"X\":-75.42933,\"Y\":-30.00397,\"Z\":0.0},{\"X\":76.30921,\"Y\":-30.00397,\"Z\":0.0}]}"); + var voids = JsonSerializer.Deserialize>("[{\"discriminator\":\"Elements.Geometry.Polygon\",\"Vertices\":[{\"X\":-69.42933,\"Y\":-24.00397,\"Z\":0.0},{\"X\":-69.42933,\"Y\":40.63686,\"Z\":0.0},{\"X\":70.30921,\"Y\":40.63686,\"Z\":0.0},{\"X\":70.30921,\"Y\":-24.00397,\"Z\":0.0}]}]"); var profileToSplit = new Profile(perim, voids, Guid.NewGuid(), null); - var splitters = Newtonsoft.Json.JsonConvert.DeserializeObject>("[{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":76.40920999999999,\"Y\":46.63686,\"Z\":0.0},{\"X\":-75.52932999999997,\"Y\":46.63686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-75.42933,\"Y\":46.83686,\"Z\":0.0},{\"X\":-75.42933,\"Y\":-30.20397,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-75.52932999999999,\"Y\":-30.00397,\"Z\":0.0},{\"X\":76.40920999999997,\"Y\":-30.00397,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":76.30921,\"Y\":-30.20397,\"Z\":0.0},{\"X\":76.30921,\"Y\":46.83686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-69.42933,\"Y\":-30.103969999999997,\"Z\":0.0},{\"X\":-69.42933,\"Y\":46.73686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-69.52932999999999,\"Y\":40.63686,\"Z\":0.0},{\"X\":70.40920999999997,\"Y\":40.63686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":70.30921,\"Y\":46.73686000000001,\"Z\":0.0},{\"X\":70.30921,\"Y\":-30.103969999999997,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":70.40920999999999,\"Y\":-24.00397,\"Z\":0.0},{\"X\":-69.52932999999997,\"Y\":-24.00397,\"Z\":0.0}]}]"); + var splitters = JsonSerializer.Deserialize>("[{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":76.40920999999999,\"Y\":46.63686,\"Z\":0.0},{\"X\":-75.52932999999997,\"Y\":46.63686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-75.42933,\"Y\":46.83686,\"Z\":0.0},{\"X\":-75.42933,\"Y\":-30.20397,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-75.52932999999999,\"Y\":-30.00397,\"Z\":0.0},{\"X\":76.40920999999997,\"Y\":-30.00397,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":76.30921,\"Y\":-30.20397,\"Z\":0.0},{\"X\":76.30921,\"Y\":46.83686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-69.42933,\"Y\":-30.103969999999997,\"Z\":0.0},{\"X\":-69.42933,\"Y\":46.73686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":-69.52932999999999,\"Y\":40.63686,\"Z\":0.0},{\"X\":70.40920999999997,\"Y\":40.63686,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":70.30921,\"Y\":46.73686000000001,\"Z\":0.0},{\"X\":70.30921,\"Y\":-30.103969999999997,\"Z\":0.0}]},{\"discriminator\":\"Elements.Geometry.Polyline\",\"Vertices\":[{\"X\":70.40920999999999,\"Y\":-24.00397,\"Z\":0.0},{\"X\":-69.52932999999997,\"Y\":-24.00397,\"Z\":0.0}]}]"); Model.AddElement(perim); voids.ForEach((v) => Model.AddElement(v)); Model.AddElements(splitters.Select(s => new ModelCurve(s, BuiltInMaterials.XAxis))); @@ -518,8 +518,8 @@ public void ProfileInvalidWontThrow() public void DifferenceToleratesBadGeometry() { Name = nameof(DifferenceToleratesBadGeometry); - var cp = JsonConvert.DeserializeObject>(File.ReadAllText("../../../models/Geometry/corridorProfiles.json")); - var lb = JsonConvert.DeserializeObject(File.ReadAllText("../../../models/Geometry/levelBoundary.json")); + var cp = Element.Deserialize>(File.ReadAllText("../../../models/Geometry/corridorProfiles.json")); + var lb = Element.Deserialize(File.ReadAllText("../../../models/Geometry/levelBoundary.json")); var results = Elements.Geometry.Profile.Difference(new[] { lb }, cp); Model.AddElements(results); Model.AddElements(results.SelectMany(r => r.ToModelCurves())); @@ -529,11 +529,13 @@ public void DifferenceToleratesBadGeometry() [Fact] public void SplitComplexProfileWithInnerVoids() { + throw new Exception("This test fails during deserialization validation, and it can't be caught because the new deserializer doesn't handle exceptions. We need to figure this out before we release."); + Name = nameof(SplitComplexProfileWithInnerVoids); var profileJson = File.ReadAllText("../../../models/Geometry/complex-profile-w-voids.json"); var segmentsJson = File.ReadAllText("../../../models/Geometry/splitsegments.json"); - var profiles = JsonConvert.DeserializeObject>(profileJson); - var segments = JsonConvert.DeserializeObject>(segmentsJson); + var profiles = JsonSerializer.Deserialize>(profileJson); + var segments = JsonSerializer.Deserialize>(segmentsJson); var splits = Elements.Geometry.Profile.Split(profiles, segments.Select(l => l.ToPolyline(1))); // Value determined experimentally. If this test breaks, verify output visually — // it's not necessarily the end of the world if the number changes slightly, but we want to diff --git a/Elements/test/SolidTests.cs b/Elements/test/SolidTests.cs index 96aabafea..e60b4705f 100644 --- a/Elements/test/SolidTests.cs +++ b/Elements/test/SolidTests.cs @@ -2,7 +2,6 @@ using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Geometry.Profiles; -using Newtonsoft.Json; using Xunit.Abstractions; using System.Collections.Generic; using System; @@ -10,6 +9,7 @@ using Elements.Serialization.glTF; using Elements.Serialization.JSON; using System.Linq; +using System.Text.Json; using Elements.Geometry.Tessellation; namespace Elements.Tests @@ -196,15 +196,16 @@ public void Serialization() var materials = new Dictionary(); var defMaterial = BuiltInMaterials.Default; materials.Add(defMaterial.Id, defMaterial); - var json = JsonConvert.SerializeObject(solid, new JsonSerializerSettings() - { - Converters = new[] { new SolidConverter(materials) }, - Formatting = Formatting.Indented - }); - var newSolid = JsonConvert.DeserializeObject(json, new JsonSerializerSettings() + + var options = new JsonSerializerOptions() { - Converters = new[] { new SolidConverter(materials) } - }); + WriteIndented = true + }; + options.Converters.Add(new SolidConverter()); + + var json = JsonSerializer.Serialize(solid, options); + var newSolid = JsonSerializer.Deserialize(json, options); + Assert.Equal(8, newSolid.Vertices.Count); Assert.Equal(12, newSolid.Edges.Count); Assert.Equal(6, newSolid.Faces.Count); @@ -271,14 +272,21 @@ public void CreateLaminaWithHoles() public void ConstructedSolidProducesValidGlb() { Name = nameof(ConstructedSolidProducesValidGlb); - var allPolygons = JsonConvert.DeserializeObject innerLoops)>>(File.ReadAllText("../../../models/Geometry/ExampleConstructedSolidPolygons.json")); + + var options = new JsonSerializerOptions() + { + IncludeFields = true + }; + var allPolygons = JsonSerializer.Deserialize innerLoops)>>(File.ReadAllText("../../../models/Geometry/ExampleConstructedSolidPolygons.json"), options); var solid = new Solid(); - foreach (var face in allPolygons) + foreach (var (outerLoop, innerLoops) in allPolygons) { - solid.AddFace(face.outerLoop, face.innerLoops, true); + solid.AddFace(outerLoop, innerLoops, true); } - var solidOp = new Elements.Geometry.Solids.ConstructedSolid(solid, false); - solidOp.LocalTransform = new Transform(); + var solidOp = new ConstructedSolid(solid, false) + { + LocalTransform = new Transform() + }; var geoElem = new GeometricElement(new Transform(), BuiltInMaterials.Concrete, new Representation(new[] { solidOp }), false, Guid.NewGuid(), null); var model = new Model(); model.AddElement(geoElem); @@ -511,7 +519,7 @@ public void SweepWithSetbacksRegressionTest() { Name = nameof(SweepWithSetbacksRegressionTest); Polygon crossSection = Polygon.Rectangle(0.25, 0.25); - + Polyline curve = new(new List { new Vector3(x: 20.0, y: 15.0, z:0.0), @@ -520,7 +528,7 @@ public void SweepWithSetbacksRegressionTest() new Vector3(x: 19.5, y: 14.5, z:1.5), } ); - + var sweep = new Sweep( new Profile(crossSection), curve, @@ -543,7 +551,9 @@ public void SolidPlaneIntersectionTests(string name, string path) var r = new Random(); - var di = JsonConvert.DeserializeObject(File.ReadAllText(path), new[] { new SolidConverter() }); + var options = new JsonSerializerOptions(); + options.Converters.Add(new SolidConverter()); + var di = JsonSerializer.Deserialize(File.ReadAllText(path), options); foreach (var solid in di.Solid) { Assert.True(di.Plane.Normal.IsUnitized()); @@ -770,7 +780,7 @@ public void TessellationHasCorrectNumberOfVertices() [Fact] public void TesselationOfModelThatProducesEmptyTrianles() { - var model = Model.FromJson(File.ReadAllText("../../../models/Geometry/WallFromBasicModel.json"), out var errors); + var model = Model.FromJson(File.ReadAllText("../../../models/Geometry/WallFromBasicModel.json")); var wall = model.AllElementsOfType().First(); wall.UpdateRepresentations(); wall.UpdateBoundsAndComputeSolid(); diff --git a/Elements/test/StructuralFramingTests.cs b/Elements/test/StructuralFramingTests.cs index a2f81d677..790672712 100644 --- a/Elements/test/StructuralFramingTests.cs +++ b/Elements/test/StructuralFramingTests.cs @@ -5,6 +5,7 @@ using Xunit; using System.Diagnostics; using System.Collections.Generic; +using Xunit.Abstractions; namespace Elements.Tests { @@ -22,8 +23,11 @@ public enum BeamType private WideFlangeProfile _testProfile; - public StructuralFramingTests() + private ITestOutputHelper _output; + + public StructuralFramingTests(ITestOutputHelper output) { + _output = output; _testProfile = _wideFlangeFactory.GetProfileByType(WideFlangeProfileType.W10x100); } diff --git a/Elements/test/TopographyTests.cs b/Elements/test/TopographyTests.cs index 107eb4da0..10ba39a50 100644 --- a/Elements/test/TopographyTests.cs +++ b/Elements/test/TopographyTests.cs @@ -6,12 +6,13 @@ using Elements.Geometry; using Elements.Geometry.Solids; using Elements.Spatial; -using Newtonsoft.Json; +using System.Text.Json.Serialization; using SixLabors.ImageSharp; using SixLabors.ImageSharp.PixelFormats; using Xunit; using Xunit.Abstractions; using SixLabors.ImageSharp.Processing; +using System.Text.Json; namespace Elements.Tests { @@ -31,7 +32,7 @@ public void Example() // // Read topo elevations from a file. - var data = JsonConvert.DeserializeObject>(File.ReadAllText("./elevations.json")); + var data = JsonSerializer.Deserialize>(File.ReadAllText("./elevations.json")); var latitude = 45; var elevations = data["points"]; var tileSize = WebMercatorProjection.GetTileSizeMeters(latitude, 15); @@ -440,7 +441,7 @@ public void CreateTopoFromMesh() private static Topography CreateTopoFromMapboxElevations(Vector3 origin = default(Vector3), Material material = null) { // Read topo elevations - var data = JsonConvert.DeserializeObject>(File.ReadAllText("./elevations.json")); + var data = JsonSerializer.Deserialize>(File.ReadAllText("./elevations.json")); var elevations = data["points"]; // Compute the mapbox tile side length. diff --git a/Elements/test/UserElementTests.cs b/Elements/test/UserElementTests.cs index e1e568d08..84514d3c0 100644 --- a/Elements/test/UserElementTests.cs +++ b/Elements/test/UserElementTests.cs @@ -1,8 +1,10 @@ using Elements.Geometry; using Elements.Geometry.Solids; +using Elements.Serialization.JSON; using System; using System.Collections.Generic; using System.Linq; +using System.Text.Json.Serialization; using Xunit; namespace Elements.Tests @@ -12,12 +14,15 @@ public class TestUserElement : GeometricElement public Line CenterLine { get; set; } // Used to test serialization of top level elements. + [JsonConverter(typeof(ElementConverter))] public Profile Profile { get; set; } // Used to test serialization of lists of sub elements. + [JsonConverter(typeof(ElementConverter>))] public List SubElements { get; set; } // Used to test dictionaries of sub elements. + [JsonConverter(typeof(ElementConverter>))] public Dictionary DictionaryElements { get; set; } internal TestUserElement() : base(null, @@ -74,15 +79,16 @@ public void CreateCustomElement() var m = new Material("UserElementGreen", Colors.Green); var ue = new TestUserElement(line, new Profile(Polygon.L(1, 2, 0.5)), m); - var p = new Profile(Polygon.Rectangle(1, 1)); + var p = new Profile(Polygon.Rectangle(2, 2)); var m1 = new Mass(p, 1, BuiltInMaterials.Wood); ue.SubElements.Add(m1); + ue.DictionaryElements.Add("foo", m1); this.Model.AddElement(ue); var json = this.Model.ToJson(); - var newModel = Model.FromJson(json, out var errors); - Assert.Empty(errors); + var newModel = Model.FromJson(json); + var newUe = newModel.AllElementsOfType().First(); // Plus one because of the profile that will be added from @@ -92,6 +98,8 @@ public void CreateCustomElement() Assert.Equal(ue.Representation.SolidOperations.Count, newUe.Representation.SolidOperations.Count); Assert.Equal(ue.Id, newUe.Id); Assert.Equal(ue.Transform, newUe.Transform); + Assert.Equal(ue.SubElements[0].Id, newUe.SubElements[0].Id); + Assert.Equal(ue.DictionaryElements["foo"].Id, newUe.DictionaryElements["foo"].Id); // Three profiles. // 1. The user element diff --git a/Elements/test/VectorTests.cs b/Elements/test/VectorTests.cs index 44957050e..6016d91d1 100644 --- a/Elements/test/VectorTests.cs +++ b/Elements/test/VectorTests.cs @@ -1,7 +1,7 @@ using Elements.Geometry; -using Newtonsoft.Json; using System; using System.Collections.Generic; +using System.Text.Json; using Xunit; namespace Elements.Tests @@ -637,7 +637,7 @@ public void PointsAreCoplanarWithinTolerance() // Test with a real-world output from Hypar that was failing. var ptsSerialized = "[{\"X\":0.0,\"Y\":0.0,\"Z\":0.0},{\"X\":20.0,\"Y\":0.0,\"Z\":-8.43769498715119E-15},{\"X\":19.999999999999996,\"Y\":20.0,\"Z\":-1.021405182655144E-14},{\"X\":9.999999999999995,\"Y\":20.0,\"Z\":-3.096967127191874E-13},{\"X\":10.0,\"Y\":10.0,\"Z\":-4.218847493575595E-15},{\"X\":1.7763568394002505E-15,\"Y\":9.999999999999998,\"Z\":0.0}]"; - var pts = JsonConvert.DeserializeObject>(ptsSerialized); + var pts = JsonSerializer.Deserialize>(ptsSerialized); Assert.True(pts.AreCoplanar()); // Test with a shape that has a lot of coincident and collinear points. diff --git a/Elements/test/models/ExampleModels/965190d2-9fda-459a-9127-9cf118bbd726.json b/Elements/test/models/ExampleModels/965190d2-9fda-459a-9127-9cf118bbd726.json new file mode 100644 index 000000000..eb66e80dd --- /dev/null +++ b/Elements/test/models/ExampleModels/965190d2-9fda-459a-9127-9cf118bbd726.json @@ -0,0 +1 @@ +{"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Elements":{"4bc59533-24e9-4a9a-9d52-94b9a3b3bce7":{"discriminator":"Elements.ElementProxy","elementId":"08d4077b-f755-4067-9175-2eba595a91e1","dependency":"Site","Id":"4bc59533-24e9-4a9a-9d52-94b9a3b3bce7","Name":null,"associatedIdentities":{"Site Constraints":[{"id":"492d46b9-9822-4308-8e9e-b12038923a63","identity":{"Perimeter":{"discriminator":"Elements.Geometry.Polygon","Vertices":[{"X":-14.316353138132353,"Y":-88.59469246558933,"Z":0.0},{"X":73.63994196619683,"Y":-42.39295960994068,"Z":0.0},{"X":48.46512666893233,"Y":5.5334567087160025,"Z":0.0},{"X":-39.491168435396844,"Y":-40.66827614693267,"Z":0.0}]},"Add Id":"261dc848-475b-4030-86ba-b6b6c95318b4"}}]},"associatedValues":{"Site Constraints":{"Floor Area Ratio":{},"Building Height":{"Maximum":54.863998244352054},"Lot Coverage":{}}}},"2abe5b82-bc1a-4a6e-9586-7d5366fe423a":{"discriminator":"Elements.SiteConstraintInfo","MinFAR":null,"MaxFAR":null,"MinHeight":null,"MaxHeight":54.863998244352054,"MinLotCoverage":null,"MaxLotCoverage":null,"SiteAddId":"261dc848-475b-4030-86ba-b6b6c95318b4","Site":"08d4077b-f755-4067-9175-2eba595a91e1","Id":"2abe5b82-bc1a-4a6e-9586-7d5366fe423a","Name":null},"ff346f61-ab71-49db-a4f1-d09e7fd89a3a":{"discriminator":"Elements.Material","Color":{"Red":0.5,"Green":0.5,"Blue":0.5,"Alpha":1.0},"SpecularFactor":0.1,"GlossinessFactor":0.1,"Unlit":false,"DoubleSided":false,"RepeatTexture":true,"InterpolateTexture":true,"EmissiveFactor":0.0,"Draw In Front":false,"EdgeDisplaySettings":{"LineWidth":2.0,"WidthMode":0,"DashMode":1,"DashSize":20.0,"GapSize":10.0},"Id":"ff346f61-ab71-49db-a4f1-d09e7fd89a3a","Name":null},"fe30a1cb-ceb0-4025-ac37-7865be11d007":{"discriminator":"Elements.Setback","EndingHeight":54.863998244352054,"Add Id":"🤡261dc848-475b-4030-86ba-b6b6c95318b41","Baseline":{"discriminator":"Elements.Geometry.Line","Start":{"X":31.19086372901,"Y":-73.58612101459846,"Z":2.9753977059954195E-14},"End":{"X":73.63994196619683,"Y":-42.39295960994068,"Z":0.0}},"Distance":0.0,"Starting Height":0.0,"Site":"08d4077b-f755-4067-9175-2eba595a91e1","Angle":0.0,"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Material":"ff346f61-ab71-49db-a4f1-d09e7fd89a3a","Representation":null,"IsElementDefinition":false,"Id":"fe30a1cb-ceb0-4025-ac37-7865be11d007","Name":null},"8af8f63b-17c7-479e-8098-3eacac3b1357":{"discriminator":"Elements.Setback","EndingHeight":54.863998244352054,"Add Id":"🤡261dc848-475b-4030-86ba-b6b6c95318b42","Baseline":{"discriminator":"Elements.Geometry.Line","Start":{"X":73.63994196619683,"Y":-42.39295960994068,"Z":0.0},"End":{"X":48.46512666893233,"Y":5.5334567087160025,"Z":0.0}},"Distance":0.0,"Starting Height":0.0,"Site":"08d4077b-f755-4067-9175-2eba595a91e1","Angle":0.0,"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Material":"ff346f61-ab71-49db-a4f1-d09e7fd89a3a","Representation":null,"IsElementDefinition":false,"Id":"8af8f63b-17c7-479e-8098-3eacac3b1357","Name":null},"0db3f3ca-6f2c-4e2e-b46a-1bde5cf65f92":{"discriminator":"Elements.Setback","EndingHeight":54.863998244352054,"Add Id":"🤡261dc848-475b-4030-86ba-b6b6c95318b44","Baseline":{"discriminator":"Elements.Geometry.Line","Start":{"X":-39.491168435396844,"Y":-40.66827614693267,"Z":0.0},"End":{"X":-14.316353138132104,"Y":-88.59469246558979,"Z":3.9968028886505635E-15}},"Distance":0.0,"Starting Height":0.0,"Site":"08d4077b-f755-4067-9175-2eba595a91e1","Angle":0.0,"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Material":"ff346f61-ab71-49db-a4f1-d09e7fd89a3a","Representation":null,"IsElementDefinition":false,"Id":"0db3f3ca-6f2c-4e2e-b46a-1bde5cf65f92","Name":null},"10c06ddb-2389-4f9b-b155-7887f5dc2cf8":{"discriminator":"Elements.Setback","EndingHeight":54.863998244352054,"Add Id":"🤡261dc848-475b-4030-86ba-b6b6c95318b40","Baseline":{"discriminator":"Elements.Geometry.Line","Start":{"X":-14.31635,"Y":-88.59469,"Z":0.0},"End":{"X":31.19086372901,"Y":-73.58612101459846,"Z":0.0}},"Distance":6.095999804928006,"Starting Height":0.0,"Site":"08d4077b-f755-4067-9175-2eba595a91e1","Angle":0.0,"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Material":"ff346f61-ab71-49db-a4f1-d09e7fd89a3a","Representation":null,"IsElementDefinition":false,"Id":"10c06ddb-2389-4f9b-b155-7887f5dc2cf8","Name":null,"associatedIdentities":{"Setbacks":[{"id":"19dcd2c9-cc5b-4f50-9b69-1fdd24626148","identity":{"Add Id":"🤡261dc848-475b-4030-86ba-b6b6c95318b40"}}]}},"3f058eb5-afbd-44d3-a24b-37f8e2fc42be":{"discriminator":"Elements.Setback","EndingHeight":54.863998244352054,"Add Id":"🤡261dc848-475b-4030-86ba-b6b6c95318b43","Baseline":{"discriminator":"Elements.Geometry.Line","Start":{"X":-39.491168435396844,"Y":-40.66827614693267,"Z":0.0},"End":{"X":-14.316353138132353,"Y":-88.59469246558933,"Z":0.0}},"Distance":9.143999707392009,"Starting Height":15.239999512320015,"Site":"08d4077b-f755-4067-9175-2eba595a91e1","Angle":0.0,"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Material":"ff346f61-ab71-49db-a4f1-d09e7fd89a3a","Representation":null,"IsElementDefinition":false,"Id":"3f058eb5-afbd-44d3-a24b-37f8e2fc42be","Name":null,"associatedIdentities":{"Setbacks":[{"id":"bd083201-1e1a-4ff0-96fe-ba4eec138904","identity":{"Add Id":"🤡261dc848-475b-4030-86ba-b6b6c95318b43"}}]}}}} \ No newline at end of file diff --git a/Elements/test/models/ExampleModels/cb1a4e4c-8522-4a6c-937c-56170c37eed3.json b/Elements/test/models/ExampleModels/cb1a4e4c-8522-4a6c-937c-56170c37eed3.json new file mode 100644 index 000000000..2c8c19429 --- /dev/null +++ b/Elements/test/models/ExampleModels/cb1a4e4c-8522-4a6c-937c-56170c37eed3.json @@ -0,0 +1 @@ +{"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Elements":{"42ea47e8-c66a-4eaf-adff-f12c3e992684":{"discriminator":"Elements.Material","Color":{"Red":0.49411764705882355,"Green":0.803921568627451,"Blue":0.6235294117647059,"Alpha":1.0},"SpecularFactor":0.0,"GlossinessFactor":0.0,"Unlit":false,"DoubleSided":false,"RepeatTexture":true,"InterpolateTexture":true,"EmissiveFactor":1.0,"Draw In Front":false,"EdgeDisplaySettings":null,"Id":"42ea47e8-c66a-4eaf-adff-f12c3e992684","Name":"site"},"08d4077b-f755-4067-9175-2eba595a91e1":{"discriminator":"Elements.Site","Add Id":"261dc848-475b-4030-86ba-b6b6c95318b4","Perimeter":{"discriminator":"Elements.Geometry.Polygon","Vertices":[{"X":-14.316353138132104,"Y":-88.59469246558979,"Z":3.9968028886505635E-15},{"X":31.19086372901,"Y":-73.58612101459846,"Z":2.9753977059954195E-14},{"X":73.63994196619683,"Y":-42.39295960994068,"Z":0.0},{"X":48.46512666893233,"Y":5.5334567087160025,"Z":0.0},{"X":-39.491168435396844,"Y":-40.66827614693267,"Z":0.0}]},"Area":5769.757076602235,"Transform":{"Matrix":{"Components":[1.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.0,1.0,0.0]}},"Material":"42ea47e8-c66a-4eaf-adff-f12c3e992684","Representation":{"SolidOperations":[{"discriminator":"Elements.Geometry.Solids.Lamina","Perimeter":{"discriminator":"Elements.Geometry.Polygon","Vertices":[{"X":-14.316353138132104,"Y":-88.59469246558979,"Z":0.0010000000000039968},{"X":31.19086372901,"Y":-73.58612101459846,"Z":0.001000000000029754},{"X":73.63994196619683,"Y":-42.39295960994068,"Z":0.001},{"X":48.46512666893233,"Y":5.5334567087160025,"Z":0.001},{"X":-39.491168435396844,"Y":-40.66827614693267,"Z":0.001}]},"Voids":[],"LocalTransform":null,"IsVoid":false}]},"IsElementDefinition":false,"Id":"08d4077b-f755-4067-9175-2eba595a91e1","Name":null,"associatedIdentities":{"Site Addition":[{"id":"261dc848-475b-4030-86ba-b6b6c95318b4","identity":null}],"Site":[{"id":"a4678d49-a71a-4073-a67b-2acf6f097a0c","identity":{"Add Id":"261dc848-475b-4030-86ba-b6b6c95318b4"}}]}}}} \ No newline at end of file diff --git a/Elements/test/models/Geometry/tower.json b/Elements/test/models/Geometry/tower.json new file mode 100644 index 000000000..a8ad0ba51 --- /dev/null +++ b/Elements/test/models/Geometry/tower.json @@ -0,0 +1,144757 @@ +{ + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Elements": { + "77a9f129-0920-40f0-9e77-044b189f100b": { + "discriminator": "Elements.Geometry.Profiles.WideFlangeProfile", + "d": 0.40386, + "tw": 0.038862, + "bf": 0.33274, + "tf": 0.062738, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.16637, + "Y": 0.20193, + "Z": 0.0 + }, + { + "X": -0.16637, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.019431, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.019431, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.16637, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": -0.16637, + "Y": -0.20193, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": -0.20193, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.019431, + "Y": -0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.019431, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": 0.13919199999999998, + "Z": 0.0 + }, + { + "X": 0.16637, + "Y": 0.20193, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "77a9f129-0920-40f0-9e77-044b189f100b", + "Name": "W12x279" + }, + "f4f88090-a34c-42af-9cb8-30bca38ef11e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7342488177745831, + "Green": 0.9899171818932133, + "Blue": 0.30313707110618104, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f4f88090-a34c-42af-9cb8-30bca38ef11e", + "Name": "ffa6b3b5-5a87-49ff-ba32-c2f50515b46c" + }, + "cf453dad-ab5e-49ba-ba24-d5df93119866": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f4f88090-a34c-42af-9cb8-30bca38ef11e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cf453dad-ab5e-49ba-ba24-d5df93119866", + "Name": null + }, + "d26b17d3-f6bf-4eab-a625-1dfe416433f0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3389443128085436, + "Green": 0.16118375545422722, + "Blue": 0.5312237681500724, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d26b17d3-f6bf-4eab-a625-1dfe416433f0", + "Name": "05bf2e90-0caf-4496-bc90-2bdb95dce4a5" + }, + "529c8a8a-0469-4ee0-90a7-5c701dd83ece": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -58.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d26b17d3-f6bf-4eab-a625-1dfe416433f0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -58.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "529c8a8a-0469-4ee0-90a7-5c701dd83ece", + "Name": null + }, + "8775cab2-6e13-45f7-a802-8bf045e026c0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4009919471112042, + "Green": 0.3825796574273052, + "Blue": 0.6625239162996989, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8775cab2-6e13-45f7-a802-8bf045e026c0", + "Name": "4c4f4337-f8f9-48e8-8cd3-5abd01bba1b2" + }, + "ce4db56d-928e-4b33-941d-16a502388a3f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -57.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -57.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8775cab2-6e13-45f7-a802-8bf045e026c0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -57.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -57.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ce4db56d-928e-4b33-941d-16a502388a3f", + "Name": null + }, + "125305b1-37a0-484c-b268-a7d5bdefa462": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3616121049791631, + "Green": 0.2888516594138237, + "Blue": 0.9483488793244347, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "125305b1-37a0-484c-b268-a7d5bdefa462", + "Name": "636007ae-9fdf-46bb-87dc-8d9974634d71" + }, + "fad93883-fb0c-4a1e-aa9b-4f18f0f2490b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -56.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "125305b1-37a0-484c-b268-a7d5bdefa462", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -56.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fad93883-fb0c-4a1e-aa9b-4f18f0f2490b", + "Name": null + }, + "f42d89f9-6cd5-4c9e-9096-f555195bbb83": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6455493022899839, + "Green": 0.9451100206678315, + "Blue": 0.15982116719699518, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f42d89f9-6cd5-4c9e-9096-f555195bbb83", + "Name": "9b65595c-0140-4de4-b31f-79c2ea739c09" + }, + "2b1da427-1f95-49ad-9976-7810953a0078": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -55.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f42d89f9-6cd5-4c9e-9096-f555195bbb83", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -55.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2b1da427-1f95-49ad-9976-7810953a0078", + "Name": null + }, + "94edc645-3811-42f8-8f9b-4ce0d023a11c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4890142308962598, + "Green": 0.3518197295962925, + "Blue": 0.754810053275344, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "94edc645-3811-42f8-8f9b-4ce0d023a11c", + "Name": "1938be4a-74d5-4ff0-b23b-a284fca72434" + }, + "a1cfd414-66fd-465a-a1a5-e91aae80e679": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -54.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -54.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "94edc645-3811-42f8-8f9b-4ce0d023a11c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -54.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -54.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a1cfd414-66fd-465a-a1a5-e91aae80e679", + "Name": null + }, + "d3c758e4-76b6-4b56-b1c3-fa28678a1e7d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1313233841822126, + "Green": 0.45660366604877806, + "Blue": 0.9943902534406587, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d3c758e4-76b6-4b56-b1c3-fa28678a1e7d", + "Name": "783b809a-3b2a-4fe3-9c83-d30389e4eef1" + }, + "89c9038b-5fe8-4db1-8c83-e04561e74381": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -53.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d3c758e4-76b6-4b56-b1c3-fa28678a1e7d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -53.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "89c9038b-5fe8-4db1-8c83-e04561e74381", + "Name": null + }, + "733e117a-34b8-4a96-a130-50b5b4706580": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3620129126878515, + "Green": 0.7918260003402019, + "Blue": 0.3609958916720915, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "733e117a-34b8-4a96-a130-50b5b4706580", + "Name": "af53bdbd-5a5d-4874-9929-5478635750e7" + }, + "21a8a705-3f72-4385-a38d-2e0196bb3de5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -52.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "733e117a-34b8-4a96-a130-50b5b4706580", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -52.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "21a8a705-3f72-4385-a38d-2e0196bb3de5", + "Name": null + }, + "4c644c8d-91d2-42cb-a8c4-f869fd6a5a96": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5061224747943331, + "Green": 0.04256310083091403, + "Blue": 0.3818656687540308, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4c644c8d-91d2-42cb-a8c4-f869fd6a5a96", + "Name": "95218879-b39b-4a1a-8089-b64cfd2e4dff" + }, + "046fe772-7b5e-4b89-9622-cf61225cd16c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -51.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -51.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4c644c8d-91d2-42cb-a8c4-f869fd6a5a96", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -51.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -51.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "046fe772-7b5e-4b89-9622-cf61225cd16c", + "Name": null + }, + "b4fdc2d6-2eff-483f-a71b-c8323c0d8fc7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8426658156526582, + "Green": 0.8365632890893907, + "Blue": 0.999187590088317, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b4fdc2d6-2eff-483f-a71b-c8323c0d8fc7", + "Name": "af8eb32a-e47c-4ff2-a721-023e0207269e" + }, + "6c3196ce-f88a-45dc-80dc-29797713af71": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -50.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b4fdc2d6-2eff-483f-a71b-c8323c0d8fc7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -50.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6c3196ce-f88a-45dc-80dc-29797713af71", + "Name": null + }, + "dde49fcb-8475-4d45-9f55-1080444c621b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3230489633619082, + "Green": 0.8098286394075624, + "Blue": 0.5818022957918245, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "dde49fcb-8475-4d45-9f55-1080444c621b", + "Name": "6dc7d6d2-1876-4dce-aeac-06199796ede2" + }, + "c4e07335-e765-490f-a0a5-b16cb7c79f20": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -49.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dde49fcb-8475-4d45-9f55-1080444c621b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -49.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c4e07335-e765-490f-a0a5-b16cb7c79f20", + "Name": null + }, + "11095bdd-4cad-41b6-8ecd-9f0b7264d534": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7935420371561973, + "Green": 0.022198746456857186, + "Blue": 0.004480384292304695, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "11095bdd-4cad-41b6-8ecd-9f0b7264d534", + "Name": "0786410e-9477-4633-9000-f2d22b96fdd9" + }, + "a9546e8a-4667-44a5-8b08-e3779f922690": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -48.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -48.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "11095bdd-4cad-41b6-8ecd-9f0b7264d534", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -48.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -48.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a9546e8a-4667-44a5-8b08-e3779f922690", + "Name": null + }, + "39c035bf-b688-4e13-b0e8-27c51b2dddac": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7903348802543874, + "Green": 0.2377481247474198, + "Blue": 0.0072555774856617565, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "39c035bf-b688-4e13-b0e8-27c51b2dddac", + "Name": "45492b8a-16ad-40e7-88b7-df1cd267c5bf" + }, + "9c3ef253-b875-474c-805b-eca60e21715d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -47.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "39c035bf-b688-4e13-b0e8-27c51b2dddac", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -47.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9c3ef253-b875-474c-805b-eca60e21715d", + "Name": null + }, + "21171db6-335b-409e-ab8c-19336bfeaecd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.301360693434887, + "Green": 0.7345765799910652, + "Blue": 0.7678452305346006, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "21171db6-335b-409e-ab8c-19336bfeaecd", + "Name": "52e95c52-17df-4cea-8fd0-45678e100b26" + }, + "b13a171c-5b99-4221-8217-6c092388fc12": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -46.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "21171db6-335b-409e-ab8c-19336bfeaecd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -46.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b13a171c-5b99-4221-8217-6c092388fc12", + "Name": null + }, + "2e86b192-a48d-4cde-8392-9fdb7f7c2ffe": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9827697598295145, + "Green": 0.45292934843009774, + "Blue": 0.5118342812693838, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2e86b192-a48d-4cde-8392-9fdb7f7c2ffe", + "Name": "3a79a722-f099-4076-928c-11404901553f" + }, + "6ad75ac3-0ede-49ef-a566-aa73d457e0c7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -45.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2e86b192-a48d-4cde-8392-9fdb7f7c2ffe", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -45.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6ad75ac3-0ede-49ef-a566-aa73d457e0c7", + "Name": null + }, + "235804f0-5f9a-4e1a-a65f-42b79747f970": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.16395173834820825, + "Green": 0.44937136697087965, + "Blue": 0.19522022790984261, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "235804f0-5f9a-4e1a-a65f-42b79747f970", + "Name": "deeba801-92f1-4b88-9beb-ec4f3c869a40" + }, + "95fbf2e9-fe52-495c-b47f-442abf111052": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -44.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "235804f0-5f9a-4e1a-a65f-42b79747f970", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -44.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "95fbf2e9-fe52-495c-b47f-442abf111052", + "Name": null + }, + "a069db18-5c94-439a-ad9d-6bbc2c515c34": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8532355375835837, + "Green": 0.769455196228556, + "Blue": 0.38285632169938477, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a069db18-5c94-439a-ad9d-6bbc2c515c34", + "Name": "49134053-f6cc-4632-918b-39421f0be78c" + }, + "1163c3c8-7c18-493d-a842-2cf31819712e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -43.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a069db18-5c94-439a-ad9d-6bbc2c515c34", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -43.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1163c3c8-7c18-493d-a842-2cf31819712e", + "Name": null + }, + "0f819e0c-4246-4f91-ab50-4df4d1f1ce09": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.13382077921825497, + "Green": 0.15563801310753358, + "Blue": 0.22468407788532044, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0f819e0c-4246-4f91-ab50-4df4d1f1ce09", + "Name": "bf2f2422-8f72-4e5c-afe0-0141c59e50f2" + }, + "9be52ad0-ddef-408a-ba38-3e55af1f2adf": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -42.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -42.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0f819e0c-4246-4f91-ab50-4df4d1f1ce09", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -42.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -42.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9be52ad0-ddef-408a-ba38-3e55af1f2adf", + "Name": null + }, + "66d292b4-eefa-4c6e-b8e8-04093be617c1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.24671803193479686, + "Green": 0.3722359050867315, + "Blue": 0.1980911815530114, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "66d292b4-eefa-4c6e-b8e8-04093be617c1", + "Name": "1c76290f-aa7e-4617-b983-4e9c150140ed" + }, + "1efaa668-8516-4d41-a2d1-8074be669c3c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -41.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "66d292b4-eefa-4c6e-b8e8-04093be617c1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -41.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1efaa668-8516-4d41-a2d1-8074be669c3c", + "Name": null + }, + "9a493f31-1ff1-412d-b77b-566efdd6fd10": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9421411794340896, + "Green": 0.8328218380142105, + "Blue": 0.11862065462331318, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9a493f31-1ff1-412d-b77b-566efdd6fd10", + "Name": "4ffa978a-704f-456e-bdb0-14505e43d604" + }, + "056c00c3-53b2-4ec9-8d4e-24d24da9f177": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -40.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9a493f31-1ff1-412d-b77b-566efdd6fd10", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -40.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "056c00c3-53b2-4ec9-8d4e-24d24da9f177", + "Name": null + }, + "fc7a74b2-0547-43c1-9d8d-5e54ae11424d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.14935809939604164, + "Green": 0.5583261314585461, + "Blue": 0.5460163683379146, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "fc7a74b2-0547-43c1-9d8d-5e54ae11424d", + "Name": "3da90910-7bae-439d-88d7-5a29b6abcd19" + }, + "9517688e-ae7d-497e-821d-99f5800c1a1b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -39.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -39.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "fc7a74b2-0547-43c1-9d8d-5e54ae11424d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -39.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -39.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9517688e-ae7d-497e-821d-99f5800c1a1b", + "Name": null + }, + "e6906102-9fed-4e2f-aa7b-0eca8c305efb": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6633363262113818, + "Green": 0.03856314161725489, + "Blue": 0.4790230200062613, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e6906102-9fed-4e2f-aa7b-0eca8c305efb", + "Name": "854ead50-1242-4079-bb1f-9792f7ef5890" + }, + "aed56aa8-7ce4-4a99-b6e0-2ee6f2260ac0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -38.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e6906102-9fed-4e2f-aa7b-0eca8c305efb", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -38.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "aed56aa8-7ce4-4a99-b6e0-2ee6f2260ac0", + "Name": null + }, + "ab35ab9e-8100-4193-8488-95199c55a824": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.36654658353261027, + "Green": 0.8520072651337866, + "Blue": 0.9229112742109742, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ab35ab9e-8100-4193-8488-95199c55a824", + "Name": "4055f767-338c-43eb-860f-4c0ac280dd46" + }, + "bb971ae8-8924-4c2c-b046-3fc9c5b809da": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -37.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ab35ab9e-8100-4193-8488-95199c55a824", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -37.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bb971ae8-8924-4c2c-b046-3fc9c5b809da", + "Name": null + }, + "daebde06-4fd0-4873-8cb8-b3ca66ef3285": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1553407829046905, + "Green": 0.6986793506418725, + "Blue": 0.11407160484887269, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "daebde06-4fd0-4873-8cb8-b3ca66ef3285", + "Name": "cb8f6a27-90bd-4a59-bc01-5a1df2b7d0cd" + }, + "22100274-f86e-4887-b862-7b203a7db98f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -36.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -36.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "daebde06-4fd0-4873-8cb8-b3ca66ef3285", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -36.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -36.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "22100274-f86e-4887-b862-7b203a7db98f", + "Name": null + }, + "88d444ff-b038-4017-b7b7-0dce82f9708f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7475544757896823, + "Green": 0.8299626907473256, + "Blue": 0.7220270860577128, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "88d444ff-b038-4017-b7b7-0dce82f9708f", + "Name": "b783228c-3662-492b-99be-bd865d0692d7" + }, + "ad2bbd86-6366-4a62-a4e8-e908fe78b2c4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -35.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "88d444ff-b038-4017-b7b7-0dce82f9708f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -35.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ad2bbd86-6366-4a62-a4e8-e908fe78b2c4", + "Name": null + }, + "145a132a-2f51-43f2-9420-e8cd05b095c1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.22654502290605802, + "Green": 0.379243152858337, + "Blue": 0.33889665191010415, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "145a132a-2f51-43f2-9420-e8cd05b095c1", + "Name": "06c21f14-6cab-41cc-9165-08751fda3d50" + }, + "350c9007-b575-42b8-8832-524aaf946b53": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -34.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "145a132a-2f51-43f2-9420-e8cd05b095c1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -34.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "350c9007-b575-42b8-8832-524aaf946b53", + "Name": null + }, + "6cfcbd4d-bd29-4cdf-a304-72dbc7e17ddb": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8491616104027078, + "Green": 0.34217073644612483, + "Blue": 0.5931917338600343, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6cfcbd4d-bd29-4cdf-a304-72dbc7e17ddb", + "Name": "e938d136-969c-455c-bfa4-77726ad504a5" + }, + "1132b8ff-3573-438d-8240-eff3c406bb20": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -33.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -33.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6cfcbd4d-bd29-4cdf-a304-72dbc7e17ddb", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -33.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -33.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1132b8ff-3573-438d-8240-eff3c406bb20", + "Name": null + }, + "f8ab2a5b-9b8b-4dbd-b351-0002ea07c44f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1866454408441882, + "Green": 0.9894302780690744, + "Blue": 0.06710809286083472, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f8ab2a5b-9b8b-4dbd-b351-0002ea07c44f", + "Name": "cdca6984-7321-4755-ad4a-4b472203722d" + }, + "f3974a04-0e0b-4f67-97e2-92bb433ef385": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -32.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f8ab2a5b-9b8b-4dbd-b351-0002ea07c44f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -32.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f3974a04-0e0b-4f67-97e2-92bb433ef385", + "Name": null + }, + "2b96409b-fd3b-4e48-a511-f56b66cc7fac": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6163312683889323, + "Green": 0.18922818414365322, + "Blue": 0.6541906263000288, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2b96409b-fd3b-4e48-a511-f56b66cc7fac", + "Name": "e020aac6-0f39-47ef-80dc-881664974b16" + }, + "65927932-a3d1-4f17-b6b4-8912e0a1d315": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -31.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -31.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2b96409b-fd3b-4e48-a511-f56b66cc7fac", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -31.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -31.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "65927932-a3d1-4f17-b6b4-8912e0a1d315", + "Name": null + }, + "a89ecf43-8c21-4d30-a3f2-9d1434fc0b1d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.35711821790650405, + "Green": 0.5468240052214004, + "Blue": 0.6499628413701257, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a89ecf43-8c21-4d30-a3f2-9d1434fc0b1d", + "Name": "958622a6-3e65-43ec-b4b0-6e5dc28681c8" + }, + "57058731-42d2-43f7-905d-214373b4771a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -30.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a89ecf43-8c21-4d30-a3f2-9d1434fc0b1d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.99999999999999, + "Y": -30.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "57058731-42d2-43f7-905d-214373b4771a", + "Name": null + }, + "971c51b6-9f77-463b-990d-905f4f004b53": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8063892027392933, + "Green": 0.8481937008202978, + "Blue": 0.4049262867332093, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "971c51b6-9f77-463b-990d-905f4f004b53", + "Name": "7bd38e5a-baf0-4d04-bb3c-bc3d075548d8" + }, + "d12bb07a-04fb-419a-8042-8561d10597d9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -29.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 29.333333333333318, + "Y": -29.000000000000004, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "971c51b6-9f77-463b-990d-905f4f004b53", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -29.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 29.333333333333318, + "Y": -29.000000000000004, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d12bb07a-04fb-419a-8042-8561d10597d9", + "Name": null + }, + "bc4edeb3-d32e-4153-a133-1f17f2eb46aa": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8886349228623486, + "Green": 0.1520025940388453, + "Blue": 0.17625044853251914, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "bc4edeb3-d32e-4153-a133-1f17f2eb46aa", + "Name": "ec0979db-ca2e-489e-83ba-a18b9403c8b3" + }, + "e5d63e93-6643-45e9-8e97-7df44a758f5e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 28.66666666666665, + "Y": -28.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "bc4edeb3-d32e-4153-a133-1f17f2eb46aa", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 28.66666666666665, + "Y": -28.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e5d63e93-6643-45e9-8e97-7df44a758f5e", + "Name": null + }, + "92691036-da98-483a-8563-116e2e1ded83": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.22182886219668616, + "Green": 0.3194334336181327, + "Blue": 0.41436620681284286, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "92691036-da98-483a-8563-116e2e1ded83", + "Name": "06ffe01b-46ff-42c2-ba03-c3841a36193f" + }, + "b7d55a3a-0353-4797-b276-8ee7e7b49b77": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -27.0, + "Z": 0.0 + }, + "End": { + "X": 27.999999999999986, + "Y": -27.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "92691036-da98-483a-8563-116e2e1ded83", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -27.0, + "Z": 0.0 + }, + "End": { + "X": 27.999999999999986, + "Y": -27.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b7d55a3a-0353-4797-b276-8ee7e7b49b77", + "Name": null + }, + "0e340513-944a-451e-852f-ddcac60d24e0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.032811261263122435, + "Green": 0.797405154815598, + "Blue": 0.5973641018370931, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0e340513-944a-451e-852f-ddcac60d24e0", + "Name": "8b388c46-d90b-47d4-8e11-9709c8c92d84" + }, + "f019ef88-850e-4f59-a316-8151bb8dcc83": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -26.0, + "Z": 0.0 + }, + "End": { + "X": 27.33333333333332, + "Y": -26.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0e340513-944a-451e-852f-ddcac60d24e0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -26.0, + "Z": 0.0 + }, + "End": { + "X": 27.33333333333332, + "Y": -26.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f019ef88-850e-4f59-a316-8151bb8dcc83", + "Name": null + }, + "33095e5c-f750-413f-8ac5-44ca51ad2d86": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2723089536988684, + "Green": 0.6978947546788933, + "Blue": 0.07077584558668353, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "33095e5c-f750-413f-8ac5-44ca51ad2d86", + "Name": "fb23625c-00c6-413b-be33-fb5b3ee4f1d5" + }, + "431275ce-a236-4cf5-a2b9-eaf94d70f84d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 26.66666666666665, + "Y": -25.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "33095e5c-f750-413f-8ac5-44ca51ad2d86", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 26.66666666666665, + "Y": -25.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "431275ce-a236-4cf5-a2b9-eaf94d70f84d", + "Name": null + }, + "1380b979-ea90-4690-b739-98cfc7f82536": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2687847168505121, + "Green": 0.38626630342857277, + "Blue": 0.32567532236020796, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1380b979-ea90-4690-b739-98cfc7f82536", + "Name": "d1006620-0ca7-45cf-8f43-40e320c2b0eb" + }, + "67eeccac-1fc2-4018-b599-6c3b1bb89c23": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -24.0, + "Z": 0.0 + }, + "End": { + "X": 25.999999999999986, + "Y": -24.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1380b979-ea90-4690-b739-98cfc7f82536", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -24.0, + "Z": 0.0 + }, + "End": { + "X": 25.999999999999986, + "Y": -24.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "67eeccac-1fc2-4018-b599-6c3b1bb89c23", + "Name": null + }, + "de00664a-26bc-4f35-b0c6-1b27a183144d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5026569918276076, + "Green": 0.020173009028738833, + "Blue": 0.9929927522283944, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "de00664a-26bc-4f35-b0c6-1b27a183144d", + "Name": "22517a79-6832-4591-b173-5b05a0f46964" + }, + "8c1c2ec8-5b44-4e3b-b727-557f426e6fe5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -23.0, + "Z": 0.0 + }, + "End": { + "X": 25.33333333333332, + "Y": -23.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "de00664a-26bc-4f35-b0c6-1b27a183144d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -23.0, + "Z": 0.0 + }, + "End": { + "X": 25.33333333333332, + "Y": -23.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8c1c2ec8-5b44-4e3b-b727-557f426e6fe5", + "Name": null + }, + "afe0ecb2-2660-46f4-b2b4-b771f46ef137": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8591945296429072, + "Green": 0.09297956903138178, + "Blue": 0.49065110156808567, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "afe0ecb2-2660-46f4-b2b4-b771f46ef137", + "Name": "1ec9ce16-4440-462d-9c3d-99ae50ca8863" + }, + "7908c0ce-6323-4544-9792-c2a4114065a0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 24.66666666666665, + "Y": -22.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "afe0ecb2-2660-46f4-b2b4-b771f46ef137", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 24.66666666666665, + "Y": -22.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7908c0ce-6323-4544-9792-c2a4114065a0", + "Name": null + }, + "6d6b91ac-8938-4ac9-88da-57b8e6b01b27": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5254289207632789, + "Green": 0.9627126585518535, + "Blue": 0.5688958533894717, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6d6b91ac-8938-4ac9-88da-57b8e6b01b27", + "Name": "96db76c0-b6b1-4f1d-b62d-ef23764ad6d7" + }, + "dbecafea-c585-44df-a9bf-3c8c1f1506e4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -21.0, + "Z": 0.0 + }, + "End": { + "X": 23.999999999999986, + "Y": -21.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6d6b91ac-8938-4ac9-88da-57b8e6b01b27", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -21.0, + "Z": 0.0 + }, + "End": { + "X": 23.999999999999986, + "Y": -21.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dbecafea-c585-44df-a9bf-3c8c1f1506e4", + "Name": null + }, + "70ea38c7-9eda-43f2-9594-3a46e77d67bf": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4789082754770798, + "Green": 0.047005057822449625, + "Blue": 0.8493349574736017, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "70ea38c7-9eda-43f2-9594-3a46e77d67bf", + "Name": "4a7ea393-5650-4dde-aa94-a25472bb81eb" + }, + "5018d157-88f6-4c9c-9440-2aacc2425fa2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 23.33333333333332, + "Y": -20.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "70ea38c7-9eda-43f2-9594-3a46e77d67bf", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 23.33333333333332, + "Y": -20.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5018d157-88f6-4c9c-9440-2aacc2425fa2", + "Name": null + }, + "4d6b1665-e46d-46f4-893f-cd1060160a57": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8248323937062325, + "Green": 0.00942836562610621, + "Blue": 0.3051832599123862, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4d6b1665-e46d-46f4-893f-cd1060160a57", + "Name": "2b9b71cf-a244-494f-9454-ff0293a97563" + }, + "87c7925a-04f6-40d1-9e3c-9bfdf1ebf280": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 22.66666666666665, + "Y": -19.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4d6b1665-e46d-46f4-893f-cd1060160a57", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 22.66666666666665, + "Y": -19.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "87c7925a-04f6-40d1-9e3c-9bfdf1ebf280", + "Name": null + }, + "ca4283c7-6b1b-4463-85b6-2ca28bc9e175": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2729484328408485, + "Green": 0.3489515801653972, + "Blue": 0.8504856498215746, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ca4283c7-6b1b-4463-85b6-2ca28bc9e175", + "Name": "96ec1f02-bb5a-419e-9582-e144ef59be63" + }, + "c6a69b54-9c45-44f6-be39-cedc23c4a908": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -18.0, + "Z": 0.0 + }, + "End": { + "X": 21.999999999999986, + "Y": -18.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ca4283c7-6b1b-4463-85b6-2ca28bc9e175", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -18.0, + "Z": 0.0 + }, + "End": { + "X": 21.999999999999986, + "Y": -18.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c6a69b54-9c45-44f6-be39-cedc23c4a908", + "Name": null + }, + "07867ac8-ff61-4e55-a7d1-e3ba791bb908": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7091453181156634, + "Green": 0.8589195529273337, + "Blue": 0.6779600967084803, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "07867ac8-ff61-4e55-a7d1-e3ba791bb908", + "Name": "9373e904-3e5a-4d43-a1d1-48daf9399036" + }, + "47b3b010-ec6c-47ec-b648-c92f41226e96": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -17.0, + "Z": 0.0 + }, + "End": { + "X": 21.333333333333318, + "Y": -17.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "07867ac8-ff61-4e55-a7d1-e3ba791bb908", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -17.0, + "Z": 0.0 + }, + "End": { + "X": 21.333333333333318, + "Y": -17.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "47b3b010-ec6c-47ec-b648-c92f41226e96", + "Name": null + }, + "d6dacac0-3106-4d82-beba-1b5c57303448": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5457766375251937, + "Green": 0.0047161607093718656, + "Blue": 0.0598097192402043, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d6dacac0-3106-4d82-beba-1b5c57303448", + "Name": "b61672d4-8e61-47d5-bc22-672bae403515" + }, + "210b7e79-60b8-4ff8-a1b0-ff8dbfe9035f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 20.66666666666665, + "Y": -16.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d6dacac0-3106-4d82-beba-1b5c57303448", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 20.66666666666665, + "Y": -16.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "210b7e79-60b8-4ff8-a1b0-ff8dbfe9035f", + "Name": null + }, + "9167572b-9d78-4a3e-8515-dd5af3c3b2d2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9245304450972613, + "Green": 0.8163503491395854, + "Blue": 0.5447655816305268, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9167572b-9d78-4a3e-8515-dd5af3c3b2d2", + "Name": "ebdb9c57-7374-40bb-a12b-11717523c5af" + }, + "3a861718-d2a2-4b53-b14b-a3887f80ee5d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 19.999999999999986, + "Y": -15.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9167572b-9d78-4a3e-8515-dd5af3c3b2d2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 19.999999999999986, + "Y": -15.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3a861718-d2a2-4b53-b14b-a3887f80ee5d", + "Name": null + }, + "739142be-8b07-44ac-a239-a995eab87cb8": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9958276320229413, + "Green": 0.9143364871453198, + "Blue": 0.29153552339018113, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "739142be-8b07-44ac-a239-a995eab87cb8", + "Name": "b7b63860-b903-40bd-bd77-8226f1a7bf95" + }, + "d36fb6cc-21f1-4b01-ad1d-559ff7fecf90": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -14.0, + "Z": 0.0 + }, + "End": { + "X": 19.333333333333318, + "Y": -14.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "739142be-8b07-44ac-a239-a995eab87cb8", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -14.0, + "Z": 0.0 + }, + "End": { + "X": 19.333333333333318, + "Y": -14.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d36fb6cc-21f1-4b01-ad1d-559ff7fecf90", + "Name": null + }, + "b0455c9d-3133-419c-a0d0-59fabe9004b0": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9963322472741512, + "Green": 0.3475465515384202, + "Blue": 0.8029618807150805, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b0455c9d-3133-419c-a0d0-59fabe9004b0", + "Name": "d84a7df3-37a8-4696-b3a3-542c1aae806f" + }, + "9a502a09-a39b-421c-8688-f51bf5d82c19": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 18.666666666666654, + "Y": -13.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b0455c9d-3133-419c-a0d0-59fabe9004b0", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 18.666666666666654, + "Y": -13.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9a502a09-a39b-421c-8688-f51bf5d82c19", + "Name": null + }, + "0cd2f606-71f6-4e12-8c6c-f0cfe9fa7054": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.32851530393982087, + "Green": 0.8544612260788964, + "Blue": 0.5266509961926615, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0cd2f606-71f6-4e12-8c6c-f0cfe9fa7054", + "Name": "17eee549-7d94-4cd8-9905-efcb11ea6509" + }, + "4a586f18-c72b-411d-b2c5-e06adcd0a24c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -12.0, + "Z": 0.0 + }, + "End": { + "X": 17.999999999999986, + "Y": -12.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0cd2f606-71f6-4e12-8c6c-f0cfe9fa7054", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -12.0, + "Z": 0.0 + }, + "End": { + "X": 17.999999999999986, + "Y": -12.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4a586f18-c72b-411d-b2c5-e06adcd0a24c", + "Name": null + }, + "c96f3bff-f0e4-46e7-8ec5-e3d7f7f5b58b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6569700891417312, + "Green": 0.947194673096386, + "Blue": 0.755214131788916, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c96f3bff-f0e4-46e7-8ec5-e3d7f7f5b58b", + "Name": "9b14a531-621c-4309-9f73-8509450479d3" + }, + "42842dee-7da9-4b4a-a13a-6fde648376c7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -11.0, + "Z": 0.0 + }, + "End": { + "X": 17.333333333333318, + "Y": -11.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c96f3bff-f0e4-46e7-8ec5-e3d7f7f5b58b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -11.0, + "Z": 0.0 + }, + "End": { + "X": 17.333333333333318, + "Y": -11.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42842dee-7da9-4b4a-a13a-6fde648376c7", + "Name": null + }, + "431845e6-0cf4-458a-a2e5-c21a2e51ff0e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9142751851651236, + "Green": 0.3632060020990698, + "Blue": 0.18928993548699186, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "431845e6-0cf4-458a-a2e5-c21a2e51ff0e", + "Name": "1dd3c2ff-e511-487d-b28c-80a2ae19f407" + }, + "997d40fb-59b5-4c48-b406-4b11d4321fda": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.666666666666654, + "Y": -10.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "431845e6-0cf4-458a-a2e5-c21a2e51ff0e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.666666666666654, + "Y": -10.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "997d40fb-59b5-4c48-b406-4b11d4321fda", + "Name": null + }, + "4a06bd48-39c1-4a52-be5e-56dbe8d9d6ca": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6073545951430475, + "Green": 0.7429205867196064, + "Blue": 0.2724283757956831, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4a06bd48-39c1-4a52-be5e-56dbe8d9d6ca", + "Name": "df21974e-dc53-400e-b91b-ee3f417ee5b4" + }, + "59bf0a65-c0c3-4d0c-9c75-a87d802da88c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -9.0, + "Z": 0.0 + }, + "End": { + "X": 15.999999999999988, + "Y": -9.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4a06bd48-39c1-4a52-be5e-56dbe8d9d6ca", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -9.0, + "Z": 0.0 + }, + "End": { + "X": 15.999999999999988, + "Y": -9.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "59bf0a65-c0c3-4d0c-9c75-a87d802da88c", + "Name": null + }, + "58af0d17-76be-4c82-aed3-6a7d6f500f89": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5650312493392412, + "Green": 0.20797886755688993, + "Blue": 0.7879767891894918, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "58af0d17-76be-4c82-aed3-6a7d6f500f89", + "Name": "9973c52d-2f95-4c3a-a5ba-3248845bc54d" + }, + "81efc71c-edfa-4aea-b1ae-986854505e59": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -8.0, + "Z": 0.0 + }, + "End": { + "X": 15.33333333333332, + "Y": -8.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "58af0d17-76be-4c82-aed3-6a7d6f500f89", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -8.0, + "Z": 0.0 + }, + "End": { + "X": 15.33333333333332, + "Y": -8.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "81efc71c-edfa-4aea-b1ae-986854505e59", + "Name": null + }, + "c99abc11-14fd-4412-b291-65467353184b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2921808419247069, + "Green": 0.9993605208580199, + "Blue": 0.3489431745134961, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c99abc11-14fd-4412-b291-65467353184b", + "Name": "ba362f1d-6924-429b-aa20-02dbadb3f8d3" + }, + "f98036df-bba0-4e05-86c4-8cba815bf22f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 14.666666666666652, + "Y": -7.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c99abc11-14fd-4412-b291-65467353184b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 14.666666666666652, + "Y": -7.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f98036df-bba0-4e05-86c4-8cba815bf22f", + "Name": null + }, + "53ebcdb5-becf-4109-b587-2dc95b52b6fd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2202901957651089, + "Green": 0.5596393987348487, + "Blue": 0.5273467505012391, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "53ebcdb5-becf-4109-b587-2dc95b52b6fd", + "Name": "df5f78e7-301c-4fbf-ae68-192a54b98571" + }, + "cabff896-a3cc-4175-992a-ba1e9b0706d9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -6.0, + "Z": 0.0 + }, + "End": { + "X": 13.999999999999986, + "Y": -6.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "53ebcdb5-becf-4109-b587-2dc95b52b6fd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -6.0, + "Z": 0.0 + }, + "End": { + "X": 13.999999999999986, + "Y": -6.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cabff896-a3cc-4175-992a-ba1e9b0706d9", + "Name": null + }, + "72e0d1c6-bd45-4c9d-a869-3a587b71d014": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6477152256517277, + "Green": 0.9568803543024139, + "Blue": 0.015456848319366969, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "72e0d1c6-bd45-4c9d-a869-3a587b71d014", + "Name": "fb4ea495-82e7-4f8c-b9f8-0026a6cdce33" + }, + "9455dad4-dc28-4f0e-a330-df77f6e7939d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 13.33333333333332, + "Y": -5.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "72e0d1c6-bd45-4c9d-a869-3a587b71d014", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 13.33333333333332, + "Y": -5.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9455dad4-dc28-4f0e-a330-df77f6e7939d", + "Name": null + }, + "0268cf3a-749a-4d60-9f18-d60abcecd135": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9331830329881902, + "Green": 0.9346640845456459, + "Blue": 0.27662921989179645, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0268cf3a-749a-4d60-9f18-d60abcecd135", + "Name": "1158bd6d-1a85-4fdb-a888-f54e1898cb7b" + }, + "75b8570d-8c1c-49dc-8dfe-4395515e63df": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 12.666666666666652, + "Y": -4.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0268cf3a-749a-4d60-9f18-d60abcecd135", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 12.666666666666652, + "Y": -4.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "75b8570d-8c1c-49dc-8dfe-4395515e63df", + "Name": null + }, + "06ee2c9e-f174-4867-8809-e68b9d66cd6c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9458855199375588, + "Green": 0.5296012887403375, + "Blue": 0.04837617140653365, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "06ee2c9e-f174-4867-8809-e68b9d66cd6c", + "Name": "f807b2a9-5192-4951-8b02-c9bcef67b6f4" + }, + "a43d39a4-4613-48ad-abfa-a5b40ce48090": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -3.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999986, + "Y": -3.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "06ee2c9e-f174-4867-8809-e68b9d66cd6c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -3.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999986, + "Y": -3.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a43d39a4-4613-48ad-abfa-a5b40ce48090", + "Name": null + }, + "e45b7e4c-4940-4eda-a148-27bc694dd710": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.27736032999929056, + "Green": 0.4825760282029286, + "Blue": 0.6994585062840295, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e45b7e4c-4940-4eda-a148-27bc694dd710", + "Name": "bf11894c-7879-4d9a-949a-cedbec3ddfc5" + }, + "be79e411-70bb-4bdc-9381-f616c34616e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 11.33333333333332, + "Y": -2.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e45b7e4c-4940-4eda-a148-27bc694dd710", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 11.33333333333332, + "Y": -2.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "be79e411-70bb-4bdc-9381-f616c34616e8", + "Name": null + }, + "e75e77ba-7225-46f3-b47d-44378c149492": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.046373076758521176, + "Green": 0.49631708976641165, + "Blue": 0.15496713954720978, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e75e77ba-7225-46f3-b47d-44378c149492", + "Name": "99d7a7b2-c2e7-4ff3-8498-7f94647f3643" + }, + "cd4080dc-4840-4c3d-83a7-eec05f9a921d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 10.666666666666652, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e75e77ba-7225-46f3-b47d-44378c149492", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 10.666666666666652, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cd4080dc-4840-4c3d-83a7-eec05f9a921d", + "Name": null + }, + "87654b68-576e-401a-99f0-d780d7a15c60": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7785322637197246, + "Green": 0.6159783436991173, + "Blue": 0.40175690706901107, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "87654b68-576e-401a-99f0-d780d7a15c60", + "Name": "42c20bb0-fb64-4385-98fd-c120698c1733" + }, + "c6502787-f3e9-48b2-8742-cc888b559bd8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.3749999999999895, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.3749999999999895, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "87654b68-576e-401a-99f0-d780d7a15c60", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.3749999999999895, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.3749999999999895, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c6502787-f3e9-48b2-8742-cc888b559bd8", + "Name": null + }, + "a571ee12-9969-4f79-832e-347b8531b7a6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.09527151803265863, + "Green": 0.7948701329505398, + "Blue": 0.4957135508282639, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a571ee12-9969-4f79-832e-347b8531b7a6", + "Name": "b4c40dee-f7bd-411d-bce3-ee518887730e" + }, + "eb77c9f2-3025-4a26-9e5a-44b30640d2eb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.7499999999999897, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.7499999999999897, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a571ee12-9969-4f79-832e-347b8531b7a6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.7499999999999897, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 0.7499999999999897, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "eb77c9f2-3025-4a26-9e5a-44b30640d2eb", + "Name": null + }, + "1f9d5724-1896-4a57-9875-0f26072a7fbe": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.48867016122148843, + "Green": 0.9384220423821462, + "Blue": 0.2617955739897655, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1f9d5724-1896-4a57-9875-0f26072a7fbe", + "Name": "3faa5502-4973-451e-9f44-bd76bdab9d0f" + }, + "e3213149-d18c-48f7-8fa0-5e44f2c1bfd3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.12499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.12499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1f9d5724-1896-4a57-9875-0f26072a7fbe", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.12499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.12499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e3213149-d18c-48f7-8fa0-5e44f2c1bfd3", + "Name": null + }, + "3eda7eed-22cd-4bb0-9110-e6e434602937": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7873813434445213, + "Green": 0.35949919575802014, + "Blue": 0.6083714815826954, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "3eda7eed-22cd-4bb0-9110-e6e434602937", + "Name": "def2ff78-c7d5-4085-90bc-28e4f2cf8d07" + }, + "1e6142c9-4bc0-4dbd-9550-5d3faa59aa7d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.49999999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.49999999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3eda7eed-22cd-4bb0-9110-e6e434602937", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.49999999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.49999999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1e6142c9-4bc0-4dbd-9550-5d3faa59aa7d", + "Name": null + }, + "c3389c7d-bf0b-48e7-b422-2a1a3afdca22": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.756788792441035, + "Green": 0.7036467900982345, + "Blue": 0.9149759662872999, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c3389c7d-bf0b-48e7-b422-2a1a3afdca22", + "Name": "e06c2c49-785d-4451-ac4f-7e3effaeba8c" + }, + "faa4de2c-ba4e-469f-8449-518b29acc4c0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.87499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.87499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c3389c7d-bf0b-48e7-b422-2a1a3afdca22", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.87499999999999, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 1.87499999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "faa4de2c-ba4e-469f-8449-518b29acc4c0", + "Name": null + }, + "5fb89498-64a8-43e5-9247-35d708ceaab6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9425923488766851, + "Green": 0.7760420515090423, + "Blue": 0.7879071528035715, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "5fb89498-64a8-43e5-9247-35d708ceaab6", + "Name": "d0b5b99e-f82e-4868-b809-d2212f766ad6" + }, + "880bd249-918c-40f8-aa7a-5d8de97570f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.2499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.2499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "5fb89498-64a8-43e5-9247-35d708ceaab6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.2499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.2499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "880bd249-918c-40f8-aa7a-5d8de97570f0", + "Name": null + }, + "60c645a8-87c6-4ba4-8b80-1e38a7b0efe7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2756151302138414, + "Green": 0.6808000782880932, + "Blue": 0.8975808717764825, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "60c645a8-87c6-4ba4-8b80-1e38a7b0efe7", + "Name": "75aa10a0-02b9-4e0c-9ce0-d81d1dd82ba6" + }, + "76c09ccc-045b-40a3-a11c-c6af00220080": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.6249999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.6249999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "60c645a8-87c6-4ba4-8b80-1e38a7b0efe7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.6249999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.6249999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "76c09ccc-045b-40a3-a11c-c6af00220080", + "Name": null + }, + "e39af83f-9a76-49e7-b929-55ded469c8d7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5111941478732946, + "Green": 0.723787056153541, + "Blue": 0.012530588550740195, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e39af83f-9a76-49e7-b929-55ded469c8d7", + "Name": "a221eba3-8105-40ab-b24a-046c14ec3892" + }, + "2d245aa6-3656-4767-910b-e6f5d953c0c3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.9999999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.9999999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e39af83f-9a76-49e7-b929-55ded469c8d7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.9999999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 2.9999999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2d245aa6-3656-4767-910b-e6f5d953c0c3", + "Name": null + }, + "2043ccca-defe-4c81-a62b-c48c14d4be34": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.47858491189711955, + "Green": 0.9683896652275649, + "Blue": 0.8336047133587323, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2043ccca-defe-4c81-a62b-c48c14d4be34", + "Name": "62b50e78-ff55-41ee-bc49-d7a445183b50" + }, + "38387b62-b231-4326-8ae6-65e4127118a4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.3749999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.3749999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2043ccca-defe-4c81-a62b-c48c14d4be34", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.3749999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.3749999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "38387b62-b231-4326-8ae6-65e4127118a4", + "Name": null + }, + "c71d8ebd-bd68-46a8-a9c0-240b006a0117": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.14091376408045822, + "Green": 0.3299942651437569, + "Blue": 0.2603445585166777, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c71d8ebd-bd68-46a8-a9c0-240b006a0117", + "Name": "81626520-7e4b-49bb-9ada-beb9872bccfc" + }, + "e1f7244b-dc79-4111-927a-d231c91c53b4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.7499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.7499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c71d8ebd-bd68-46a8-a9c0-240b006a0117", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.7499999999999907, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 3.7499999999999907, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e1f7244b-dc79-4111-927a-d231c91c53b4", + "Name": null + }, + "8af2e579-ea2f-4760-bcfe-c4a0d67f5962": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5729698695116536, + "Green": 0.51865817258072, + "Blue": 0.7116617777904783, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8af2e579-ea2f-4760-bcfe-c4a0d67f5962", + "Name": "5a4a0b8b-b86b-41ce-9ff1-9df34b6798db" + }, + "f196b90b-458e-450e-9bb4-c51e123d9092": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.124999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.124999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8af2e579-ea2f-4760-bcfe-c4a0d67f5962", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.124999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.124999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f196b90b-458e-450e-9bb4-c51e123d9092", + "Name": null + }, + "57055c8e-62e6-440d-991e-790364cb15a1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.633009649642282, + "Green": 0.5136485782049822, + "Blue": 0.3833821771589025, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "57055c8e-62e6-440d-991e-790364cb15a1", + "Name": "a38ccc7f-8c63-47e7-b688-30307d3d2ee0" + }, + "f2a648c9-9440-4354-9615-4f737fc77104": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "57055c8e-62e6-440d-991e-790364cb15a1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f2a648c9-9440-4354-9615-4f737fc77104", + "Name": null + }, + "1520af39-6173-48dc-8e2c-fe5ee269dc35": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.947186267444485, + "Green": 0.12501867773245026, + "Blue": 0.7647692657843089, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1520af39-6173-48dc-8e2c-fe5ee269dc35", + "Name": "b764fa7e-ac32-4afe-a8e6-2c995770566c" + }, + "3d1e51c9-6f58-4cbd-a52f-0bf214568c4a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.874999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.874999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1520af39-6173-48dc-8e2c-fe5ee269dc35", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.874999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 4.874999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3d1e51c9-6f58-4cbd-a52f-0bf214568c4a", + "Name": null + }, + "ecb315ab-445e-4d1f-bad1-3ab69e0b9eb4": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.031633199672975204, + "Green": 0.15904506443023916, + "Blue": 0.018458311920267676, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ecb315ab-445e-4d1f-bad1-3ab69e0b9eb4", + "Name": "81595673-badb-4e6e-b762-fbe283940ef9" + }, + "bd333cd8-66bb-4d92-aa54-231a748c8fb7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.249999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.249999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ecb315ab-445e-4d1f-bad1-3ab69e0b9eb4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.249999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.249999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bd333cd8-66bb-4d92-aa54-231a748c8fb7", + "Name": null + }, + "80515097-fc80-47f6-8851-266f1cdb4a95": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7536612743296014, + "Green": 0.14580168954366896, + "Blue": 0.5751648887876257, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "80515097-fc80-47f6-8851-266f1cdb4a95", + "Name": "3a96bc49-cff0-4278-9b45-71d1bd55723b" + }, + "d6dc068d-4d2b-49e6-a478-e88390b1fbd4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.624999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.624999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "80515097-fc80-47f6-8851-266f1cdb4a95", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.624999999999991, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.624999999999991, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d6dc068d-4d2b-49e6-a478-e88390b1fbd4", + "Name": null + }, + "6cc0f3f4-3e16-44d8-800b-546f78a60e69": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6682577383091011, + "Green": 0.18909672749652376, + "Blue": 0.825954498642103, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6cc0f3f4-3e16-44d8-800b-546f78a60e69", + "Name": "a278ed2f-0fbd-4ef6-a98c-7cbf9a83b451" + }, + "c308c90d-a29a-414d-a8bb-252d9d7ec8ca": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.999999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.999999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6cc0f3f4-3e16-44d8-800b-546f78a60e69", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.999999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 5.999999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c308c90d-a29a-414d-a8bb-252d9d7ec8ca", + "Name": null + }, + "4452a299-6051-4b2b-8639-00ad060cb206": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.13340020511923367, + "Green": 0.3347679811226055, + "Blue": 0.7065339766938863, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4452a299-6051-4b2b-8639-00ad060cb206", + "Name": "8ebac075-0e29-4733-9249-3e9577923a56" + }, + "3be27845-de4c-425c-bc34-06db244a217b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.374999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.374999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4452a299-6051-4b2b-8639-00ad060cb206", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.374999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.374999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3be27845-de4c-425c-bc34-06db244a217b", + "Name": null + }, + "96c4ca62-159d-4153-9473-bab8633df548": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9115513534804579, + "Green": 0.7707579465446798, + "Blue": 0.8155170114783183, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "96c4ca62-159d-4153-9473-bab8633df548", + "Name": "cad1a4df-23a9-4b4f-a479-d13322bc80a2" + }, + "6e7d3a6f-52cd-4baf-bc61-c937cfbb9cee": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.749999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.749999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "96c4ca62-159d-4153-9473-bab8633df548", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.749999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 6.749999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6e7d3a6f-52cd-4baf-bc61-c937cfbb9cee", + "Name": null + }, + "2f58ff7f-3855-4581-8cbe-82fff3f0cb0e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2573862677707273, + "Green": 0.26733811584643, + "Blue": 0.8921912875455763, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2f58ff7f-3855-4581-8cbe-82fff3f0cb0e", + "Name": "cebc75a7-6b29-4196-ad85-578d6b7a7105" + }, + "528c931a-334c-424d-bf07-caf1c1ebcd88": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.124999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.124999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2f58ff7f-3855-4581-8cbe-82fff3f0cb0e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.124999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.124999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "528c931a-334c-424d-bf07-caf1c1ebcd88", + "Name": null + }, + "0a5183db-17da-4e06-9b55-b7863fa8d5be": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3892263185182709, + "Green": 0.616686606135539, + "Blue": 0.8264804677229749, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0a5183db-17da-4e06-9b55-b7863fa8d5be", + "Name": "5b76d706-67a7-47c5-9860-1048746bbb16" + }, + "6d5faea2-73c1-449a-9c56-c6926f4882b6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0a5183db-17da-4e06-9b55-b7863fa8d5be", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.499999999999992, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.499999999999992, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6d5faea2-73c1-449a-9c56-c6926f4882b6", + "Name": null + }, + "a3750d05-d607-4d21-8e4b-cb60e9a85fc7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6621088374695316, + "Green": 0.34775639714103024, + "Blue": 0.6084277772383894, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a3750d05-d607-4d21-8e4b-cb60e9a85fc7", + "Name": "7f05f04c-0efe-4ed2-83ea-fffe567987bd" + }, + "e0b50b6e-69ab-4dae-8d71-e52de8dc130a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.874999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.874999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a3750d05-d607-4d21-8e4b-cb60e9a85fc7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.874999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 7.874999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e0b50b6e-69ab-4dae-8d71-e52de8dc130a", + "Name": null + }, + "fbb3ba70-c82c-48fc-a847-29e47735d312": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.001451015473087791, + "Green": 0.21441147393286764, + "Blue": 0.8408410231773001, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "fbb3ba70-c82c-48fc-a847-29e47735d312", + "Name": "2b96aa89-81f4-43bb-8d1c-8a724b3b26fd" + }, + "11f06034-aa6c-4e96-8bd9-c89ee0204db7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.249999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "fbb3ba70-c82c-48fc-a847-29e47735d312", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.249999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "11f06034-aa6c-4e96-8bd9-c89ee0204db7", + "Name": null + }, + "42af8713-ef19-459c-9642-65a9904edb95": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.896709703792217, + "Green": 0.12377914279875306, + "Blue": 0.1899982118932522, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "42af8713-ef19-459c-9642-65a9904edb95", + "Name": "49f9c8f5-82e6-4344-ba8c-6102fbc676cb" + }, + "7589e644-75a7-4ce2-adf0-ef7b58354425": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.624999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.624999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "42af8713-ef19-459c-9642-65a9904edb95", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.624999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.624999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7589e644-75a7-4ce2-adf0-ef7b58354425", + "Name": null + }, + "45ea4ef7-30ff-4502-93c4-2d60aca43740": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5315937891283975, + "Green": 0.9954060814322001, + "Blue": 0.651023373776592, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "45ea4ef7-30ff-4502-93c4-2d60aca43740", + "Name": "9401e664-8359-448f-b55e-0b1f0f26eb13" + }, + "8d67e19a-ef51-40b5-9ed8-3b23071e0754": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.999999999999995, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "45ea4ef7-30ff-4502-93c4-2d60aca43740", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 8.999999999999995, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8d67e19a-ef51-40b5-9ed8-3b23071e0754", + "Name": null + }, + "9f894599-b05f-45b7-9107-6f851355ade2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.023137887019262598, + "Green": 0.2439819305408662, + "Blue": 0.521755013857854, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9f894599-b05f-45b7-9107-6f851355ade2", + "Name": "5d3f2c92-8f0d-456d-b1ad-bab4005f06a1" + }, + "a7af29c8-93b7-4c33-8c23-730fd8805ab9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.374999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.374999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9f894599-b05f-45b7-9107-6f851355ade2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.374999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.374999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a7af29c8-93b7-4c33-8c23-730fd8805ab9", + "Name": null + }, + "ae14042c-0696-4031-94ec-70b12cfdb00a": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8791225598562148, + "Green": 0.7575328735436931, + "Blue": 0.577985366609872, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ae14042c-0696-4031-94ec-70b12cfdb00a", + "Name": "20c2f18b-5e31-49e6-bcd5-d41066411c3e" + }, + "cb5b9af2-f5ac-47df-b86a-409ea72c5d60": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.749999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.749999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ae14042c-0696-4031-94ec-70b12cfdb00a", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.749999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 9.749999999999993, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cb5b9af2-f5ac-47df-b86a-409ea72c5d60", + "Name": null + }, + "cb48ea37-61f5-49b3-bb5b-24fc73d9f513": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4373656997631144, + "Green": 0.8103271735880185, + "Blue": 0.779292937731041, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "cb48ea37-61f5-49b3-bb5b-24fc73d9f513", + "Name": "b7883e6e-a796-4f9b-8ba2-6c853050fe33" + }, + "3030f0f6-5a45-4407-9a01-07a0e9498e42": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.124999999999993, + "Y": -0.1875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "cb48ea37-61f5-49b3-bb5b-24fc73d9f513", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.124999999999993, + "Y": -0.1875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3030f0f6-5a45-4407-9a01-07a0e9498e42", + "Name": null + }, + "21cec7a0-d53b-41e3-867e-2d0c483cfcdf": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.007650214716629225, + "Green": 0.007513558961224537, + "Blue": 0.9952262840211514, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "21cec7a0-d53b-41e3-867e-2d0c483cfcdf", + "Name": "a3f02fa3-138e-4cd1-838f-ce5aabd9c4bd" + }, + "636f517c-1005-46b9-bd4c-47c7f411bf77": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.499999999999995, + "Y": -0.7500000000000142, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "21cec7a0-d53b-41e3-867e-2d0c483cfcdf", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.499999999999995, + "Y": -0.7500000000000142, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "636f517c-1005-46b9-bd4c-47c7f411bf77", + "Name": null + }, + "807ab9c3-0a11-43ae-b929-e6887979bfa3": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5538105818227914, + "Green": 0.6614185160311956, + "Blue": 0.7479002260360402, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "807ab9c3-0a11-43ae-b929-e6887979bfa3", + "Name": "e7cfc30b-1c8b-4a2f-927c-65de3a2ac5e4" + }, + "ea8b8b10-1213-4983-a19b-69bebaf402e7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.874999999999995, + "Y": -1.312500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "807ab9c3-0a11-43ae-b929-e6887979bfa3", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 10.874999999999995, + "Y": -1.312500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ea8b8b10-1213-4983-a19b-69bebaf402e7", + "Name": null + }, + "1e400e61-5f50-4cff-910d-e7aab9b32a91": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.89614476631216, + "Green": 0.3756233818715547, + "Blue": 0.24631046235855225, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1e400e61-5f50-4cff-910d-e7aab9b32a91", + "Name": "40a665fb-2a00-4450-a47b-424160b4e58f" + }, + "4a146f05-e355-49e5-8504-3c9432f384e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.249999999999993, + "Y": -1.875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1e400e61-5f50-4cff-910d-e7aab9b32a91", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.249999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.249999999999993, + "Y": -1.875, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4a146f05-e355-49e5-8504-3c9432f384e8", + "Name": null + }, + "19be73f9-a03d-4b22-b75a-98935d086695": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.49119088961332613, + "Green": 0.5579599489262141, + "Blue": 0.5083320715969112, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "19be73f9-a03d-4b22-b75a-98935d086695", + "Name": "49c380a2-d709-43b5-9dae-9d265aed51d9" + }, + "a2f1e7ed-b8c1-47cd-83dd-e60dc0818bc2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.624999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.624999999999995, + "Y": -2.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "19be73f9-a03d-4b22-b75a-98935d086695", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.624999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.624999999999995, + "Y": -2.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a2f1e7ed-b8c1-47cd-83dd-e60dc0818bc2", + "Name": null + }, + "85429e92-7c32-46a5-a911-cc275ba4105d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9382887980613339, + "Green": 0.3695243622034436, + "Blue": 0.8112886672892089, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "85429e92-7c32-46a5-a911-cc275ba4105d", + "Name": "c83f997e-244a-4000-b047-434ba7caf0d7" + }, + "bdd0f0e8-7300-48b0-913f-8776c3d2231f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999995, + "Y": -3.000000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "85429e92-7c32-46a5-a911-cc275ba4105d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 11.999999999999995, + "Y": -3.000000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bdd0f0e8-7300-48b0-913f-8776c3d2231f", + "Name": null + }, + "2704992d-ce4b-41d9-b031-1e678198ab86": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4100305346818783, + "Green": 0.7522102588565136, + "Blue": 0.9313902156108014, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2704992d-ce4b-41d9-b031-1e678198ab86", + "Name": "e98e6ee7-2ed1-4a69-90e1-cd015ed8328c" + }, + "045c499f-ec79-41d1-ac1e-ddfb32d9f7fb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.374999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.374999999999995, + "Y": -3.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2704992d-ce4b-41d9-b031-1e678198ab86", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.374999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.374999999999995, + "Y": -3.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "045c499f-ec79-41d1-ac1e-ddfb32d9f7fb", + "Name": null + }, + "559100ba-db6b-40e0-bbad-57905da942f9": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7343238656103257, + "Green": 0.771548034516884, + "Blue": 0.06531758469777069, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "559100ba-db6b-40e0-bbad-57905da942f9", + "Name": "311b9158-d32f-4a52-94df-7c1e4d540fb6" + }, + "42dcefb8-17f0-42f4-938a-a243ae74a51f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.749999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.749999999999995, + "Y": -4.125000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "559100ba-db6b-40e0-bbad-57905da942f9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.749999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 12.749999999999995, + "Y": -4.125000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42dcefb8-17f0-42f4-938a-a243ae74a51f", + "Name": null + }, + "7c0f85b4-4931-4568-8419-f0c122d679e2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6359562867488509, + "Green": 0.6018064159908362, + "Blue": 0.3393618996904054, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "7c0f85b4-4931-4568-8419-f0c122d679e2", + "Name": "aca0ed1b-05b9-4fca-b84d-1ffd0515da6d" + }, + "de733d84-a479-4217-9a99-274d0a3c3648": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.124999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.124999999999995, + "Y": -4.687500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7c0f85b4-4931-4568-8419-f0c122d679e2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.124999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.124999999999995, + "Y": -4.687500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "de733d84-a479-4217-9a99-274d0a3c3648", + "Name": null + }, + "265cff73-df79-4154-b767-c3f49df1bab4": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0555106029172943, + "Green": 0.8884134664611953, + "Blue": 0.5267760160038136, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "265cff73-df79-4154-b767-c3f49df1bab4", + "Name": "bdd0d164-5940-4db0-9b34-1a74c7956584" + }, + "012427a7-a81a-420f-a503-ca9d9b357ca3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.499999999999995, + "Y": -5.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "265cff73-df79-4154-b767-c3f49df1bab4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.499999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.499999999999995, + "Y": -5.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "012427a7-a81a-420f-a503-ca9d9b357ca3", + "Name": null + }, + "0b291d87-6385-4cc7-93b2-ebe4d990d6dc": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2937619976204643, + "Green": 0.37826370791451247, + "Blue": 0.5098052423027368, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "0b291d87-6385-4cc7-93b2-ebe4d990d6dc", + "Name": "8ba6f06c-6f26-46eb-bc28-b95c102b99d1" + }, + "9011c0c0-0aa1-478a-82aa-74b3b5b2fc42": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.874999999999995, + "Y": -5.812500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0b291d87-6385-4cc7-93b2-ebe4d990d6dc", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.874999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 13.874999999999995, + "Y": -5.812500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9011c0c0-0aa1-478a-82aa-74b3b5b2fc42", + "Name": null + }, + "b276aaf4-0ede-44d6-bbe1-6e567ed2a0f4": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3142059209357043, + "Green": 0.9518606187551565, + "Blue": 0.8063594325475206, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b276aaf4-0ede-44d6-bbe1-6e567ed2a0f4", + "Name": "2e16c8cb-798e-4786-89b6-4ac8f740c9d2" + }, + "8b41402b-cd71-4185-8283-b9cd1669ee4f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.249999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.249999999999995, + "Y": -6.375000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b276aaf4-0ede-44d6-bbe1-6e567ed2a0f4", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.249999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.249999999999995, + "Y": -6.375000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8b41402b-cd71-4185-8283-b9cd1669ee4f", + "Name": null + }, + "9476008f-1ebd-4d67-99f8-74f9f3f72fb2": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.04718752999193386, + "Green": 0.6544586227529023, + "Blue": 0.3402428381798057, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9476008f-1ebd-4d67-99f8-74f9f3f72fb2", + "Name": "88e5f0d4-7108-437a-a073-be479a260e45" + }, + "fc3646e4-8513-4027-ae55-5c5a115b69fb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.624999999999996, + "Y": -6.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9476008f-1ebd-4d67-99f8-74f9f3f72fb2", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.624999999999996, + "Y": -6.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fc3646e4-8513-4027-ae55-5c5a115b69fb", + "Name": null + }, + "9f528bf7-0989-49b0-a2f0-6fe665d49d98": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6132014932172379, + "Green": 0.4476404336502964, + "Blue": 0.552992957901672, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9f528bf7-0989-49b0-a2f0-6fe665d49d98", + "Name": "eae60340-2dbf-4443-bb73-1c974668d969" + }, + "fc442e8c-979c-4b9f-852c-d88cdece239d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.999999999999995, + "Y": -7.500000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9f528bf7-0989-49b0-a2f0-6fe665d49d98", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.999999999999995, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 14.999999999999995, + "Y": -7.500000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fc442e8c-979c-4b9f-852c-d88cdece239d", + "Name": null + }, + "05b6961f-c9e9-4ebf-81a8-abe880220eb6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.09294079714125991, + "Green": 0.0005649374800570949, + "Blue": 0.7481557609271984, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "05b6961f-c9e9-4ebf-81a8-abe880220eb6", + "Name": "b210b242-bbde-44c5-9c57-941a0666c546" + }, + "7c563816-e3be-4c1e-81f5-071317eb5ce5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.374999999999996, + "Y": -8.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "05b6961f-c9e9-4ebf-81a8-abe880220eb6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.374999999999996, + "Y": -8.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7c563816-e3be-4c1e-81f5-071317eb5ce5", + "Name": null + }, + "9f26c661-7913-42ca-8841-464d949c6b6d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9436877495346999, + "Green": 0.040402899515071374, + "Blue": 0.43744613250598596, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "9f26c661-7913-42ca-8841-464d949c6b6d", + "Name": "e539aba3-da44-4e33-a44d-b3b3048ea37e" + }, + "711cd2c5-2814-4d8c-b29d-8937221d7404": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.749999999999996, + "Y": -8.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "9f26c661-7913-42ca-8841-464d949c6b6d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 15.749999999999996, + "Y": -8.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "711cd2c5-2814-4d8c-b29d-8937221d7404", + "Name": null + }, + "34b88b15-ef83-4e84-a460-ad9a4616e84e": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.14269130217968082, + "Green": 0.08484908895792863, + "Blue": 0.8744575683374226, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "34b88b15-ef83-4e84-a460-ad9a4616e84e", + "Name": "2665a998-520a-4fa2-8808-ce2aeec742c7" + }, + "dd9eb05d-3574-4e6e-8c56-7b52901e2cee": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.124999999999993, + "Y": -9.187500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "34b88b15-ef83-4e84-a460-ad9a4616e84e", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.124999999999993, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.124999999999993, + "Y": -9.187500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dd9eb05d-3574-4e6e-8c56-7b52901e2cee", + "Name": null + }, + "5d78cf49-dfb7-42ab-b348-6920fe51fe5a": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7104663465686452, + "Green": 0.4690920251743365, + "Blue": 0.0053226146871795015, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "5d78cf49-dfb7-42ab-b348-6920fe51fe5a", + "Name": "54212f33-3e44-4811-8b36-664f51351661" + }, + "8bcb2928-16ce-4a8a-acca-4c5b2a1e7594": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.499999999999996, + "Y": -9.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "5d78cf49-dfb7-42ab-b348-6920fe51fe5a", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.499999999999996, + "Y": -9.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8bcb2928-16ce-4a8a-acca-4c5b2a1e7594", + "Name": null + }, + "d188b4ef-ba6b-4edb-a10c-49e9818370cd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6465951509990707, + "Green": 0.7030418341527888, + "Blue": 0.03877913907113445, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d188b4ef-ba6b-4edb-a10c-49e9818370cd", + "Name": "516ba3f6-ae9c-4620-bb1a-ab7e4cc3bcee" + }, + "5291d7a1-215d-4c81-90bd-c8eb30b58d3d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.874999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.874999999999996, + "Y": -10.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d188b4ef-ba6b-4edb-a10c-49e9818370cd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.874999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 16.874999999999996, + "Y": -10.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5291d7a1-215d-4c81-90bd-c8eb30b58d3d", + "Name": null + }, + "2b15283e-a2b7-4656-8f9b-dfecafa7e09d": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7139753530332704, + "Green": 0.3716939279677784, + "Blue": 0.40570714297038835, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2b15283e-a2b7-4656-8f9b-dfecafa7e09d", + "Name": "ab928c62-6e1a-408c-a9bc-3693e14d8043" + }, + "c13c2537-6a2d-4fb4-b380-2b71ad509517": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.249999999999996, + "Y": -10.875000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2b15283e-a2b7-4656-8f9b-dfecafa7e09d", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.249999999999996, + "Y": -10.875000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c13c2537-6a2d-4fb4-b380-2b71ad509517", + "Name": null + }, + "2985d601-2264-4bad-9063-302295449666": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.655864384330746, + "Green": 0.4982999789054971, + "Blue": 0.7730050495700003, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "2985d601-2264-4bad-9063-302295449666", + "Name": "4a77a171-bb70-4a77-92b2-3fe116ecb12a" + }, + "0d8a9e32-1c00-43ec-a16f-2fa023240af0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.624999999999996, + "Y": -11.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "2985d601-2264-4bad-9063-302295449666", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 17.624999999999996, + "Y": -11.437500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0d8a9e32-1c00-43ec-a16f-2fa023240af0", + "Name": null + }, + "b9bb0cb5-22ac-4319-ad4c-93a794143015": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.22112421003222663, + "Green": 0.6023827686916956, + "Blue": 0.9973596739570423, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b9bb0cb5-22ac-4319-ad4c-93a794143015", + "Name": "5d0157bc-e003-4ad3-b686-5180727e248c" + }, + "b2aeae12-142c-4bd9-ae20-1ed762bc0f65": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.0, + "Y": -12.000000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b9bb0cb5-22ac-4319-ad4c-93a794143015", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.0, + "Y": -12.000000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b2aeae12-142c-4bd9-ae20-1ed762bc0f65", + "Name": null + }, + "d0c525ab-3389-48dc-a192-cda401a643ee": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7365052200558154, + "Green": 0.17698496867762178, + "Blue": 0.6060993301710577, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d0c525ab-3389-48dc-a192-cda401a643ee", + "Name": "df6bfa97-d5a1-4fa8-bda7-62a6bb761d38" + }, + "fc02934b-ee43-4cb6-ab52-fe293b80dacd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.374999999999996, + "Y": -12.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0c525ab-3389-48dc-a192-cda401a643ee", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.374999999999996, + "Y": -12.562500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fc02934b-ee43-4cb6-ab52-fe293b80dacd", + "Name": null + }, + "3f2418b9-2a10-4b35-b20c-20a3ffafbcfb": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7019726390493907, + "Green": 0.8911012680694002, + "Blue": 0.7150657394505412, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "3f2418b9-2a10-4b35-b20c-20a3ffafbcfb", + "Name": "4a65b495-8e2e-4dee-9c1e-84ac5f3f37ee" + }, + "d47f702a-2a25-4edb-8bed-40acbed45d10": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.749999999999996, + "Y": -13.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3f2418b9-2a10-4b35-b20c-20a3ffafbcfb", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.749999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 18.749999999999996, + "Y": -13.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d47f702a-2a25-4edb-8bed-40acbed45d10", + "Name": null + }, + "452e8f4a-6733-4700-b32f-6be8328f9098": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.47104582910940324, + "Green": 0.7968290414646403, + "Blue": 0.3045698252062173, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "452e8f4a-6733-4700-b32f-6be8328f9098", + "Name": "70a8e5a5-b593-437d-8cfd-a8e438b3c746" + }, + "755bdb74-1881-4135-9565-004229bb014e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.124999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.124999999999996, + "Y": -13.687500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "452e8f4a-6733-4700-b32f-6be8328f9098", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.124999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.124999999999996, + "Y": -13.687500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "755bdb74-1881-4135-9565-004229bb014e", + "Name": null + }, + "773133b8-f888-4f10-8fbf-72d40811c381": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.37839725770912935, + "Green": 0.6413830684690658, + "Blue": 0.7709830970368269, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "773133b8-f888-4f10-8fbf-72d40811c381", + "Name": "3aa68e82-b776-402f-b6a9-ecfbe64028dc" + }, + "6dfec819-533f-4a86-964d-e9a6e08d1d56": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.499999999999996, + "Y": -14.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "773133b8-f888-4f10-8fbf-72d40811c381", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.499999999999996, + "Y": -14.250000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6dfec819-533f-4a86-964d-e9a6e08d1d56", + "Name": null + }, + "8eb76bd9-7bfd-47ef-80cf-28db59597e0c": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.31716182377057234, + "Green": 0.6922685372141509, + "Blue": 0.5614035164757648, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8eb76bd9-7bfd-47ef-80cf-28db59597e0c", + "Name": "7e8a7840-8d81-432d-8839-25b3a4280007" + }, + "fdc35cd7-18ce-428e-9731-4adf21c85ec4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.875, + "Y": -14.812500000000021, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8eb76bd9-7bfd-47ef-80cf-28db59597e0c", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 19.875, + "Y": -14.812500000000021, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fdc35cd7-18ce-428e-9731-4adf21c85ec4", + "Name": null + }, + "53745bbf-2b3c-4642-91b9-c8484fc3a31f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9019157671844195, + "Green": 0.9128193007376135, + "Blue": 0.8035643775032667, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "53745bbf-2b3c-4642-91b9-c8484fc3a31f", + "Name": "9d1c58b5-060f-4c8c-9787-b426f59d955c" + }, + "e620b4c2-5268-4471-bb70-bbcbd8720a60": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.249999999999996, + "Y": -15.375000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "53745bbf-2b3c-4642-91b9-c8484fc3a31f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.249999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.249999999999996, + "Y": -15.375000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e620b4c2-5268-4471-bb70-bbcbd8720a60", + "Name": null + }, + "dc716264-1054-48dc-afa7-2f127cb50b5f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.652318447666391, + "Green": 0.5832956510518191, + "Blue": 0.9091716827401759, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "dc716264-1054-48dc-afa7-2f127cb50b5f", + "Name": "93063016-2dc5-43f2-a1d6-ad0d12fbb5fa" + }, + "fe3ccc56-6898-449f-8a7e-96a4e6e56fdd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.624999999999996, + "Y": -15.937500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dc716264-1054-48dc-afa7-2f127cb50b5f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.624999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 20.624999999999996, + "Y": -15.937500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fe3ccc56-6898-449f-8a7e-96a4e6e56fdd", + "Name": null + }, + "8eac0740-19c8-4e59-883a-5ffcf14ec771": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5044826276155574, + "Green": 0.6676107699366337, + "Blue": 0.24881878460236767, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "8eac0740-19c8-4e59-883a-5ffcf14ec771", + "Name": "ac2afff7-0e08-4e6c-8b81-fbd753bb6508" + }, + "3bc23751-c7ef-4148-8bd1-1b271ab9357c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.0, + "Y": -16.50000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "8eac0740-19c8-4e59-883a-5ffcf14ec771", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.0, + "Y": -16.50000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3bc23751-c7ef-4148-8bd1-1b271ab9357c", + "Name": null + }, + "b24987ef-03cd-4b03-9f64-666db63820e1": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7675802934763861, + "Green": 0.33321217695866345, + "Blue": 0.282764694785124, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "b24987ef-03cd-4b03-9f64-666db63820e1", + "Name": "3d9cc55a-05f1-45d1-bf5f-87ce47017817" + }, + "92452fa8-e370-44e5-89a9-73882543c5f6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.374999999999996, + "Y": -17.062500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "b24987ef-03cd-4b03-9f64-666db63820e1", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.374999999999996, + "Y": -17.062500000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "92452fa8-e370-44e5-89a9-73882543c5f6", + "Name": null + }, + "6cf7876e-301f-420c-9fb9-1a9ad1910f76": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9345356952094174, + "Green": 0.957337108886492, + "Blue": 0.9493404547447992, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6cf7876e-301f-420c-9fb9-1a9ad1910f76", + "Name": "c4da3a0c-f181-494a-bbf1-f8b29ab73fb4" + }, + "d6c5bca5-0771-4392-99b2-9bc88ac5ed94": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.75, + "Y": -17.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6cf7876e-301f-420c-9fb9-1a9ad1910f76", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 21.75, + "Y": -17.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d6c5bca5-0771-4392-99b2-9bc88ac5ed94", + "Name": null + }, + "d5da68ba-6358-47a0-921d-ac5960a24d83": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7799879083316716, + "Green": 0.8718165871090333, + "Blue": 0.39818216878836143, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d5da68ba-6358-47a0-921d-ac5960a24d83", + "Name": "bd9ebe23-9442-429d-8373-ea084e85c5b4" + }, + "285df4ab-4bf9-41eb-886d-a29481294ad8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.125, + "Y": -18.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d5da68ba-6358-47a0-921d-ac5960a24d83", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.125, + "Y": -18.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "285df4ab-4bf9-41eb-886d-a29481294ad8", + "Name": null + }, + "3094ff7d-09e2-42d2-afdd-5ec9d57f3a64": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7507960869701561, + "Green": 0.20718252947888455, + "Blue": 0.8634179308374496, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "3094ff7d-09e2-42d2-afdd-5ec9d57f3a64", + "Name": "93ea84e7-6501-4e58-aba6-bae4937eb6e6" + }, + "51757840-e557-45cc-8cc9-74e624021fb2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.499999999999996, + "Y": -18.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "3094ff7d-09e2-42d2-afdd-5ec9d57f3a64", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.499999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.499999999999996, + "Y": -18.750000000000007, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "51757840-e557-45cc-8cc9-74e624021fb2", + "Name": null + }, + "4005d950-981a-4915-9ab2-1f762b1c489f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8313468023349283, + "Green": 0.4407186631302902, + "Blue": 0.19374782088852852, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4005d950-981a-4915-9ab2-1f762b1c489f", + "Name": "d213125a-74ca-47d8-9d36-28c7741fcc87" + }, + "301e6b51-cdbf-4f3c-9d68-f3cf46d912ce": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.875, + "Y": -19.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4005d950-981a-4915-9ab2-1f762b1c489f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 22.875, + "Y": -19.312500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "301e6b51-cdbf-4f3c-9d68-f3cf46d912ce", + "Name": null + }, + "c24bf2d8-5ea6-442d-b7fd-232f40a73745": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.1593918288868814, + "Green": 0.23942051745924192, + "Blue": 0.6722629837096962, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "c24bf2d8-5ea6-442d-b7fd-232f40a73745", + "Name": "61b697ed-ed8d-4c77-88fd-6cce6ee9f742" + }, + "9baabc76-fa06-4ed8-9bba-48c5b3e11a98": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.25, + "Y": -19.875000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c24bf2d8-5ea6-442d-b7fd-232f40a73745", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.25, + "Y": -19.875000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9baabc76-fa06-4ed8-9bba-48c5b3e11a98", + "Name": null + }, + "dc2550e3-88b9-4e44-a464-b71b020e5618": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.7007527894809622, + "Green": 0.2681978932899413, + "Blue": 0.06165876568372304, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "dc2550e3-88b9-4e44-a464-b71b020e5618", + "Name": "78b7a7d0-3cff-4129-a558-bd85eb377571" + }, + "5ef78095-dff6-45d4-8e83-e97ff9ba7693": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.625, + "Y": -20.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "dc2550e3-88b9-4e44-a464-b71b020e5618", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 23.625, + "Y": -20.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5ef78095-dff6-45d4-8e83-e97ff9ba7693", + "Name": null + }, + "6308b3c4-0afa-4938-9c84-4ad9636594aa": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.2677960420343075, + "Green": 0.39681352926269803, + "Blue": 0.6794253907536275, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "6308b3c4-0afa-4938-9c84-4ad9636594aa", + "Name": "a0047c19-6ce2-4bcf-a142-d1ae8ccabf58" + }, + "b9bad69b-c553-4b23-a6d6-2e785b74ca42": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.0, + "Y": -21.00000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6308b3c4-0afa-4938-9c84-4ad9636594aa", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.0, + "Y": -21.00000000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b9bad69b-c553-4b23-a6d6-2e785b74ca42", + "Name": null + }, + "f28ef0de-2bbc-471a-b22e-648807061650": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.8443036264946235, + "Green": 0.7539486171463265, + "Blue": 0.5854806781678836, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f28ef0de-2bbc-471a-b22e-648807061650", + "Name": "bb6052be-8999-4240-9e1a-42b7a8cab552" + }, + "69fc9919-4a94-4e7b-a51c-d227dae4cc5f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.374999999999996, + "Y": -21.562500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f28ef0de-2bbc-471a-b22e-648807061650", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.374999999999996, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.374999999999996, + "Y": -21.562500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "69fc9919-4a94-4e7b-a51c-d227dae4cc5f", + "Name": null + }, + "172876e2-4f28-48ae-8b97-92ab5ad56170": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.9694406720667336, + "Green": 0.5688057623658356, + "Blue": 0.019087117639876493, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "172876e2-4f28-48ae-8b97-92ab5ad56170", + "Name": "12a2393e-02ee-48b8-8b7f-3d786e9f78ab" + }, + "2c2f7637-4b9b-40c1-8da9-a822fd54357f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.75, + "Y": -22.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "172876e2-4f28-48ae-8b97-92ab5ad56170", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 24.75, + "Y": -22.125000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2c2f7637-4b9b-40c1-8da9-a822fd54357f", + "Name": null + }, + "52c5be44-3065-490c-af22-b8bbc9d96a07": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0881879912168663, + "Green": 0.23202259244025805, + "Blue": 0.5093741987409881, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "52c5be44-3065-490c-af22-b8bbc9d96a07", + "Name": "768b355b-f7e8-4a82-a573-1e7e1a1365f8" + }, + "aaef37cb-6692-426b-869b-d3fbcac206fc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.125, + "Y": -22.68750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "52c5be44-3065-490c-af22-b8bbc9d96a07", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.125, + "Y": -22.68750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "aaef37cb-6692-426b-869b-d3fbcac206fc", + "Name": null + }, + "f64124a6-8dfd-406e-b31c-dbd7f231a946": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.35728054556868993, + "Green": 0.9343923455730045, + "Blue": 0.5578890911107366, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f64124a6-8dfd-406e-b31c-dbd7f231a946", + "Name": "b0607171-326f-401c-9552-9ed0143cbbfe" + }, + "b054c9a1-5185-49ef-9b8e-a4570d566043": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.5, + "Y": -23.250000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f64124a6-8dfd-406e-b31c-dbd7f231a946", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.5, + "Y": -23.250000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b054c9a1-5185-49ef-9b8e-a4570d566043", + "Name": null + }, + "a01e049d-4638-46ea-80fa-6173ba18599b": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.4323010446654172, + "Green": 0.5365101338999859, + "Blue": 0.8394919325781482, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "a01e049d-4638-46ea-80fa-6173ba18599b", + "Name": "f3ff5240-d47c-49a7-8053-d181c7f3c669" + }, + "11049a6b-52cf-4bd2-8a19-a3b818858dcf": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.875, + "Y": -23.812500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a01e049d-4638-46ea-80fa-6173ba18599b", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 25.875, + "Y": -23.812500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "11049a6b-52cf-4bd2-8a19-a3b818858dcf", + "Name": null + }, + "1081bcc5-6645-44aa-9362-d684b01b0dc5": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.355229370461418, + "Green": 0.5984093493774577, + "Blue": 0.7695664813600325, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "1081bcc5-6645-44aa-9362-d684b01b0dc5", + "Name": "26360937-8080-4969-beba-d5b47cb48e62" + }, + "429a545c-65cc-4130-a4a5-58a9b4d58485": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -24.37500000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "1081bcc5-6645-44aa-9362-d684b01b0dc5", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -24.37500000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "429a545c-65cc-4130-a4a5-58a9b4d58485", + "Name": null + }, + "f96d820d-7a61-4b54-92d8-df1690812724": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3728009282484655, + "Green": 0.5663657368004162, + "Blue": 0.48508600773526633, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "f96d820d-7a61-4b54-92d8-df1690812724", + "Name": "0bf04fbb-0526-49d3-a5c5-a701cffcd290" + }, + "d131d435-af87-43b1-9328-d6f9c1cff155": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.625, + "Y": -24.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "f96d820d-7a61-4b54-92d8-df1690812724", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 26.625, + "Y": -24.937500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d131d435-af87-43b1-9328-d6f9c1cff155", + "Name": null + }, + "e17d5611-255f-495b-b3f2-b8bebe6d7b36": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6979855856383153, + "Green": 0.07056896484949113, + "Blue": 0.4721006376073233, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "e17d5611-255f-495b-b3f2-b8bebe6d7b36", + "Name": "a2adcdd6-92f7-48f4-b2d1-a017d223752d" + }, + "3d9c75f1-e889-4c3e-80c7-5a2a0c701fc7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.0, + "Y": -25.500000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "e17d5611-255f-495b-b3f2-b8bebe6d7b36", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.0, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.0, + "Y": -25.500000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3d9c75f1-e889-4c3e-80c7-5a2a0c701fc7", + "Name": null + }, + "acb89ff4-9d64-4181-a6d2-a7a10a0fd378": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6098165566147382, + "Green": 0.4929266187795096, + "Blue": 0.34387513359257726, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "acb89ff4-9d64-4181-a6d2-a7a10a0fd378", + "Name": "4df5e013-4f76-4650-a94a-90d207205eac" + }, + "5a6b106e-cdbb-44ec-ba07-ed9e9619995f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.375, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.375, + "Y": -26.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "acb89ff4-9d64-4181-a6d2-a7a10a0fd378", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.375, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.375, + "Y": -26.062500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5a6b106e-cdbb-44ec-ba07-ed9e9619995f", + "Name": null + }, + "09af1ca6-9047-4bca-8f4a-b6d08f07f789": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.23690869903047973, + "Green": 0.8037298381345951, + "Blue": 0.39941287664669234, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "09af1ca6-9047-4bca-8f4a-b6d08f07f789", + "Name": "e5cecadd-ee24-4428-afbc-997a797bab10" + }, + "1bcce726-d246-4bf6-bfdb-40bf36423cd0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.75, + "Y": -26.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "09af1ca6-9047-4bca-8f4a-b6d08f07f789", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.75, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 27.75, + "Y": -26.625000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1bcce726-d246-4bf6-bfdb-40bf36423cd0", + "Name": null + }, + "110566da-81d7-4108-84b4-387cc18755c7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.18716001891864464, + "Green": 0.4997842514420786, + "Blue": 0.9363986476959655, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "110566da-81d7-4108-84b4-387cc18755c7", + "Name": "6677a12b-2d2d-458c-bb1e-0fa929e8a7ba" + }, + "86dbdf19-8365-46bb-8fd0-6568d2c6968e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.125, + "Y": -27.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "110566da-81d7-4108-84b4-387cc18755c7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.125, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.125, + "Y": -27.18750000000002, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "86dbdf19-8365-46bb-8fd0-6568d2c6968e", + "Name": null + }, + "08c954c2-4ec5-4a8b-a0c8-06def73d9967": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.6033393040314965, + "Green": 0.0902320687147938, + "Blue": 0.20338849174016552, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "08c954c2-4ec5-4a8b-a0c8-06def73d9967", + "Name": "95435046-c6c8-4078-bc2b-14de46831e6a" + }, + "5ba89eac-deb6-4b30-8c63-aa3aeb6f10a7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.5, + "Y": -27.750000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "08c954c2-4ec5-4a8b-a0c8-06def73d9967", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.5, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.5, + "Y": -27.750000000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5ba89eac-deb6-4b30-8c63-aa3aeb6f10a7", + "Name": null + }, + "d0ed7748-dc01-4694-bd74-6acf90319d22": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.36385977657691565, + "Green": 0.8105472362649382, + "Blue": 0.3030108247431977, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "d0ed7748-dc01-4694-bd74-6acf90319d22", + "Name": "c330e729-d81a-40f4-a459-0bc6c8fedc77" + }, + "48512fbb-070d-4ac3-b46c-db024f96764e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.875, + "Y": -28.312500000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0ed7748-dc01-4694-bd74-6acf90319d22", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.875, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 28.875, + "Y": -28.312500000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "48512fbb-070d-4ac3-b46c-db024f96764e", + "Name": null + }, + "4256a72d-67f8-4cfd-b623-cda1a95ad2ed": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.37909505114848496, + "Green": 0.6626080957532898, + "Blue": 0.9751599370386265, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "4256a72d-67f8-4cfd-b623-cda1a95ad2ed", + "Name": "50e596eb-41ad-4818-8d30-722eaf2a8e55" + }, + "067e6e50-b9a4-4051-9a88-ef70134865cb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.250000000000004, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.250000000000004, + "Y": -28.875000000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "4256a72d-67f8-4cfd-b623-cda1a95ad2ed", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.250000000000004, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.250000000000004, + "Y": -28.875000000000018, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "067e6e50-b9a4-4051-9a88-ef70134865cb", + "Name": null + }, + "ff71ce93-3577-4b7b-9629-95a57668371f": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.35404373209646145, + "Green": 0.47406625676623837, + "Blue": 0.5063263175572856, + "Alpha": 1.0 + }, + "SpecularFactor": 0.1, + "GlossinessFactor": 0.9, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "Id": "ff71ce93-3577-4b7b-9629-95a57668371f", + "Name": "bfdb74a7-13f0-4b5d-9a97-526e181ddeef" + }, + "2a219401-cd11-4b33-887c-8405e8aff89d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.625, + "Y": -29.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "ff71ce93-3577-4b7b-9629-95a57668371f", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "77a9f129-0920-40f0-9e77-044b189f100b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.625, + "Y": -60.0, + "Z": 0.0 + }, + "End": { + "X": 29.625, + "Y": -29.437500000000014, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2a219401-cd11-4b33-887c-8405e8aff89d", + "Name": null + }, + "ca45ed23-9590-4a54-9033-1d0e5bcfab99": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ca45ed23-9590-4a54-9033-1d0e5bcfab99", + "Name": null + }, + "a685c334-87cc-4819-a510-1a407ba0e9c6": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.3, + "Green": 0.7, + "Blue": 0.7, + "Alpha": 0.6 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "a685c334-87cc-4819-a510-1a407ba0e9c6", + "Name": "envelope" + }, + "43388ca2-4262-4ba5-8965-60d8ffeb25ec": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "43388ca2-4262-4ba5-8965-60d8ffeb25ec", + "Name": null + }, + "681f0379-5e88-4951-97bb-99cbd307f175": { + "discriminator": "Elements.Envelope", + "Profile": "ca45ed23-9590-4a54-9033-1d0e5bcfab99", + "Elevation": -10.0, + "Height": 10.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -10.0 + ] + } + }, + "Material": "a685c334-87cc-4819-a510-1a407ba0e9c6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "43388ca2-4262-4ba5-8965-60d8ffeb25ec", + "Height": 10.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "681f0379-5e88-4951-97bb-99cbd307f175", + "Name": "" + }, + "b1d94f62-fd8b-4883-9f3a-51a61abc7874": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b1d94f62-fd8b-4883-9f3a-51a61abc7874", + "Name": null + }, + "90bc8c6e-c055-4b39-9118-4bdb488e400a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "90bc8c6e-c055-4b39-9118-4bdb488e400a", + "Name": null + }, + "a870fe10-a1af-4d71-8ef4-18d2befc1ae0": { + "discriminator": "Elements.Envelope", + "Profile": "b1d94f62-fd8b-4883-9f3a-51a61abc7874", + "Elevation": 0.0, + "Height": 20.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "a685c334-87cc-4819-a510-1a407ba0e9c6", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "90bc8c6e-c055-4b39-9118-4bdb488e400a", + "Height": 20.0, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a870fe10-a1af-4d71-8ef4-18d2befc1ae0", + "Name": "" + }, + "d1e0443c-b18f-44a5-b81d-07d70a9aac43": { + "discriminator": "Elements.Primitive", + "Id": "d1e0443c-b18f-44a5-b81d-07d70a9aac43", + "Name": "Basement" + }, + "17934ee8-895e-4fa6-b581-f327412eea4f": { + "discriminator": "Elements.Primitive", + "Id": "17934ee8-895e-4fa6-b581-f327412eea4f", + "Name": "Ground Floor" + }, + "96c1166f-e649-4dcc-aa4e-926454480d73": { + "discriminator": "Elements.Primitive", + "Id": "96c1166f-e649-4dcc-aa4e-926454480d73", + "Name": "Typical Floor" + }, + "605b5379-10c6-4efc-83f2-9c3546c9af53": { + "discriminator": "Elements.Primitive", + "Id": "605b5379-10c6-4efc-83f2-9c3546c9af53", + "Name": "Penthouse" + }, + "aa8ce056-c0eb-4204-9399-0ffad6e3ac55": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "aa8ce056-c0eb-4204-9399-0ffad6e3ac55", + "Name": "Basement_material" + }, + "5a566959-580b-488e-b559-7b48143d91e0": { + "discriminator": "Elements.Level", + "Elevation": -10.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -10.0 + ] + } + }, + "Material": "aa8ce056-c0eb-4204-9399-0ffad6e3ac55", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5a566959-580b-488e-b559-7b48143d91e0", + "Name": "Basement" + }, + "3e4e7b6e-3392-4ed8-8611-839662f931d7": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": -10.0, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "3e4e7b6e-3392-4ed8-8611-839662f931d7", + "Name": "Basement" + }, + "e0b52343-c271-41bf-b812-ed6657043d1a": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": -10.0 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": -1.0000999999999998 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "e0b52343-c271-41bf-b812-ed6657043d1a", + "Name": "Basement" + }, + "c1e5299d-3f7f-407b-be18-d042cc7948b1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c1e5299d-3f7f-407b-be18-d042cc7948b1", + "Name": null + }, + "0a56d396-bd81-44c6-9ec0-34fa2fb7ee25": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0a56d396-bd81-44c6-9ec0-34fa2fb7ee25", + "Name": null + }, + "f44f6d0d-44b2-4349-b9c0-268c0fec42fa": { + "discriminator": "Elements.LevelVolume", + "Profile": "c1e5299d-3f7f-407b-be18-d042cc7948b1", + "Height": 10.0, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + -10.0 + ] + } + }, + "Material": "aa8ce056-c0eb-4204-9399-0ffad6e3ac55", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0a56d396-bd81-44c6-9ec0-34fa2fb7ee25", + "Height": 9.9999, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f44f6d0d-44b2-4349-b9c0-268c0fec42fa", + "Name": "Basement", + "Plan View": "e0b52343-c271-41bf-b812-ed6657043d1a" + }, + "c0c81819-9cb1-416b-acbd-4e8daccdc4cd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "c0c81819-9cb1-416b-acbd-4e8daccdc4cd", + "Name": "Ground Floor_material" + }, + "4498ac7b-7175-4918-b3bf-8abb95bb6935": { + "discriminator": "Elements.Level", + "Elevation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c0c81819-9cb1-416b-acbd-4e8daccdc4cd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4498ac7b-7175-4918-b3bf-8abb95bb6935", + "Name": "Ground Floor" + }, + "386cc57a-efe7-4362-ab41-4a3305ef6c15": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 0.0, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "386cc57a-efe7-4362-ab41-4a3305ef6c15", + "Name": "Ground Floor" + }, + "0b098943-0ee6-4ef6-8a43-7f22a3b09e3b": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 3.4999000000000002 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "0b098943-0ee6-4ef6-8a43-7f22a3b09e3b", + "Name": "Ground Floor" + }, + "211117af-28a9-4b74-8996-fa36c30cd3d1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "211117af-28a9-4b74-8996-fa36c30cd3d1", + "Name": null + }, + "0b06d229-214a-4a96-b1ee-67de9c0e1d14": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0b06d229-214a-4a96-b1ee-67de9c0e1d14", + "Name": null + }, + "6928cefc-d742-40c6-9761-8e5cfb3b2436": { + "discriminator": "Elements.LevelVolume", + "Profile": "211117af-28a9-4b74-8996-fa36c30cd3d1", + "Height": 4.5, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "c0c81819-9cb1-416b-acbd-4e8daccdc4cd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0b06d229-214a-4a96-b1ee-67de9c0e1d14", + "Height": 4.4999, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6928cefc-d742-40c6-9761-8e5cfb3b2436", + "Name": "Ground Floor", + "Plan View": "0b098943-0ee6-4ef6-8a43-7f22a3b09e3b" + }, + "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Name": "Typical Floor_material" + }, + "ee8911ad-eea2-48ba-b2a8-5467bd6e08b8": { + "discriminator": "Elements.Level", + "Elevation": 4.5, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ee8911ad-eea2-48ba-b2a8-5467bd6e08b8", + "Name": "Typical Floor (1)" + }, + "d4b46f9d-cf38-4fc6-a2cd-077dc468327a": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 4.5, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "d4b46f9d-cf38-4fc6-a2cd-077dc468327a", + "Name": "Typical Floor (1)" + }, + "406be19c-8218-4a08-a2c0-b340f6047806": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 4.5 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 7.3499 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "406be19c-8218-4a08-a2c0-b340f6047806", + "Name": "Typical Floor (1)" + }, + "18ea53e1-ba0a-42ae-b5b8-e314368872ac": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "18ea53e1-ba0a-42ae-b5b8-e314368872ac", + "Name": null + }, + "859b2a87-f398-4bbe-88b4-ab7d6b98a9da": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "859b2a87-f398-4bbe-88b4-ab7d6b98a9da", + "Name": null + }, + "8b3714c5-ffb8-44dc-95a2-fb007b339fc2": { + "discriminator": "Elements.LevelVolume", + "Profile": "18ea53e1-ba0a-42ae-b5b8-e314368872ac", + "Height": 3.8499999999999996, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "859b2a87-f398-4bbe-88b4-ab7d6b98a9da", + "Height": 3.8498999999999994, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8b3714c5-ffb8-44dc-95a2-fb007b339fc2", + "Name": "Typical Floor (1)", + "Plan View": "406be19c-8218-4a08-a2c0-b340f6047806" + }, + "4e013d4b-edd5-4efe-a968-e60dcd5e89c0": { + "discriminator": "Elements.Level", + "Elevation": 8.35, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4e013d4b-edd5-4efe-a968-e60dcd5e89c0", + "Name": "Typical Floor (2)" + }, + "ee43fa61-b3cc-420f-ae54-e2857401c23a": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 8.35, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "ee43fa61-b3cc-420f-ae54-e2857401c23a", + "Name": "Typical Floor (2)" + }, + "d6c96d5d-55d4-4e41-855b-c12762ad9aa0": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 8.35 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 11.1999 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "d6c96d5d-55d4-4e41-855b-c12762ad9aa0", + "Name": "Typical Floor (2)" + }, + "d94b7e64-109f-4713-af2a-d32af437ebb3": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d94b7e64-109f-4713-af2a-d32af437ebb3", + "Name": null + }, + "fcb66a3d-a9c5-4c36-a2d2-8c1153063296": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fcb66a3d-a9c5-4c36-a2d2-8c1153063296", + "Name": null + }, + "da2199d3-e0aa-41f2-a120-ceb40688e0d5": { + "discriminator": "Elements.LevelVolume", + "Profile": "d94b7e64-109f-4713-af2a-d32af437ebb3", + "Height": 3.8499999999999996, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Material": "2b20b8ba-bbdb-48d3-bd0b-18d62b465cf9", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "fcb66a3d-a9c5-4c36-a2d2-8c1153063296", + "Height": 3.8498999999999994, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "da2199d3-e0aa-41f2-a120-ceb40688e0d5", + "Name": "Typical Floor (2)", + "Plan View": "d6c96d5d-55d4-4e41-855b-c12762ad9aa0" + }, + "3a088b37-46ad-4e14-bd29-720a75330a59": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.945, + "Green": 0.3607, + "Blue": 0.419, + "Alpha": 0.5 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "3a088b37-46ad-4e14-bd29-720a75330a59", + "Name": "Penthouse_material" + }, + "bed58e8b-1609-4703-a051-d7a9fc24d2a6": { + "discriminator": "Elements.Level", + "Elevation": 12.2, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Material": "3a088b37-46ad-4e14-bd29-720a75330a59", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bed58e8b-1609-4703-a051-d7a9fc24d2a6", + "Name": "Penthouse" + }, + "215e327f-2581-4292-8c2b-ac4a8f431bc0": { + "discriminator": "Elements.LevelPerimeter", + "Area": 1500.0000000000005, + "Elevation": 12.2, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Id": "215e327f-2581-4292-8c2b-ac4a8f431bc0", + "Name": "Penthouse" + }, + "1861a342-f735-4fbc-bec6-0c38f7e18a0d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 12.2 + }, + "Max": { + "X": 30.0, + "Y": 0.0, + "Z": 18.9999 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "named_position": "top", + "projection": "orthographic" + }, + "Inclusive": true, + "Id": "1861a342-f735-4fbc-bec6-0c38f7e18a0d", + "Name": "Penthouse" + }, + "fc68d63c-e9a5-44f6-b410-af2b42eb9e74": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fc68d63c-e9a5-44f6-b410-af2b42eb9e74", + "Name": null + }, + "e56268a9-d57e-41e2-87c0-367b202bd720": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -60.0, + "Z": 0.0 + }, + { + "X": 30.0, + "Y": -30.0, + "Z": 0.0 + }, + { + "X": 10.0, + "Y": 0.0, + "Z": 0.0 + }, + { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e56268a9-d57e-41e2-87c0-367b202bd720", + "Name": null + }, + "5382e5c8-a0fc-46f0-aaae-15586fa677fd": { + "discriminator": "Elements.LevelVolume", + "Profile": "fc68d63c-e9a5-44f6-b410-af2b42eb9e74", + "Height": 7.800000000000001, + "Area": 1500.0000000000005, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Material": "3a088b37-46ad-4e14-bd29-720a75330a59", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "e56268a9-d57e-41e2-87c0-367b202bd720", + "Height": 7.799900000000001, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5382e5c8-a0fc-46f0-aaae-15586fa677fd", + "Name": "Penthouse", + "Plan View": "1861a342-f735-4fbc-bec6-0c38f7e18a0d" + }, + "6771e26c-6d64-4c0e-962c-018166d01dfd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.800000011920929, + "GlossinessFactor": 0.5, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Name": "panel" + }, + "c47b651a-0ac0-4b76-a847-bdde1a073d17": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c47b651a-0ac0-4b76-a847-bdde1a073d17", + "Name": null + }, + "f8950a85-67a1-4d0e-b71a-3dad11a889fc": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + -1.0658141036401503E-14, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "c47b651a-0ac0-4b76-a847-bdde1a073d17", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f8950a85-67a1-4d0e-b71a-3dad11a889fc", + "Name": "FP_1_0" + }, + "906e8bc7-2847-4c8c-82df-4f4ed1d33090": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "906e8bc7-2847-4c8c-82df-4f4ed1d33090", + "Name": null + }, + "06319917-282e-4212-9488-b7a24f5360ab": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "906e8bc7-2847-4c8c-82df-4f4ed1d33090", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "06319917-282e-4212-9488-b7a24f5360ab", + "Name": "FP_1" + }, + "6d255750-badf-48df-940f-c20cf683aedd": { + "discriminator": "Elements.Material", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.7 + }, + "SpecularFactor": 0.800000011920929, + "GlossinessFactor": 1.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "6d255750-badf-48df-940f-c20cf683aedd", + "Name": "Glazing" + }, + "931b54f2-081d-46ff-926e-ad9f8a0ed196": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Name": null + }, + "cb0a9a3d-8cdb-4dd2-9562-ae567db59400": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "cb0a9a3d-8cdb-4dd2-9562-ae567db59400", + "Name": "FP_1_1" + }, + "93053083-85d5-43d5-8061-86e596552218": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "93053083-85d5-43d5-8061-86e596552218", + "Name": "FG_1_1" + }, + "fe7162e6-39e4-45a4-81e6-bfe02e642a1b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "fe7162e6-39e4-45a4-81e6-bfe02e642a1b", + "Name": "FP_1_2" + }, + "78043bf8-3424-4251-9add-61a2ecffdb90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "78043bf8-3424-4251-9add-61a2ecffdb90", + "Name": "FG_1_2" + }, + "7cc63ff2-ae64-461e-8821-f63175ff7377": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7cc63ff2-ae64-461e-8821-f63175ff7377", + "Name": "FP_1_3" + }, + "56a43179-0a6d-46be-bbd9-ec90544edae6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "56a43179-0a6d-46be-bbd9-ec90544edae6", + "Name": "FG_1_3" + }, + "e388f552-f508-4404-9438-a7789f6c1b25": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e388f552-f508-4404-9438-a7789f6c1b25", + "Name": "FP_1_4" + }, + "fd1bca60-3527-4184-9793-546750104775": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "fd1bca60-3527-4184-9793-546750104775", + "Name": "FG_1_4" + }, + "f0d21d9d-ae74-4b31-9f22-2b9d75b4984d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f0d21d9d-ae74-4b31-9f22-2b9d75b4984d", + "Name": "FP_1_5" + }, + "b1912f25-1479-4d03-b1d7-d25533f6d465": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b1912f25-1479-4d03-b1d7-d25533f6d465", + "Name": "FG_1_5" + }, + "9f593865-f103-49e6-b728-f78a18f12ec3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9f593865-f103-49e6-b728-f78a18f12ec3", + "Name": "FP_1_6" + }, + "75b6be77-0504-4953-a0bd-8aee73d7d941": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "75b6be77-0504-4953-a0bd-8aee73d7d941", + "Name": "FG_1_6" + }, + "28eec4d3-1e62-43ef-a522-29bb4c2e5120": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "28eec4d3-1e62-43ef-a522-29bb4c2e5120", + "Name": "FP_1_7" + }, + "a54c6903-3673-4c37-a645-21309e3c85d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a54c6903-3673-4c37-a645-21309e3c85d1", + "Name": "FG_1_7" + }, + "82ae069a-e5ac-4281-8af1-5187f7364c95": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "82ae069a-e5ac-4281-8af1-5187f7364c95", + "Name": "FP_1_8" + }, + "7ed89d00-2529-4008-8662-1b63cbe5fd15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7ed89d00-2529-4008-8662-1b63cbe5fd15", + "Name": "FG_1_8" + }, + "678abb40-0927-4521-a3bd-3ded535a5fd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "678abb40-0927-4521-a3bd-3ded535a5fd9", + "Name": "FP_1_9" + }, + "046fdc20-8d49-482e-8e47-ad672909c354": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "046fdc20-8d49-482e-8e47-ad672909c354", + "Name": "FG_1_9" + }, + "a4f1b793-0e65-4849-b091-26d5286ce4d2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a4f1b793-0e65-4849-b091-26d5286ce4d2", + "Name": "FP_1_10" + }, + "e8191292-a465-45ad-a6ce-278271695ab6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e8191292-a465-45ad-a6ce-278271695ab6", + "Name": "FG_1_10" + }, + "900639ea-fef3-4824-ba3e-1e3b23b826d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "900639ea-fef3-4824-ba3e-1e3b23b826d7", + "Name": "FP_1_11" + }, + "e7de7303-5ab9-450b-bc7b-6d19bc8f9bc9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e7de7303-5ab9-450b-bc7b-6d19bc8f9bc9", + "Name": "FG_1_11" + }, + "ec3ac7ca-58d0-4efc-b70d-51d4925748f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ec3ac7ca-58d0-4efc-b70d-51d4925748f4", + "Name": "FP_1_12" + }, + "9ce3b453-218c-4e6c-9165-3190abc77f9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9ce3b453-218c-4e6c-9165-3190abc77f9a", + "Name": "FG_1_12" + }, + "d4574e56-f4d7-4134-bfd1-4521b31d2b49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "d4574e56-f4d7-4134-bfd1-4521b31d2b49", + "Name": "FP_1_13" + }, + "cae32929-d8f9-46f1-9830-0455d3f2ce9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "cae32929-d8f9-46f1-9830-0455d3f2ce9f", + "Name": "FG_1_13" + }, + "2805a18f-9023-46cc-9e8b-5662b18aba45": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2805a18f-9023-46cc-9e8b-5662b18aba45", + "Name": "FP_1_14" + }, + "1d10978e-841c-4592-8e35-1986f279276f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1d10978e-841c-4592-8e35-1986f279276f", + "Name": "FG_1_14" + }, + "ed9d9f3d-2c28-463e-827a-ea2ce81b6047": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ed9d9f3d-2c28-463e-827a-ea2ce81b6047", + "Name": "FP_1_15" + }, + "6c81f118-9b00-40d7-affd-25c04e6f0fe9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6c81f118-9b00-40d7-affd-25c04e6f0fe9", + "Name": "FG_1_15" + }, + "63ae5fe7-266d-4027-99ca-69f493f7387a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "63ae5fe7-266d-4027-99ca-69f493f7387a", + "Name": "FP_1_16" + }, + "dcd438d0-34ee-4deb-99d6-83bfe1305410": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "dcd438d0-34ee-4deb-99d6-83bfe1305410", + "Name": "FG_1_16" + }, + "743f4f34-c559-4260-a8a6-2d2b56173645": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "06319917-282e-4212-9488-b7a24f5360ab", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "743f4f34-c559-4260-a8a6-2d2b56173645", + "Name": "FP_1_17" + }, + "e27313d9-a024-4d02-a5c9-e83477d0db3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "931b54f2-081d-46ff-926e-ad9f8a0ed196", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e27313d9-a024-4d02-a5c9-e83477d0db3f", + "Name": "FG_1_17" + }, + "ede1f5a4-1af2-4dbe-a3d1-aea74a0b01cc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ede1f5a4-1af2-4dbe-a3d1-aea74a0b01cc", + "Name": null + }, + "839093fa-79a1-4bb2-b47e-80b31e669032": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 29.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ede1f5a4-1af2-4dbe-a3d1-aea74a0b01cc", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "839093fa-79a1-4bb2-b47e-80b31e669032", + "Name": "FP_1_18" + }, + "be847250-9c1a-4719-a377-a33f8ab5d42b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "be847250-9c1a-4719-a377-a33f8ab5d42b", + "Name": null + }, + "42eb2824-6fb3-4328-9cfa-8d1610e2a3a4": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -60.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "be847250-9c1a-4719-a377-a33f8ab5d42b", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42eb2824-6fb3-4328-9cfa-8d1610e2a3a4", + "Name": "FP_1_0" + }, + "4a183951-1962-478d-869b-60bbf6ecd5a0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "4a183951-1962-478d-869b-60bbf6ecd5a0", + "Name": null + }, + "3d4426ba-b64e-45cf-aec7-1176c3c98719": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4a183951-1962-478d-869b-60bbf6ecd5a0", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Name": "FP_1" + }, + "3ef6d442-9d82-4633-a4a5-1036eacb1c59": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Name": null + }, + "e98862d8-9444-4af2-b75f-ffd8a4661abe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e98862d8-9444-4af2-b75f-ffd8a4661abe", + "Name": "FP_1_1" + }, + "74f8d08d-3812-4d50-b0b9-4d1860ed7f9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "74f8d08d-3812-4d50-b0b9-4d1860ed7f9f", + "Name": "FG_1_1" + }, + "268c9ed9-5798-4e55-b6fd-36f4fd41aff2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "268c9ed9-5798-4e55-b6fd-36f4fd41aff2", + "Name": "FP_1_2" + }, + "dec24cb8-ce3c-49ab-9b79-0a178a77ad00": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "dec24cb8-ce3c-49ab-9b79-0a178a77ad00", + "Name": "FG_1_2" + }, + "1e778c9b-3670-4fa8-b603-d98cc9fa1699": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1e778c9b-3670-4fa8-b603-d98cc9fa1699", + "Name": "FP_1_3" + }, + "f055eff3-d0a4-4ce7-90ac-5133712bd288": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f055eff3-d0a4-4ce7-90ac-5133712bd288", + "Name": "FG_1_3" + }, + "3fe77381-f738-45a2-8954-b5bb25dee64e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3fe77381-f738-45a2-8954-b5bb25dee64e", + "Name": "FP_1_4" + }, + "092af80a-0134-495d-870e-b9ccf99b84b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "092af80a-0134-495d-870e-b9ccf99b84b1", + "Name": "FG_1_4" + }, + "e1a7c69e-cb72-4a0e-a543-a8f4617adfd1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e1a7c69e-cb72-4a0e-a543-a8f4617adfd1", + "Name": "FP_1_5" + }, + "f3ddc507-f3f2-4d51-996c-ba170ca9bc68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f3ddc507-f3f2-4d51-996c-ba170ca9bc68", + "Name": "FG_1_5" + }, + "f39905ef-3722-46b8-bc48-3364b5238df6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f39905ef-3722-46b8-bc48-3364b5238df6", + "Name": "FP_1_6" + }, + "03690d8a-aa6b-494c-9724-697e335d3633": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "03690d8a-aa6b-494c-9724-697e335d3633", + "Name": "FG_1_6" + }, + "095161c4-af60-4037-886f-d524c88cd3ac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "095161c4-af60-4037-886f-d524c88cd3ac", + "Name": "FP_1_7" + }, + "aa006dc7-5af9-4e8e-92e7-fc0485426c83": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "aa006dc7-5af9-4e8e-92e7-fc0485426c83", + "Name": "FG_1_7" + }, + "c65253c8-7e15-470c-8fe5-4546b68d97c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c65253c8-7e15-470c-8fe5-4546b68d97c5", + "Name": "FP_1_8" + }, + "a35e3f90-89d5-4e8f-ba7c-d1278b3c9d4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a35e3f90-89d5-4e8f-ba7c-d1278b3c9d4a", + "Name": "FG_1_8" + }, + "9c554f8e-83d5-4e68-97d3-28e1dac678f0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9c554f8e-83d5-4e68-97d3-28e1dac678f0", + "Name": "FP_1_9" + }, + "f3fd129f-a763-49b6-ab3f-c8a8ad5a74bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f3fd129f-a763-49b6-ab3f-c8a8ad5a74bb", + "Name": "FG_1_9" + }, + "b30088c5-18c2-4f31-893f-62096f57f4d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b30088c5-18c2-4f31-893f-62096f57f4d9", + "Name": "FP_1_10" + }, + "30ff4c33-14a0-4cac-a4ba-6264ccab4090": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "30ff4c33-14a0-4cac-a4ba-6264ccab4090", + "Name": "FG_1_10" + }, + "90e07bf5-4d42-4f82-bbcf-8962234f0367": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "90e07bf5-4d42-4f82-bbcf-8962234f0367", + "Name": "FP_1_11" + }, + "3f9c5ea8-0eef-42b5-8051-ac606d0374aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3f9c5ea8-0eef-42b5-8051-ac606d0374aa", + "Name": "FG_1_11" + }, + "107d58a9-3a5b-4fa4-b8c5-ce4270a1e739": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "107d58a9-3a5b-4fa4-b8c5-ce4270a1e739", + "Name": "FP_1_12" + }, + "52f5f081-f188-4fc6-986f-8352469fe346": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "52f5f081-f188-4fc6-986f-8352469fe346", + "Name": "FG_1_12" + }, + "99f2f5e1-3e9a-49e0-a61b-5a777b3294c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "99f2f5e1-3e9a-49e0-a61b-5a777b3294c3", + "Name": "FP_1_13" + }, + "1f10033d-8be2-415d-9ca8-98b92dafd859": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1f10033d-8be2-415d-9ca8-98b92dafd859", + "Name": "FG_1_13" + }, + "336cc1f8-a0ab-44a8-8968-8195d844c396": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "336cc1f8-a0ab-44a8-8968-8195d844c396", + "Name": "FP_1_14" + }, + "40d5641f-0600-4ad8-8b7f-65cc12db4d2c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "40d5641f-0600-4ad8-8b7f-65cc12db4d2c", + "Name": "FG_1_14" + }, + "4f861061-cd6b-4957-8726-4e038c6e663a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4f861061-cd6b-4957-8726-4e038c6e663a", + "Name": "FP_1_15" + }, + "83f465f9-9ff5-4607-bee8-9f7c57f78ee6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "83f465f9-9ff5-4607-bee8-9f7c57f78ee6", + "Name": "FG_1_15" + }, + "30bf048f-80f3-4a45-8055-49176397188a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "30bf048f-80f3-4a45-8055-49176397188a", + "Name": "FP_1_16" + }, + "8ac79010-6df0-4212-b174-9a5928651ee2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8ac79010-6df0-4212-b174-9a5928651ee2", + "Name": "FG_1_16" + }, + "87e78028-232e-4839-8c8a-d09b0f30bc81": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3d4426ba-b64e-45cf-aec7-1176c3c98719", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "87e78028-232e-4839-8c8a-d09b0f30bc81", + "Name": "FP_1_17" + }, + "233cbfe1-540c-41bb-b948-bf823e73f636": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3ef6d442-9d82-4633-a4a5-1036eacb1c59", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "233cbfe1-540c-41bb-b948-bf823e73f636", + "Name": "FG_1_17" + }, + "5342297d-7ade-4b3a-b780-3f53cbea1e5b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5342297d-7ade-4b3a-b780-3f53cbea1e5b", + "Name": null + }, + "076a535e-d209-4cb0-b3f1-162cb08aab66": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -30.549999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5342297d-7ade-4b3a-b780-3f53cbea1e5b", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "076a535e-d209-4cb0-b3f1-162cb08aab66", + "Name": "FP_1_18" + }, + "4e8b2071-9d49-47c8-832b-48df23a28b1d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386746, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386746, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4e8b2071-9d49-47c8-832b-48df23a28b1d", + "Name": null + }, + "b456aeb6-7a4e-4fa9-8f18-1e7913ce8f7d": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 30.0, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -30.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "4e8b2071-9d49-47c8-832b-48df23a28b1d", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b456aeb6-7a4e-4fa9-8f18-1e7913ce8f7d", + "Name": "FP_1_0" + }, + "5c514df7-2877-4f81-8898-f429342f589c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "5c514df7-2877-4f81-8898-f429342f589c", + "Name": null + }, + "39012c42-5bc1-4f70-8625-fbcb6ded8b43": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "5c514df7-2877-4f81-8898-f429342f589c", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Name": "FP_1" + }, + "4532e939-5a9b-45a7-962e-faee9617610a": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "4532e939-5a9b-45a7-962e-faee9617610a", + "Name": null + }, + "497ccd33-e3ec-471c-a0a1-aa5405183cdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "497ccd33-e3ec-471c-a0a1-aa5405183cdf", + "Name": "FP_1_1" + }, + "6be12d68-5c5f-4582-b0a2-ccc388149ab0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6be12d68-5c5f-4582-b0a2-ccc388149ab0", + "Name": "FG_1_1" + }, + "4b66d4e4-c76c-4a45-be6e-4a3ec435ecc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4b66d4e4-c76c-4a45-be6e-4a3ec435ecc0", + "Name": "FP_1_2" + }, + "548bc86b-6132-4298-bf9f-e159d1e9a226": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "548bc86b-6132-4298-bf9f-e159d1e9a226", + "Name": "FG_1_2" + }, + "24286e57-95dc-4fea-8d12-b68b15a67d53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "24286e57-95dc-4fea-8d12-b68b15a67d53", + "Name": "FP_1_3" + }, + "9de1ff26-46ab-44cf-b7ab-b6816257f357": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9de1ff26-46ab-44cf-b7ab-b6816257f357", + "Name": "FG_1_3" + }, + "a7ae8722-317e-460a-a4fd-6025acc2f39b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a7ae8722-317e-460a-a4fd-6025acc2f39b", + "Name": "FP_1_4" + }, + "975397a0-a0d6-4e6e-bcb9-c237b55f0e5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "975397a0-a0d6-4e6e-bcb9-c237b55f0e5a", + "Name": "FG_1_4" + }, + "11227235-5570-4fd0-ad43-418dcb5d4e13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "11227235-5570-4fd0-ad43-418dcb5d4e13", + "Name": "FP_1_5" + }, + "e6cd6743-d143-450c-b24c-a8fa110173cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e6cd6743-d143-450c-b24c-a8fa110173cb", + "Name": "FG_1_5" + }, + "b866d391-759a-4107-bce1-6690074ec0f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b866d391-759a-4107-bce1-6690074ec0f8", + "Name": "FP_1_6" + }, + "300ce9a2-bf2c-480d-bf8c-8a77e252e186": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "300ce9a2-bf2c-480d-bf8c-8a77e252e186", + "Name": "FG_1_6" + }, + "73298113-cc50-4969-b10d-f4c5152e4699": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "73298113-cc50-4969-b10d-f4c5152e4699", + "Name": "FP_1_7" + }, + "2834b881-cd36-4f9d-b13e-6fc91fb85f9e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2834b881-cd36-4f9d-b13e-6fc91fb85f9e", + "Name": "FG_1_7" + }, + "8dee3b31-1721-4446-86e9-3c41e340e591": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8dee3b31-1721-4446-86e9-3c41e340e591", + "Name": "FP_1_8" + }, + "e58885fa-0c0d-42ff-8b37-6e342b6c6fb9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e58885fa-0c0d-42ff-8b37-6e342b6c6fb9", + "Name": "FG_1_8" + }, + "7b1d5343-c925-4d18-a17a-e80c23a866d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7b1d5343-c925-4d18-a17a-e80c23a866d7", + "Name": "FP_1_9" + }, + "50a33b6c-ce11-472c-97ce-a5af939dbda2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "50a33b6c-ce11-472c-97ce-a5af939dbda2", + "Name": "FG_1_9" + }, + "baebb40e-2c09-47e6-ba1e-8ac32c73af3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "baebb40e-2c09-47e6-ba1e-8ac32c73af3c", + "Name": "FP_1_10" + }, + "b0371fad-0ea4-4217-8ec7-dd3b6e0b7e38": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b0371fad-0ea4-4217-8ec7-dd3b6e0b7e38", + "Name": "FG_1_10" + }, + "803446b8-ae2e-4a09-aa30-5bfd1ea08be3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "803446b8-ae2e-4a09-aa30-5bfd1ea08be3", + "Name": "FP_1_11" + }, + "aadd6695-e3db-462e-92ed-888e1679eebe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "aadd6695-e3db-462e-92ed-888e1679eebe", + "Name": "FG_1_11" + }, + "20d8c796-b95a-41ae-a5db-9fd43cb65f6c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "20d8c796-b95a-41ae-a5db-9fd43cb65f6c", + "Name": "FP_1_12" + }, + "ba4be1b4-d4ae-405d-bbb1-3bdc7f6dc3fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ba4be1b4-d4ae-405d-bbb1-3bdc7f6dc3fc", + "Name": "FG_1_12" + }, + "90abec15-2def-41f0-989e-a242b9690ad7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "90abec15-2def-41f0-989e-a242b9690ad7", + "Name": "FP_1_13" + }, + "6702c390-470f-47bb-9a8b-b47baefdb2a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6702c390-470f-47bb-9a8b-b47baefdb2a2", + "Name": "FG_1_13" + }, + "26401f21-9651-4cc3-bba2-7c5c689fb2ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "26401f21-9651-4cc3-bba2-7c5c689fb2ce", + "Name": "FP_1_14" + }, + "a83f44d3-feee-4170-9871-6f83b6a4ca81": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a83f44d3-feee-4170-9871-6f83b6a4ca81", + "Name": "FG_1_14" + }, + "e7b6ab3d-78f4-420e-a870-cb4b197cdc90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e7b6ab3d-78f4-420e-a870-cb4b197cdc90", + "Name": "FP_1_15" + }, + "5f8b02c4-8a49-40dc-a51e-b24ca53a814d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5f8b02c4-8a49-40dc-a51e-b24ca53a814d", + "Name": "FG_1_15" + }, + "402d5f7d-e526-40ad-9db8-bab722d27269": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "402d5f7d-e526-40ad-9db8-bab722d27269", + "Name": "FP_1_16" + }, + "c6c2be81-0564-4fd6-80ff-0ff5d0e8da91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c6c2be81-0564-4fd6-80ff-0ff5d0e8da91", + "Name": "FG_1_16" + }, + "7e24dfad-68af-4ef0-a804-3181c109eb3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7e24dfad-68af-4ef0-a804-3181c109eb3f", + "Name": "FP_1_17" + }, + "b6f98dda-d0e0-4afa-a7ba-d514be6f591d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b6f98dda-d0e0-4afa-a7ba-d514be6f591d", + "Name": "FG_1_17" + }, + "b68539ce-86ce-40c8-9d01-480a870a8e7a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b68539ce-86ce-40c8-9d01-480a870a8e7a", + "Name": "FP_1_18" + }, + "f8b1b3a7-880f-47ad-b602-3a32d7178469": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f8b1b3a7-880f-47ad-b602-3a32d7178469", + "Name": "FG_1_18" + }, + "f10be33a-e74d-4d2e-931d-d85415d20d27": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f10be33a-e74d-4d2e-931d-d85415d20d27", + "Name": "FP_1_19" + }, + "889b9025-5338-416b-8072-b48ab0efe083": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "889b9025-5338-416b-8072-b48ab0efe083", + "Name": "FG_1_19" + }, + "acb36dfe-8e4c-4431-97fb-2eb4419550f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "acb36dfe-8e4c-4431-97fb-2eb4419550f4", + "Name": "FP_1_20" + }, + "40179770-f1d5-4869-834b-2e3095300f60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "40179770-f1d5-4869-834b-2e3095300f60", + "Name": "FG_1_20" + }, + "4a2933c0-d3c3-4544-b6dd-f2ff54491dbc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39012c42-5bc1-4f70-8625-fbcb6ded8b43", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4a2933c0-d3c3-4544-b6dd-f2ff54491dbc", + "Name": "FP_1_21" + }, + "a77a4234-be74-4d21-a884-284dc8e782a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4532e939-5a9b-45a7-962e-faee9617610a", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a77a4234-be74-4d21-a884-284dc8e782a4", + "Name": "FG_1_21" + }, + "3e2bed90-fa20-4fa2-ad1e-78da208fb6da": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386497, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386497, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3e2bed90-fa20-4fa2-ad1e-78da208fb6da", + "Name": null + }, + "57d67d71-82c8-4069-99a4-5af2a2a6e5aa": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 10.09860149737966, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -0.14790224606948854, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3e2bed90-fa20-4fa2-ad1e-78da208fb6da", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "57d67d71-82c8-4069-99a4-5af2a2a6e5aa", + "Name": "FP_1_22" + }, + "7f55ecce-2d3c-43c1-8008-81bd5c2e98e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7f55ecce-2d3c-43c1-8008-81bd5c2e98e7", + "Name": null + }, + "be6e4ebf-ff7d-4543-8feb-4d2b990338c3": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 10.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7f55ecce-2d3c-43c1-8008-81bd5c2e98e7", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "be6e4ebf-ff7d-4543-8feb-4d2b990338c3", + "Name": "FP_1_0" + }, + "60d4c307-dd35-4b33-b1e2-f4dba17a6ce7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "60d4c307-dd35-4b33-b1e2-f4dba17a6ce7", + "Name": null + }, + "f9f98ec1-f9db-43e9-98a9-614f21463575": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "60d4c307-dd35-4b33-b1e2-f4dba17a6ce7", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Name": "FP_1" + }, + "3c6a7973-c49e-4a15-8609-ea146c9713a4": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Name": null + }, + "a94c5fe3-a7a8-43d3-89b1-9c409a290aa3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a94c5fe3-a7a8-43d3-89b1-9c409a290aa3", + "Name": "FP_1_1" + }, + "55745c7a-5a9f-47fd-9d5f-75967d1f448a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "55745c7a-5a9f-47fd-9d5f-75967d1f448a", + "Name": "FG_1_1" + }, + "688f4a12-e8d6-45a2-935c-cfafb2759437": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "688f4a12-e8d6-45a2-935c-cfafb2759437", + "Name": "FP_1_2" + }, + "6506feaf-cf93-4f3a-a562-d09002760e59": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6506feaf-cf93-4f3a-a562-d09002760e59", + "Name": "FG_1_2" + }, + "1d4122bb-1e07-46e3-beaa-fdb079e59c61": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "1d4122bb-1e07-46e3-beaa-fdb079e59c61", + "Name": "FP_1_3" + }, + "13181a29-3837-45b4-94ed-10a42deb744f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "13181a29-3837-45b4-94ed-10a42deb744f", + "Name": "FG_1_3" + }, + "c4648627-428d-4c43-8d69-4b2b23a05d3e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c4648627-428d-4c43-8d69-4b2b23a05d3e", + "Name": "FP_1_4" + }, + "464a5ddf-7f2e-4293-ba7d-680f50359ec6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "464a5ddf-7f2e-4293-ba7d-680f50359ec6", + "Name": "FG_1_4" + }, + "2fd955b9-6626-4474-93fe-3addd165fc57": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f9f98ec1-f9db-43e9-98a9-614f21463575", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2fd955b9-6626-4474-93fe-3addd165fc57", + "Name": "FP_1_5" + }, + "d6336dfc-5372-4f96-824a-86ec24d0967d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3c6a7973-c49e-4a15-8609-ea146c9713a4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "d6336dfc-5372-4f96-824a-86ec24d0967d", + "Name": "FG_1_5" + }, + "d85420a1-1ef7-40e3-8965-e57e41550732": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d85420a1-1ef7-40e3-8965-e57e41550732", + "Name": null + }, + "43f4ee8d-6071-4b78-8060-c9de6b4837a5": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 0.75, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "d85420a1-1ef7-40e3-8965-e57e41550732", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "43f4ee8d-6071-4b78-8060-c9de6b4837a5", + "Name": "FP_1_6" + }, + "6b1acc50-fad0-4260-998a-c204920346cc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.000647985949743371, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.000647985949743371, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6b1acc50-fad0-4260-998a-c204920346cc", + "Name": null + }, + "69f0488a-1062-429c-9240-dd95b9f4b143": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + 0.0, + -1.0, + 0.0, + 1.7763568394002506E-16, + 0.0, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "6b1acc50-fad0-4260-998a-c204920346cc", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "69f0488a-1062-429c-9240-dd95b9f4b143", + "Name": "FP_1_0" + }, + "731d5a08-a7cc-48ab-a189-b62fff7f4372": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "731d5a08-a7cc-48ab-a189-b62fff7f4372", + "Name": null + }, + "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "731d5a08-a7cc-48ab-a189-b62fff7f4372", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Name": "FP_1" + }, + "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Name": null + }, + "4a4224ce-e3c3-485c-bc47-472c195332f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4a4224ce-e3c3-485c-bc47-472c195332f1", + "Name": "FP_1_1" + }, + "69c627fd-2df9-4f8c-af8e-386f12c1c187": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "69c627fd-2df9-4f8c-af8e-386f12c1c187", + "Name": "FG_1_1" + }, + "069f51b4-96ae-498e-9e52-cffdca9b91ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "069f51b4-96ae-498e-9e52-cffdca9b91ab", + "Name": "FP_1_2" + }, + "94231bed-f7b8-48ff-9185-fd27cd846f0d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "94231bed-f7b8-48ff-9185-fd27cd846f0d", + "Name": "FG_1_2" + }, + "93f7bf84-8de6-4718-84c3-ab59740b84f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "93f7bf84-8de6-4718-84c3-ab59740b84f7", + "Name": "FP_1_3" + }, + "4750fb32-269e-4e01-a823-d93393776ddb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4750fb32-269e-4e01-a823-d93393776ddb", + "Name": "FG_1_3" + }, + "fcca5bb5-5296-4c1b-bbd7-6c441738f0dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "fcca5bb5-5296-4c1b-bbd7-6c441738f0dd", + "Name": "FP_1_4" + }, + "e538a2c1-9c02-4645-8230-0561ce16a5d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "e538a2c1-9c02-4645-8230-0561ce16a5d8", + "Name": "FG_1_4" + }, + "23e9f34f-b764-4443-a37b-66f787d5073b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "23e9f34f-b764-4443-a37b-66f787d5073b", + "Name": "FP_1_5" + }, + "c018f5ce-0bb2-421e-b4dd-e1f08b582780": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c018f5ce-0bb2-421e-b4dd-e1f08b582780", + "Name": "FG_1_5" + }, + "0cc6f802-51cb-4a76-aec1-5fd4d96d2a23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "0cc6f802-51cb-4a76-aec1-5fd4d96d2a23", + "Name": "FP_1_6" + }, + "354104cd-9ef9-4288-a0eb-8df53fabcc22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "354104cd-9ef9-4288-a0eb-8df53fabcc22", + "Name": "FG_1_6" + }, + "edb2576d-f19d-464f-89f6-317101ca6bd8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "edb2576d-f19d-464f-89f6-317101ca6bd8", + "Name": "FP_1_7" + }, + "b322d77b-6437-40cd-8fea-50de582db7a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b322d77b-6437-40cd-8fea-50de582db7a5", + "Name": "FG_1_7" + }, + "2317ff04-c481-4c72-8771-4decbaeb5c34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2317ff04-c481-4c72-8771-4decbaeb5c34", + "Name": "FP_1_8" + }, + "26204908-e1c3-4aab-8b05-6b9739dfd833": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "26204908-e1c3-4aab-8b05-6b9739dfd833", + "Name": "FG_1_8" + }, + "f1aceed9-a325-44a1-b534-c8836e3caddb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f1aceed9-a325-44a1-b534-c8836e3caddb", + "Name": "FP_1_9" + }, + "3bf5bd9c-ea84-4709-af7a-04499b2cba89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3bf5bd9c-ea84-4709-af7a-04499b2cba89", + "Name": "FG_1_9" + }, + "7921389d-debe-481e-95bc-772f177510e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7921389d-debe-481e-95bc-772f177510e2", + "Name": "FP_1_10" + }, + "c4e66a6c-3450-4fa3-a8da-f45dd8288ba3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "c4e66a6c-3450-4fa3-a8da-f45dd8288ba3", + "Name": "FG_1_10" + }, + "6e1f8143-a865-4c5b-a359-6385f55f5eb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6e1f8143-a865-4c5b-a359-6385f55f5eb0", + "Name": "FP_1_11" + }, + "0977783f-83ee-4c7e-9003-09af57c10d3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "0977783f-83ee-4c7e-9003-09af57c10d3c", + "Name": "FG_1_11" + }, + "6df3b335-1bfb-4471-be77-bbc2357be886": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6df3b335-1bfb-4471-be77-bbc2357be886", + "Name": "FP_1_12" + }, + "04701e0e-fd12-40cf-bdcd-208be22cb649": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "04701e0e-fd12-40cf-bdcd-208be22cb649", + "Name": "FG_1_12" + }, + "a5bc91d9-f060-4381-912e-52fe44202fbd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "a5bc91d9-f060-4381-912e-52fe44202fbd", + "Name": "FP_1_13" + }, + "6f200b4f-3651-4634-beb4-a13b88c7c4d0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6f200b4f-3651-4634-beb4-a13b88c7c4d0", + "Name": "FG_1_13" + }, + "6d084be9-2569-4742-b05f-5305e65578be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6d084be9-2569-4742-b05f-5305e65578be", + "Name": "FP_1_14" + }, + "4256e695-b27a-437e-8554-d73975983775": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4256e695-b27a-437e-8554-d73975983775", + "Name": "FG_1_14" + }, + "013b4532-cc0f-40dc-97be-12ff2b42ca7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "013b4532-cc0f-40dc-97be-12ff2b42ca7d", + "Name": "FP_1_15" + }, + "7758587e-29a1-4790-a4cf-d7e7143fec43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7758587e-29a1-4790-a4cf-d7e7143fec43", + "Name": "FG_1_15" + }, + "2fbdf74f-8352-4b2b-965a-4669860e8fd4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2fbdf74f-8352-4b2b-965a-4669860e8fd4", + "Name": "FP_1_16" + }, + "5641bb5b-054c-48d4-9251-332e4bc13ff1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5641bb5b-054c-48d4-9251-332e4bc13ff1", + "Name": "FG_1_16" + }, + "37827eb9-d3a5-42f9-9b01-6c456ceac0a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "37827eb9-d3a5-42f9-9b01-6c456ceac0a8", + "Name": "FP_1_17" + }, + "680a933d-18d7-4939-bb02-dfab07636bc6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "680a933d-18d7-4939-bb02-dfab07636bc6", + "Name": "FG_1_17" + }, + "6e90f972-a86d-485c-b633-d67cba3c902e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6e90f972-a86d-485c-b633-d67cba3c902e", + "Name": "FP_1_18" + }, + "8170b21c-9b2c-48a7-ac01-796c7a6a6a85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8170b21c-9b2c-48a7-ac01-796c7a6a6a85", + "Name": "FG_1_18" + }, + "2a8adb55-5ea5-4007-b41f-1164a7bf00ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "2a8adb55-5ea5-4007-b41f-1164a7bf00ee", + "Name": "FP_1_19" + }, + "3109882c-9b5e-41a7-8efb-0d53bf4d8c55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3109882c-9b5e-41a7-8efb-0d53bf4d8c55", + "Name": "FG_1_19" + }, + "bc7e7f71-7e5c-4ce6-9f81-830c88ce1daf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "bc7e7f71-7e5c-4ce6-9f81-830c88ce1daf", + "Name": "FP_1_20" + }, + "f35b7ffc-6523-423f-8ee1-dc28157ed920": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "f35b7ffc-6523-423f-8ee1-dc28157ed920", + "Name": "FG_1_20" + }, + "5034ee3f-7667-4e95-87cf-c82b0b3dcbd1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5034ee3f-7667-4e95-87cf-c82b0b3dcbd1", + "Name": "FP_1_21" + }, + "729b19e6-f632-4307-9889-0e8861ae4245": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "729b19e6-f632-4307-9889-0e8861ae4245", + "Name": "FG_1_21" + }, + "9de58134-021d-41ae-83c3-2932bd0c9c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9de58134-021d-41ae-83c3-2932bd0c9c70", + "Name": "FP_1_22" + }, + "383abfbf-5804-4747-b3c9-0b2cf607d1ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "383abfbf-5804-4747-b3c9-0b2cf607d1ab", + "Name": "FG_1_22" + }, + "214fc868-aa87-4669-886b-269c99d0e8cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "214fc868-aa87-4669-886b-269c99d0e8cc", + "Name": "FP_1_23" + }, + "d1be2a16-4365-48a3-b66f-89de07231523": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "d1be2a16-4365-48a3-b66f-89de07231523", + "Name": "FG_1_23" + }, + "4de5e4d5-5abc-496d-8aea-881d4535732d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "4de5e4d5-5abc-496d-8aea-881d4535732d", + "Name": "FP_1_24" + }, + "bf8736f4-b823-4d3e-9f0d-05bc5815c6cf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "bf8736f4-b823-4d3e-9f0d-05bc5815c6cf", + "Name": "FG_1_24" + }, + "de70f610-4de2-4a6e-bc68-b00d4f0a339f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "de70f610-4de2-4a6e-bc68-b00d4f0a339f", + "Name": "FP_1_25" + }, + "5004f665-3a87-4c17-812e-b53f9b95600a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5004f665-3a87-4c17-812e-b53f9b95600a", + "Name": "FG_1_25" + }, + "49dbeddd-bfd7-4a08-96fe-a51cf14366e3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "49dbeddd-bfd7-4a08-96fe-a51cf14366e3", + "Name": "FP_1_26" + }, + "27815117-c9e2-4324-bfdb-ec0fbc01f7d2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "27815117-c9e2-4324-bfdb-ec0fbc01f7d2", + "Name": "FG_1_26" + }, + "7e776a37-50cb-4329-a3bf-2532950c6a62": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "7e776a37-50cb-4329-a3bf-2532950c6a62", + "Name": "FP_1_27" + }, + "6027f344-9795-44db-b9fd-8fe31ca29e78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6027f344-9795-44db-b9fd-8fe31ca29e78", + "Name": "FG_1_27" + }, + "3717e181-d4f1-4eee-9860-3d8826c330a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3717e181-d4f1-4eee-9860-3d8826c330a1", + "Name": "FP_1_28" + }, + "8162bec4-9f61-4831-ab32-a9eb64e75c02": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8162bec4-9f61-4831-ab32-a9eb64e75c02", + "Name": "FG_1_28" + }, + "3f2276e1-4fef-4911-afcb-d62c13ab9b21": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "3f2276e1-4fef-4911-afcb-d62c13ab9b21", + "Name": "FP_1_29" + }, + "b5754ed8-be3a-4d36-ba3a-b42c9790776b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "b5754ed8-be3a-4d36-ba3a-b42c9790776b", + "Name": "FG_1_29" + }, + "6b28d318-cb14-4732-95db-5c19bd07d936": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "6b28d318-cb14-4732-95db-5c19bd07d936", + "Name": "FP_1_30" + }, + "ff081706-e3dc-404a-8137-7a56bef8792c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "ff081706-e3dc-404a-8137-7a56bef8792c", + "Name": "FG_1_30" + }, + "039b7970-dd29-43c3-aa21-eaae8590f0ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "039b7970-dd29-43c3-aa21-eaae8590f0ee", + "Name": "FP_1_31" + }, + "5950dd14-34e9-415e-8b96-79ced873e472": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5950dd14-34e9-415e-8b96-79ced873e472", + "Name": "FG_1_31" + }, + "77f1110f-d74e-4445-bb01-e96950f9f8f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "77f1110f-d74e-4445-bb01-e96950f9f8f5", + "Name": "FP_1_32" + }, + "297e1d6e-8f26-475b-82ad-fdddc041bdc3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "297e1d6e-8f26-475b-82ad-fdddc041bdc3", + "Name": "FG_1_32" + }, + "8f6db0b5-4d68-4fb8-ad13-a9e4215fe554": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "8f6db0b5-4d68-4fb8-ad13-a9e4215fe554", + "Name": "FP_1_33" + }, + "9cd1297b-287a-4b45-bc79-251432ad3965": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "9cd1297b-287a-4b45-bc79-251432ad3965", + "Name": "FG_1_33" + }, + "834cf25b-30a9-4376-addb-5ea2abf19f01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "834cf25b-30a9-4376-addb-5ea2abf19f01", + "Name": "FP_1_34" + }, + "5974d0d4-64bb-4337-ad1a-3f98b88ae660": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "5974d0d4-64bb-4337-ad1a-3f98b88ae660", + "Name": "FG_1_34" + }, + "09c04ffc-3894-4027-af41-ed05e3e3c19e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ef334a1a-9e12-4e9f-9d78-1bc45dfaf37a", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "09c04ffc-3894-4027-af41-ed05e3e3c19e", + "Name": "FP_1_35" + }, + "38781ef3-4380-438c-a868-7fd2cda93b6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7d5e90c1-a0dc-4d8b-8020-fac48acc86b2", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Id": "38781ef3-4380-438c-a868-7fd2cda93b6f", + "Name": "FG_1_35" + }, + "81224588-6db2-46bd-8ba2-a323c2236198": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0006479859497433802, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.0006479859497433802, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "81224588-6db2-46bd-8ba2-a323c2236198", + "Name": null + }, + "720aa67e-992c-4d3e-8980-d21ea9ba2dba": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0613732115416497E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -59.75, + 0.0, + 1.0, + 0.0, + 4.5 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "81224588-6db2-46bd-8ba2-a323c2236198", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "720aa67e-992c-4d3e-8980-d21ea9ba2dba", + "Name": "FP_1_36" + }, + "984168ae-2a16-4813-aec6-d18680900f44": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "984168ae-2a16-4813-aec6-d18680900f44", + "Name": null + }, + "6c9978d1-610d-4c32-b5c0-d3934dd162e4": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + -1.0658141036401503E-14, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "984168ae-2a16-4813-aec6-d18680900f44", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6c9978d1-610d-4c32-b5c0-d3934dd162e4", + "Name": "FP_2_0" + }, + "dad3af59-05ad-4f14-8ea2-5bf09ebf5ee2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "dad3af59-05ad-4f14-8ea2-5bf09ebf5ee2", + "Name": null + }, + "2493d071-c375-4e4d-9ea8-77ad3550bbbb": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "dad3af59-05ad-4f14-8ea2-5bf09ebf5ee2", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Name": "FP_2" + }, + "b4380182-1d7c-44f4-b89d-5fd698316796": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Name": null + }, + "24d9dc86-b0ef-417a-89af-043689d334ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "24d9dc86-b0ef-417a-89af-043689d334ec", + "Name": "FP_2_1" + }, + "63ebb288-bd7d-4ad2-bd85-81d250a666c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.5499999999999936, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "63ebb288-bd7d-4ad2-bd85-81d250a666c4", + "Name": "FG_2_1" + }, + "e207dd3d-5582-4304-86cf-4553b95c6aaf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e207dd3d-5582-4304-86cf-4553b95c6aaf", + "Name": "FP_2_2" + }, + "e3cfb816-3867-45d4-91ff-c9495040bcf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 2.249999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e3cfb816-3867-45d4-91ff-c9495040bcf8", + "Name": "FG_2_2" + }, + "a67de6fc-a798-4e39-bcc3-f3e490066be1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a67de6fc-a798-4e39-bcc3-f3e490066be1", + "Name": "FP_2_3" + }, + "71d27370-4245-4698-8d4c-b93d1e232ee8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 3.949999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "71d27370-4245-4698-8d4c-b93d1e232ee8", + "Name": "FG_2_3" + }, + "50636ece-1934-418d-b302-775c3ef0751b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "50636ece-1934-418d-b302-775c3ef0751b", + "Name": "FP_2_4" + }, + "1f0a637b-5537-4370-a972-501f43e75901": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 5.649999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1f0a637b-5537-4370-a972-501f43e75901", + "Name": "FG_2_4" + }, + "e78b02fa-56f0-4cb7-8480-04d433dfe506": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e78b02fa-56f0-4cb7-8480-04d433dfe506", + "Name": "FP_2_5" + }, + "8a2ddc78-fbe4-47a6-a5b6-db21b624a779": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 7.349999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8a2ddc78-fbe4-47a6-a5b6-db21b624a779", + "Name": "FG_2_5" + }, + "983e6fd0-3a82-416a-93c3-5e5695ffafe5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "983e6fd0-3a82-416a-93c3-5e5695ffafe5", + "Name": "FP_2_6" + }, + "fcd49822-892c-41d8-9b93-ccc9ca42969a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.049999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fcd49822-892c-41d8-9b93-ccc9ca42969a", + "Name": "FG_2_6" + }, + "23c9635e-4117-4924-8884-fa07e0306867": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "23c9635e-4117-4924-8884-fa07e0306867", + "Name": "FP_2_7" + }, + "aa6132e2-72ab-4446-ac5f-2109c12ac750": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 10.749999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "aa6132e2-72ab-4446-ac5f-2109c12ac750", + "Name": "FG_2_7" + }, + "5a4bae09-a5e0-4db4-960b-892e164bed33": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5a4bae09-a5e0-4db4-960b-892e164bed33", + "Name": "FP_2_8" + }, + "17559d8f-7d0f-4834-bbc0-08b43ea97476": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 12.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "17559d8f-7d0f-4834-bbc0-08b43ea97476", + "Name": "FG_2_8" + }, + "d6f54884-cc69-42b5-87cc-02a1a92eb04f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d6f54884-cc69-42b5-87cc-02a1a92eb04f", + "Name": "FP_2_9" + }, + "6f8be229-4d67-4115-a182-859333bf3df8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 14.149999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6f8be229-4d67-4115-a182-859333bf3df8", + "Name": "FG_2_9" + }, + "71647c92-e787-4f2a-a4a3-1e48f8df6421": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "71647c92-e787-4f2a-a4a3-1e48f8df6421", + "Name": "FP_2_10" + }, + "d056e80e-ef92-478a-9799-266984ffb6b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 15.849999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d056e80e-ef92-478a-9799-266984ffb6b8", + "Name": "FG_2_10" + }, + "8a2c8a26-1626-4201-a413-3c2f32eaa9e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8a2c8a26-1626-4201-a413-3c2f32eaa9e2", + "Name": "FP_2_11" + }, + "af5d7d80-c435-490f-8ead-b860e8ad50de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 17.549999999999994, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "af5d7d80-c435-490f-8ead-b860e8ad50de", + "Name": "FG_2_11" + }, + "e6558569-0d9f-4733-a633-568b9dde6557": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e6558569-0d9f-4733-a633-568b9dde6557", + "Name": "FP_2_12" + }, + "7270a52b-74f5-4e2d-ae21-8d2c2fd0c056": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 19.249999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7270a52b-74f5-4e2d-ae21-8d2c2fd0c056", + "Name": "FG_2_12" + }, + "696ebb3b-227b-439a-af4d-9e5b76689a69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "696ebb3b-227b-439a-af4d-9e5b76689a69", + "Name": "FP_2_13" + }, + "e1dcee5a-bcf9-442e-bfe1-a7d0fbe5654c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 20.949999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e1dcee5a-bcf9-442e-bfe1-a7d0fbe5654c", + "Name": "FG_2_13" + }, + "6ba65946-a17c-4ca1-a42f-bd6920636cfa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6ba65946-a17c-4ca1-a42f-bd6920636cfa", + "Name": "FP_2_14" + }, + "8f587de0-85da-43cf-a65a-d4d40dd042cf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 22.649999999999995, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8f587de0-85da-43cf-a65a-d4d40dd042cf", + "Name": "FG_2_14" + }, + "9768961a-6d97-4afd-b23f-578d3fb93d47": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9768961a-6d97-4afd-b23f-578d3fb93d47", + "Name": "FP_2_15" + }, + "626686be-f363-45f7-8c47-cbb6b352b108": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 24.349999999999998, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "626686be-f363-45f7-8c47-cbb6b352b108", + "Name": "FG_2_15" + }, + "dd3c7179-0c6b-40a5-af75-2c59999f4b4d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "dd3c7179-0c6b-40a5-af75-2c59999f4b4d", + "Name": "FP_2_16" + }, + "fc311eca-e7ed-4964-aa6e-1f7eef27552f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 26.049999999999997, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fc311eca-e7ed-4964-aa6e-1f7eef27552f", + "Name": "FG_2_16" + }, + "0f518d98-7c04-496a-8eaf-1de295641453": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2493d071-c375-4e4d-9ea8-77ad3550bbbb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0f518d98-7c04-496a-8eaf-1de295641453", + "Name": "FP_2_17" + }, + "424194cb-3634-44b7-bdef-6a79a45bd689": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b4380182-1d7c-44f4-b89d-5fd698316796", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 27.749999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "424194cb-3634-44b7-bdef-6a79a45bd689", + "Name": "FG_2_17" + }, + "3e1e9c47-1bea-442d-976b-32e3b6a88c96": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623731059, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 0.009899494936611663, + "Z": 0.0 + }, + { + "X": 0.5485857864376311, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623731059, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3e1e9c47-1bea-442d-976b-32e3b6a88c96", + "Name": null + }, + "ec67f9f7-1899-4de7-a829-56c99ee0857b": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 29.449999999999996, + 0.0, + 0.0, + -1.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "3e1e9c47-1bea-442d-976b-32e3b6a88c96", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ec67f9f7-1899-4de7-a829-56c99ee0857b", + "Name": "FP_2_18" + }, + "8cc12d50-19b6-4fa0-af3c-0f0c77c9a608": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -59.95, + "Z": 12.2 + }, + { + "X": -1.0658141036401503E-14, + "Y": -59.95, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "8cc12d50-19b6-4fa0-af3c-0f0c77c9a608", + "Name": null + }, + "61dd814b-b856-4871-bac2-2014abd5e3b4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -1.0658141036401503E-14, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -60.05, + "Z": 12.2 + }, + { + "X": 30.0, + "Y": -59.95, + "Z": 12.2 + }, + { + "X": -1.0658141036401503E-14, + "Y": -59.95, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "61dd814b-b856-4871-bac2-2014abd5e3b4", + "Name": null + }, + "a9567ea5-6518-4346-8b7d-f9558e64d746": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 12.2 + }, + "End": { + "X": 30.0, + "Y": -60.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "61dd814b-b856-4871-bac2-2014abd5e3b4", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a9567ea5-6518-4346-8b7d-f9558e64d746", + "Name": null + }, + "f82c1060-dc9b-40ab-90fb-ab5b792b7a83": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f82c1060-dc9b-40ab-90fb-ab5b792b7a83", + "Name": null + }, + "bd78e3ac-914a-427b-adac-754dc2eddb23": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -60.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "f82c1060-dc9b-40ab-90fb-ab5b792b7a83", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "bd78e3ac-914a-427b-adac-754dc2eddb23", + "Name": "FP_2_0" + }, + "b9a96faf-5fe1-453f-96aa-cbb8fa7d0659": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "b9a96faf-5fe1-453f-96aa-cbb8fa7d0659", + "Name": null + }, + "ce3bcb7d-a802-47bf-8004-2bb5276f74d3": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "b9a96faf-5fe1-453f-96aa-cbb8fa7d0659", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Name": "FP_2" + }, + "7c0b8a64-4eef-4fdc-be45-d88750a35552": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Name": null + }, + "08c9224c-03bf-4d53-8f98-48b717f3d0c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "08c9224c-03bf-4d53-8f98-48b717f3d0c8", + "Name": "FP_2_1" + }, + "0fc6e093-9903-4e3b-8f2e-714b2facb575": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -59.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0fc6e093-9903-4e3b-8f2e-714b2facb575", + "Name": "FG_2_1" + }, + "bacce559-1bfd-4989-91c1-1dff75bc1059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bacce559-1bfd-4989-91c1-1dff75bc1059", + "Name": "FP_2_2" + }, + "f6dca839-0326-4b10-934b-924c394a4335": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -57.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f6dca839-0326-4b10-934b-924c394a4335", + "Name": "FG_2_2" + }, + "53cb62b6-2513-434b-b32d-c241839fc198": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "53cb62b6-2513-434b-b32d-c241839fc198", + "Name": "FP_2_3" + }, + "c31c1457-b472-4a51-a968-06447fdffc3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -56.050000000000004, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c31c1457-b472-4a51-a968-06447fdffc3c", + "Name": "FG_2_3" + }, + "dc5087e6-3585-4471-a17c-21888d84f0c0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "dc5087e6-3585-4471-a17c-21888d84f0c0", + "Name": "FP_2_4" + }, + "cc08637e-1e2b-4615-859e-9774cd957621": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -54.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cc08637e-1e2b-4615-859e-9774cd957621", + "Name": "FG_2_4" + }, + "a4d44235-914f-4400-9cd3-563a2047e77e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a4d44235-914f-4400-9cd3-563a2047e77e", + "Name": "FP_2_5" + }, + "372fb6a3-3e67-4e16-8ee8-04267847564e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -52.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "372fb6a3-3e67-4e16-8ee8-04267847564e", + "Name": "FG_2_5" + }, + "2e11a285-40e4-4987-8bd5-a54643d6568d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2e11a285-40e4-4987-8bd5-a54643d6568d", + "Name": "FP_2_6" + }, + "74265940-6770-470c-89d5-59b4a5234baa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -50.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "74265940-6770-470c-89d5-59b4a5234baa", + "Name": "FG_2_6" + }, + "bd755f45-5d65-4183-81ef-9c4460ad1d37": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bd755f45-5d65-4183-81ef-9c4460ad1d37", + "Name": "FP_2_7" + }, + "1ae4cccd-35f5-49ab-8c71-d2ac4472edae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -49.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1ae4cccd-35f5-49ab-8c71-d2ac4472edae", + "Name": "FG_2_7" + }, + "7878710c-c70c-4923-9763-6dd0a4a8a815": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7878710c-c70c-4923-9763-6dd0a4a8a815", + "Name": "FP_2_8" + }, + "3219160c-7f8c-4705-b147-ef349380fc68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -47.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3219160c-7f8c-4705-b147-ef349380fc68", + "Name": "FG_2_8" + }, + "09d2a3b6-0615-4c26-bceb-90a90bf0f898": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "09d2a3b6-0615-4c26-bceb-90a90bf0f898", + "Name": "FP_2_9" + }, + "bd8dcd5d-6671-4484-b55c-cef354f132fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -45.85, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bd8dcd5d-6671-4484-b55c-cef354f132fd", + "Name": "FG_2_9" + }, + "bcc77e77-d1a8-4cf6-8d04-82566af71367": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bcc77e77-d1a8-4cf6-8d04-82566af71367", + "Name": "FP_2_10" + }, + "68a48efd-5a73-4fd0-984b-c9d725824c5f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -44.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "68a48efd-5a73-4fd0-984b-c9d725824c5f", + "Name": "FG_2_10" + }, + "85549c70-c73a-4f09-80d2-9052c94fb7cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "85549c70-c73a-4f09-80d2-9052c94fb7cb", + "Name": "FP_2_11" + }, + "6dab55d1-6144-480c-a3cd-77be5725fe2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -42.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6dab55d1-6144-480c-a3cd-77be5725fe2e", + "Name": "FG_2_11" + }, + "2ef20f2f-3b43-49cd-92f3-dbbf084ba9a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2ef20f2f-3b43-49cd-92f3-dbbf084ba9a8", + "Name": "FP_2_12" + }, + "97df1c8d-8a9c-430d-a686-bf44b770f7d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -40.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "97df1c8d-8a9c-430d-a686-bf44b770f7d6", + "Name": "FG_2_12" + }, + "b721d1d5-9d0d-4148-a7ef-f783d72748f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b721d1d5-9d0d-4148-a7ef-f783d72748f2", + "Name": "FP_2_13" + }, + "be841601-f457-4974-b567-623c67061bbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -39.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "be841601-f457-4974-b567-623c67061bbb", + "Name": "FG_2_13" + }, + "757f0655-33d6-415f-ab11-ce3fc35a1194": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "757f0655-33d6-415f-ab11-ce3fc35a1194", + "Name": "FP_2_14" + }, + "07c6a54d-350b-432e-9d3d-bc01b5c8cbd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -37.35, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "07c6a54d-350b-432e-9d3d-bc01b5c8cbd9", + "Name": "FG_2_14" + }, + "f7bab826-c495-4130-a607-f7722520cc3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f7bab826-c495-4130-a607-f7722520cc3b", + "Name": "FP_2_15" + }, + "3527489f-e874-4a03-8769-e5be9dc04116": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -35.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3527489f-e874-4a03-8769-e5be9dc04116", + "Name": "FG_2_15" + }, + "6441f1d9-4887-4f63-a4c6-4598acee694b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6441f1d9-4887-4f63-a4c6-4598acee694b", + "Name": "FP_2_16" + }, + "76fada82-d143-426e-ba73-21ccb4f8d576": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -33.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "76fada82-d143-426e-ba73-21ccb4f8d576", + "Name": "FG_2_16" + }, + "754c9a76-1092-43c5-82f8-932eba2e1ec0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "ce3bcb7d-a802-47bf-8004-2bb5276f74d3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "754c9a76-1092-43c5-82f8-932eba2e1ec0", + "Name": "FP_2_17" + }, + "d5af1663-e369-4415-9f04-958055fd61e3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7c0b8a64-4eef-4fdc-be45-d88750a35552", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -32.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d5af1663-e369-4415-9f04-958055fd61e3", + "Name": "FG_2_17" + }, + "45e2bdbd-9e73-4727-b955-2fa1931a4fc9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0014142135623730879, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 0.009899494936611667, + "Z": 0.0 + }, + { + "X": 0.5485857864376241, + "Y": 3.840100505063388, + "Z": 0.0 + }, + { + "X": 0.0014142135623730879, + "Y": 3.840100505063388, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "45e2bdbd-9e73-4727-b955-2fa1931a4fc9", + "Name": null + }, + "829cf2e3-ba38-4586-ad86-9eb9074aa6e6": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 0.0, + 1.0, + 30.0, + 1.0, + 0.0, + 0.0, + -30.549999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "45e2bdbd-9e73-4727-b955-2fa1931a4fc9", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "829cf2e3-ba38-4586-ad86-9eb9074aa6e6", + "Name": "FP_2_18" + }, + "127ac052-562e-4426-ab9e-5355d52ac176": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.05, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 30.05, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -60.0, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "127ac052-562e-4426-ab9e-5355d52ac176", + "Name": null + }, + "dcdd633f-7026-44fb-b22a-cc91a5a669c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.05, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 30.05, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -30.0, + "Z": 12.2 + }, + { + "X": 29.95, + "Y": -60.0, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "dcdd633f-7026-44fb-b22a-cc91a5a669c5", + "Name": null + }, + "a30e4b38-8d72-4c90-91fd-ad7c5537c1a5": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.0, + "Y": -60.0, + "Z": 12.2 + }, + "End": { + "X": 30.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "dcdd633f-7026-44fb-b22a-cc91a5a669c5", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a30e4b38-8d72-4c90-91fd-ad7c5537c1a5", + "Name": null + }, + "2706767b-9a50-4dce-a27b-bfd6eeab47c5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386746, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976184, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386746, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2706767b-9a50-4dce-a27b-bfd6eeab47c5", + "Name": null + }, + "74838041-141c-495c-9314-34087448a901": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 30.0, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -30.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "2706767b-9a50-4dce-a27b-bfd6eeab47c5", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "74838041-141c-495c-9314-34087448a901", + "Name": "FP_2_0" + }, + "da2ff72e-69bb-4ab9-ae79-eaac9e9cd09b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "da2ff72e-69bb-4ab9-ae79-eaac9e9cd09b", + "Name": null + }, + "591e087f-51cd-4fd2-aed2-d98ad5cf8c76": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "da2ff72e-69bb-4ab9-ae79-eaac9e9cd09b", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Name": "FP_2" + }, + "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Name": null + }, + "f65f491c-403f-4b7e-93b2-c808f8183afa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f65f491c-403f-4b7e-93b2-c808f8183afa", + "Name": "FP_2_1" + }, + "7664b42f-fca3-462d-acb7-527acc2f3355": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 29.90139850262034, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -29.85209775393051, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7664b42f-fca3-462d-acb7-527acc2f3355", + "Name": "FG_2_1" + }, + "c86bcb8b-bfe2-4711-91e4-d154fef3048f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c86bcb8b-bfe2-4711-91e4-d154fef3048f", + "Name": "FP_2_2" + }, + "ac1a1ff4-d732-412f-ad36-90b78c1c2e84": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.958408169037448, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -28.43761225355618, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ac1a1ff4-d732-412f-ad36-90b78c1c2e84", + "Name": "FG_2_2" + }, + "e47d00ca-3ce1-4b3c-9967-16872d3a984a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e47d00ca-3ce1-4b3c-9967-16872d3a984a", + "Name": "FP_2_3" + }, + "483d504c-175c-450d-8ec2-7a91e72800f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 28.01541783545456, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -27.02312675318184, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "483d504c-175c-450d-8ec2-7a91e72800f1", + "Name": "FG_2_3" + }, + "6b59070c-a6d3-43a5-9e22-3efbe0755593": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6b59070c-a6d3-43a5-9e22-3efbe0755593", + "Name": "FP_2_4" + }, + "d8d165d9-bd17-4846-924f-18549835fc88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 27.07242750187167, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -25.60864125280751, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d8d165d9-bd17-4846-924f-18549835fc88", + "Name": "FG_2_4" + }, + "eee3c451-53f1-430f-a958-bbf9cd5eca8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "eee3c451-53f1-430f-a958-bbf9cd5eca8e", + "Name": "FP_2_5" + }, + "871b5c80-5ec3-409f-8ec2-c2afa0aa4c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 26.12943716828878, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -24.194155752433176, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "871b5c80-5ec3-409f-8ec2-c2afa0aa4c70", + "Name": "FG_2_5" + }, + "d06e878f-4cea-48d7-86ee-391efb375de2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d06e878f-4cea-48d7-86ee-391efb375de2", + "Name": "FP_2_6" + }, + "67982918-1f3f-40d6-bacc-fda03a441d2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 25.18644683470589, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -22.77967025205884, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "67982918-1f3f-40d6-bacc-fda03a441d2f", + "Name": "FG_2_6" + }, + "c122838d-3c79-4ce3-af56-012ce85d277f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c122838d-3c79-4ce3-af56-012ce85d277f", + "Name": "FP_2_7" + }, + "e8432b0d-2f96-41c7-8a50-3022a2ebcab6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 24.243456501123, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -21.365184751684502, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e8432b0d-2f96-41c7-8a50-3022a2ebcab6", + "Name": "FG_2_7" + }, + "066cae10-2836-45b8-ae20-2bf6723d0d5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "066cae10-2836-45b8-ae20-2bf6723d0d5d", + "Name": "FP_2_8" + }, + "a86e7979-75dc-441a-a0ac-51bcbf9a1f2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 23.30046616754011, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -19.95069925131017, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a86e7979-75dc-441a-a0ac-51bcbf9a1f2f", + "Name": "FG_2_8" + }, + "822e3915-4227-4909-8b80-8477f50c0aaf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "822e3915-4227-4909-8b80-8477f50c0aaf", + "Name": "FP_2_9" + }, + "ec488917-56b6-4950-964b-7a366702f7be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 22.35747583395722, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -18.536213750935836, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ec488917-56b6-4950-964b-7a366702f7be", + "Name": "FG_2_9" + }, + "3c377fab-3ee1-40cb-a757-677fb1b59472": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3c377fab-3ee1-40cb-a757-677fb1b59472", + "Name": "FP_2_10" + }, + "5d47bbab-8081-43f4-a68f-940876a8dae5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 21.414485500374333, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -17.121728250561503, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5d47bbab-8081-43f4-a68f-940876a8dae5", + "Name": "FG_2_10" + }, + "696c0a48-cf9b-460a-99e2-fee0431cc0ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "696c0a48-cf9b-460a-99e2-fee0431cc0ba", + "Name": "FP_2_11" + }, + "5cb72309-281d-463d-bcd7-004ce8dfdccd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 20.471495166791442, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -15.707242750187168, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5cb72309-281d-463d-bcd7-004ce8dfdccd", + "Name": "FG_2_11" + }, + "101fdfc7-99bc-46c9-8658-f1a234eb5952": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "101fdfc7-99bc-46c9-8658-f1a234eb5952", + "Name": "FP_2_12" + }, + "e9cc85eb-dda6-4d70-bc02-7af4ec32c945": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 19.52850483320855, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -14.292757249812832, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e9cc85eb-dda6-4d70-bc02-7af4ec32c945", + "Name": "FG_2_12" + }, + "d40beb6c-c563-4b25-889d-8619416087eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "d40beb6c-c563-4b25-889d-8619416087eb", + "Name": "FP_2_13" + }, + "0a182e4b-e87d-481d-92d5-a4415ec70c9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 18.585514499625663, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -12.878271749438497, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0a182e4b-e87d-481d-92d5-a4415ec70c9f", + "Name": "FG_2_13" + }, + "1b30039a-80f0-415a-8c7a-ffc39edd24cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1b30039a-80f0-415a-8c7a-ffc39edd24cd", + "Name": "FP_2_14" + }, + "fa46b300-c42b-40e9-ab57-b1728ace6b1e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 17.642524166042776, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -11.463786249064164, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fa46b300-c42b-40e9-ab57-b1728ace6b1e", + "Name": "FG_2_14" + }, + "91fed87a-7af0-43ab-a85c-cb2236fe9f6a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "91fed87a-7af0-43ab-a85c-cb2236fe9f6a", + "Name": "FP_2_15" + }, + "8808b4ad-abe9-42a3-9ad4-f11a560dd0c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 16.699533832459885, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -10.049300748689827, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8808b4ad-abe9-42a3-9ad4-f11a560dd0c7", + "Name": "FG_2_15" + }, + "9d3f234a-9cc0-4009-a216-0358fa0b6984": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9d3f234a-9cc0-4009-a216-0358fa0b6984", + "Name": "FP_2_16" + }, + "576803ee-1140-4f06-b918-ef27f5e3eb9c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 15.756543498876994, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -8.634815248315494, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "576803ee-1140-4f06-b918-ef27f5e3eb9c", + "Name": "FG_2_16" + }, + "92f13d74-2f6f-4132-ac5b-f6416b8b3192": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "92f13d74-2f6f-4132-ac5b-f6416b8b3192", + "Name": "FP_2_17" + }, + "cf937e18-444b-45a2-a2d9-d749f44dd798": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 14.813553165294104, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -7.220329747941161, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cf937e18-444b-45a2-a2d9-d749f44dd798", + "Name": "FG_2_17" + }, + "31f2e7f4-9f0b-4247-86af-7989ecf94b33": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "31f2e7f4-9f0b-4247-86af-7989ecf94b33", + "Name": "FP_2_18" + }, + "8dd7d0ac-6fc7-4600-b999-d0ca13abe64c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 13.870562831711215, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -5.805844247566824, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8dd7d0ac-6fc7-4600-b999-d0ca13abe64c", + "Name": "FG_2_18" + }, + "4903c03f-c787-495e-b077-592803604a78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "4903c03f-c787-495e-b077-592803604a78", + "Name": "FP_2_19" + }, + "50abdf88-9ff5-454b-8f1c-0b8b2c2d70fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 12.927572498128328, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -4.391358747192491, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "50abdf88-9ff5-454b-8f1c-0b8b2c2d70fc", + "Name": "FG_2_19" + }, + "968abe86-708b-487c-b07d-78b8ce52d6f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "968abe86-708b-487c-b07d-78b8ce52d6f8", + "Name": "FP_2_20" + }, + "015970e8-a22a-4db0-a72b-3538ab38b3e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.984582164545436, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -2.9768732468181547, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "015970e8-a22a-4db0-a72b-3538ab38b3e2", + "Name": "FG_2_20" + }, + "047efc0d-2de8-41c8-ab4a-a3aad98010d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "591e087f-51cd-4fd2-aed2-d98ad5cf8c76", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "047efc0d-2de8-41c8-ab4a-a3aad98010d6", + "Name": "FP_2_21" + }, + "77520ac6-5f67-4c0b-bf93-3a6ffbb6bbae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "61bf4742-3dcc-4d53-b9ea-1c39b6ca13cf", + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 11.041591830962549, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -1.5623877464438252, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "77520ac6-5f67-4c0b-bf93-3a6ffbb6bbae", + "Name": "FG_2_21" + }, + "489da548-3960-4d52-aa6b-aefb71a5daee": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.00046121355018386497, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 0.009989358440917353, + "Z": 0.0 + }, + { + "X": 0.17729516376976087, + "Y": 3.8400106415590822, + "Z": 0.0 + }, + { + "X": 0.00046121355018386497, + "Y": 3.8400106415590822, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "489da548-3960-4d52-aa6b-aefb71a5daee", + "Name": null + }, + "f36bf8c8-3804-4478-b942-cf1fc5e8b30b": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -0.5547001962252291, + 0.0, + 0.8320502943378437, + 10.09860149737966, + 0.8320502943378437, + 0.0, + 0.5547001962252291, + -0.14790224606948854, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "489da548-3960-4d52-aa6b-aefb71a5daee", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f36bf8c8-3804-4478-b942-cf1fc5e8b30b", + "Name": "FP_2_22" + }, + "82ddbd1b-03f1-4e88-8651-8ae795b8251f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.041602514716892, + "Y": -29.972264990188737, + "Z": 12.2 + }, + { + "X": 10.041602514716892, + "Y": 0.02773500981126146, + "Z": 12.2 + }, + { + "X": 9.958397485283108, + "Y": -0.02773500981126146, + "Z": 12.2 + }, + { + "X": 29.958397485283108, + "Y": -30.027735009811263, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "82ddbd1b-03f1-4e88-8651-8ae795b8251f", + "Name": null + }, + "239576d7-74bc-4dc2-a0e1-5cca752035c1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 30.041602514716892, + "Y": -29.972264990188737, + "Z": 12.2 + }, + { + "X": 10.041602514716892, + "Y": 0.02773500981126146, + "Z": 12.2 + }, + { + "X": 9.958397485283108, + "Y": -0.02773500981126146, + "Z": 12.2 + }, + { + "X": 29.958397485283108, + "Y": -30.027735009811263, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "239576d7-74bc-4dc2-a0e1-5cca752035c1", + "Name": null + }, + "9f386381-7c8b-4165-b28d-6301c2ecdd9b": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 30.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 10.0, + "Y": 0.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "239576d7-74bc-4dc2-a0e1-5cca752035c1", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9f386381-7c8b-4165-b28d-6301c2ecdd9b", + "Name": null + }, + "79977681-802b-4a15-a1dc-096f980cb3cc": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "79977681-802b-4a15-a1dc-096f980cb3cc", + "Name": null + }, + "8bddb413-9f4c-47c8-ac42-927f78558e7f": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 10.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "79977681-802b-4a15-a1dc-096f980cb3cc", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8bddb413-9f4c-47c8-ac42-927f78558e7f", + "Name": "FP_2_0" + }, + "0ab3322d-2c36-4aa4-9189-eb0c1d60e8b4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "0ab3322d-2c36-4aa4-9189-eb0c1d60e8b4", + "Name": null + }, + "abaaecea-32cf-428f-ab9e-a4ae53a95e0f": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0ab3322d-2c36-4aa4-9189-eb0c1d60e8b4", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Name": "FP_2" + }, + "876b69b9-b9a0-4f8c-aa07-9abf1212de8a": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Name": null + }, + "113037b7-fc1c-4d6d-a6f3-c3bb251d8b00": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "113037b7-fc1c-4d6d-a6f3-c3bb251d8b00", + "Name": "FP_2_1" + }, + "6e5d4c1a-6602-4322-96ae-9323366ac24f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.25, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6e5d4c1a-6602-4322-96ae-9323366ac24f", + "Name": "FG_2_1" + }, + "b7bb35c1-3afe-4ec3-8b53-2fd229e2bc07": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b7bb35c1-3afe-4ec3-8b53-2fd229e2bc07", + "Name": "FP_2_2" + }, + "9b46685c-8ba0-42df-912c-d9888a3f5164": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 7.55, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9b46685c-8ba0-42df-912c-d9888a3f5164", + "Name": "FG_2_2" + }, + "0069b164-151f-405c-b49a-8605df4d7c44": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0069b164-151f-405c-b49a-8605df4d7c44", + "Name": "FP_2_3" + }, + "6dcb8e39-0bff-434c-a5f1-79fd5931e6e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 5.85, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6dcb8e39-0bff-434c-a5f1-79fd5931e6e0", + "Name": "FG_2_3" + }, + "23086d3a-e9db-4db0-8bf6-17f79c87d8b6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "23086d3a-e9db-4db0-8bf6-17f79c87d8b6", + "Name": "FP_2_4" + }, + "14d6a916-b23c-48f9-b451-a96e2fb9a9d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 4.1499999999999995, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "14d6a916-b23c-48f9-b451-a96e2fb9a9d1", + "Name": "FG_2_4" + }, + "2a5f347e-48ca-4b84-9177-66a197870afe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "abaaecea-32cf-428f-ab9e-a4ae53a95e0f", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2a5f347e-48ca-4b84-9177-66a197870afe", + "Name": "FP_2_5" + }, + "bf011475-55d3-4d39-891a-3dde8bb91902": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "876b69b9-b9a0-4f8c-aa07-9abf1212de8a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.4499999999999993, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bf011475-55d3-4d39-891a-3dde8bb91902", + "Name": "FG_2_5" + }, + "375bad2e-c3c5-478c-9cdc-8952250c4593": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0019121084163914713, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 0.009815489870809551, + "Z": 0.0 + }, + { + "X": 0.7480878915836086, + "Y": 3.8401845101291903, + "Z": 0.0 + }, + { + "X": 0.0019121084163914713, + "Y": 3.8401845101291903, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "375bad2e-c3c5-478c-9cdc-8952250c4593", + "Name": null + }, + "b63a5a73-d436-42ff-9182-ace944459eb0": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 0.75, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "375bad2e-c3c5-478c-9cdc-8952250c4593", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b63a5a73-d436-42ff-9182-ace944459eb0", + "Name": "FP_2_6" + }, + "656564cb-14a9-455c-9135-c7adb0d1e033": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 10.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": -0.05, + "Z": 12.2 + }, + { + "X": 10.0, + "Y": -0.05, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "656564cb-14a9-455c-9135-c7adb0d1e033", + "Name": null + }, + "0e0f96c7-e925-4bf3-b9c1-d4246c3bfc68": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 10.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": 0.05, + "Z": 12.2 + }, + { + "X": 0.0, + "Y": -0.05, + "Z": 12.2 + }, + { + "X": 10.0, + "Y": -0.05, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "0e0f96c7-e925-4bf3-b9c1-d4246c3bfc68", + "Name": null + }, + "eea86c1a-b7ff-430e-9837-99716320fbac": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.0, + "Y": 0.0, + "Z": 12.2 + }, + "End": { + "X": 0.0, + "Y": 0.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "0e0f96c7-e925-4bf3-b9c1-d4246c3bfc68", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "eea86c1a-b7ff-430e-9837-99716320fbac", + "Name": null + }, + "34f0f88d-ff79-4fd0-b3c9-e5a917df54e1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.000647985949743371, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 0.009978983626048056, + "Z": 0.0 + }, + { + "X": 0.2493520140502531, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.000647985949743371, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "34f0f88d-ff79-4fd0-b3c9-e5a917df54e1", + "Name": null + }, + "974a7c17-acab-4194-b3a4-08fdd678aee3": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + 0.0, + -1.0, + 0.0, + 1.7763568394002506E-16, + 0.0, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "34f0f88d-ff79-4fd0-b3c9-e5a917df54e1", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "974a7c17-acab-4194-b3a4-08fdd678aee3", + "Name": "FP_2_0" + }, + "ef243317-f2b5-46ab-bfff-c5528ca81089": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.004039326788379083, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 0.00914788713838792, + "Z": 0.0 + }, + { + "X": 1.695960673211621, + "Y": 3.8408521128616115, + "Z": 0.0 + }, + { + "X": 0.004039326788379083, + "Y": 3.8408521128616115, + "Z": 0.0 + } + ] + }, + "Voids": [ + { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + } + ], + "Id": "ef243317-f2b5-46ab-bfff-c5528ca81089", + "Name": null + }, + "08536181-6c6a-4811-bd8c-26e64e079485": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "ef243317-f2b5-46ab-bfff-c5528ca81089", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "08536181-6c6a-4811-bd8c-26e64e079485", + "Name": "FP_2" + }, + "b8bb89a8-c302-4c75-ab3e-a1fe29251479": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6d255750-badf-48df-940f-c20cf683aedd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.01, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 3.84, + "Z": 0.0 + }, + { + "X": 1.6900000000000002, + "Y": 0.01, + "Z": 0.0 + }, + { + "X": 0.01, + "Y": 0.01, + "Z": 0.0 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Name": null + }, + "b1d55d72-1f5b-437a-87fe-318c9cc621c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b1d55d72-1f5b-437a-87fe-318c9cc621c5", + "Name": "FP_2_1" + }, + "f2bd4c07-78c3-49ff-825d-561f16208835": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.4408920985005315E-17, + -1.0, + 0.0, + 1.7763568394002506E-16, + -0.24999999999999645, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f2bd4c07-78c3-49ff-825d-561f16208835", + "Name": "FG_2_1" + }, + "e1d84665-102e-47be-a5e4-d55fa4740f85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e1d84665-102e-47be-a5e4-d55fa4740f85", + "Name": "FP_2_2" + }, + "c5054ea4-df91-4232-94dc-1f466c5391ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.4638958368304796E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -1.9499999999999966, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c5054ea4-df91-4232-94dc-1f466c5391ee", + "Name": "FG_2_2" + }, + "2c653365-7ddc-42a3-9cf5-8a11c047fb88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2c653365-7ddc-42a3-9cf5-8a11c047fb88", + "Name": "FP_2_3" + }, + "60e2ea78-784f-415f-843b-2302bd6c3d0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.483702463810906E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -3.649999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "60e2ea78-784f-415f-843b-2302bd6c3d0e", + "Name": "FG_2_3" + }, + "3c1c0697-4580-46a4-a0c7-66490b1f1361": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3c1c0697-4580-46a4-a0c7-66490b1f1361", + "Name": "FP_2_4" + }, + "ad4e1c3b-0420-4ccb-a562-3733aad8b4ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.503509090791333E-16, + -1.0, + 0.0, + 1.7763568394002506E-16, + -5.349999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ad4e1c3b-0420-4ccb-a562-3733aad8b4ad", + "Name": "FG_2_4" + }, + "32a1eef2-0c7e-45bc-b691-3cba96f8d93b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "32a1eef2-0c7e-45bc-b691-3cba96f8d93b", + "Name": "FP_2_5" + }, + "32ba84d2-8c75-4f51-b5b7-a3b80a639dd8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.252331571777176E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -7.049999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "32ba84d2-8c75-4f51-b5b7-a3b80a639dd8", + "Name": "FG_2_5" + }, + "51fab152-d6ad-4d9d-8dc3-676938686b2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "51fab152-d6ad-4d9d-8dc3-676938686b2b", + "Name": "FP_2_6" + }, + "a8a36069-ea62-4618-9386-eab3a29da60f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.5543122344752184E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -8.749999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a8a36069-ea62-4618-9386-eab3a29da60f", + "Name": "FG_2_6" + }, + "841e2e97-f1db-4490-a0d6-3e3f80dd0787": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "841e2e97-f1db-4490-a0d6-3e3f80dd0787", + "Name": "FP_2_7" + }, + "2178036f-f8f3-47a7-91cf-5ba253234487": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.8562928971732612E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -10.449999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "2178036f-f8f3-47a7-91cf-5ba253234487", + "Name": "FG_2_7" + }, + "6cdd08ab-f483-461a-bcec-f5fded52ed5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6cdd08ab-f483-461a-bcec-f5fded52ed5d", + "Name": "FP_2_8" + }, + "438264af-441b-4764-89de-e972d43c03b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.1582735598713037E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -12.149999999999999, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "438264af-441b-4764-89de-e972d43c03b1", + "Name": "FG_2_8" + }, + "49a18462-c5f1-4dcb-a174-adc177f436d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "49a18462-c5f1-4dcb-a174-adc177f436d9", + "Name": "FP_2_9" + }, + "54a76ff6-d47c-4191-8826-0c42345205cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.4602542225693465E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -13.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "54a76ff6-d47c-4191-8826-0c42345205cc", + "Name": "FG_2_9" + }, + "847d237b-8697-4bf8-a7b8-7554ba2654c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "847d237b-8697-4bf8-a7b8-7554ba2654c9", + "Name": "FP_2_10" + }, + "419a5e92-9fb0-444d-b8bd-e3bb50865be3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -2.762234885267389E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -15.549999999999997, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "419a5e92-9fb0-444d-b8bd-e3bb50865be3", + "Name": "FG_2_10" + }, + "beee06eb-82db-40b5-a6d1-8a5cfafbf1d4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "beee06eb-82db-40b5-a6d1-8a5cfafbf1d4", + "Name": "FP_2_11" + }, + "6c74635d-b842-4412-8c6f-27e4fc6284ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.0642155479654314E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -17.249999999999996, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6c74635d-b842-4412-8c6f-27e4fc6284ba", + "Name": "FG_2_11" + }, + "13a9ddf9-fafd-4435-9ff1-6e3d0c608066": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "13a9ddf9-fafd-4435-9ff1-6e3d0c608066", + "Name": "FP_2_12" + }, + "30ec85e0-f27a-45ff-b6d7-ffa4fdbf157e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.3661962106634743E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -18.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "30ec85e0-f27a-45ff-b6d7-ffa4fdbf157e", + "Name": "FG_2_12" + }, + "7c23bc28-f76a-4a30-958b-26c4def15b2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "7c23bc28-f76a-4a30-958b-26c4def15b2e", + "Name": "FP_2_13" + }, + "9cb8a285-85ea-458e-a4a8-ebc29775b051": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.668176873361517E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -20.65, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "9cb8a285-85ea-458e-a4a8-ebc29775b051", + "Name": "FG_2_13" + }, + "c61da45c-2978-4ebc-9c0d-da4b85920219": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c61da45c-2978-4ebc-9c0d-da4b85920219", + "Name": "FP_2_14" + }, + "bbac01b9-d629-42ba-9a26-da7f74c3d996": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -3.9701575360595596E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -22.349999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bbac01b9-d629-42ba-9a26-da7f74c3d996", + "Name": "FG_2_14" + }, + "fbd61f14-2a8d-4cfa-83a5-8ea35c8ef9f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "fbd61f14-2a8d-4cfa-83a5-8ea35c8ef9f2", + "Name": "FP_2_15" + }, + "c736ded5-4360-40fc-9e68-4aa728d7b5c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.272138198757602E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -24.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c736ded5-4360-40fc-9e68-4aa728d7b5c8", + "Name": "FG_2_15" + }, + "0065b147-ae3d-42d2-99db-29c451a5b7b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "0065b147-ae3d-42d2-99db-29c451a5b7b4", + "Name": "FP_2_16" + }, + "96fb346c-8aae-4c0b-906b-f6f7fbbd2c09": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.574118861455645E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -25.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "96fb346c-8aae-4c0b-906b-f6f7fbbd2c09", + "Name": "FG_2_16" + }, + "bc67b73e-d55a-499b-a177-e965d700e17c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "bc67b73e-d55a-499b-a177-e965d700e17c", + "Name": "FP_2_17" + }, + "665db63a-fed3-467a-83d8-1e9aa160b038": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -4.876099524153688E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -27.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "665db63a-fed3-467a-83d8-1e9aa160b038", + "Name": "FG_2_17" + }, + "20ccc4be-2e20-4f89-84d5-54495d70f1ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "20ccc4be-2e20-4f89-84d5-54495d70f1ce", + "Name": "FP_2_18" + }, + "950e2c86-8318-4538-aecb-beedfab1d529": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.17808018685173E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -29.15, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "950e2c86-8318-4538-aecb-beedfab1d529", + "Name": "FG_2_18" + }, + "912c0f6f-371d-45fc-bd4c-bfced1007114": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "912c0f6f-371d-45fc-bd4c-bfced1007114", + "Name": "FP_2_19" + }, + "db9a41a1-0f5e-47d7-9048-3699871976e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.480060849549773E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -30.849999999999998, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "db9a41a1-0f5e-47d7-9048-3699871976e2", + "Name": "FG_2_19" + }, + "be4d4465-9195-4d2c-b001-c6b2c9b5d0dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "be4d4465-9195-4d2c-b001-c6b2c9b5d0dc", + "Name": "FP_2_20" + }, + "95313eca-ed2c-4bb1-b4e8-d4fa7370387a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -5.782041512247815E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -32.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "95313eca-ed2c-4bb1-b4e8-d4fa7370387a", + "Name": "FG_2_20" + }, + "1cd13070-ec62-4884-a831-45118f2e6b0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1cd13070-ec62-4884-a831-45118f2e6b0e", + "Name": "FP_2_21" + }, + "3be39739-0b8e-40a2-aeed-993a0df93ebc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.0840221749458575E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -34.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3be39739-0b8e-40a2-aeed-993a0df93ebc", + "Name": "FG_2_21" + }, + "f1cabba6-8a40-4af3-bfd9-34a6319dffd5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "f1cabba6-8a40-4af3-bfd9-34a6319dffd5", + "Name": "FP_2_22" + }, + "1fd1d0ef-56dd-4326-b991-e9c1ecb0d10d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.3860028376439E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -35.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "1fd1d0ef-56dd-4326-b991-e9c1ecb0d10d", + "Name": "FG_2_22" + }, + "96c714f4-a381-48f1-a59a-524ccbd54dda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "96c714f4-a381-48f1-a59a-524ccbd54dda", + "Name": "FP_2_23" + }, + "a3012d1e-f1e5-4fe8-91b4-325ee85e7eb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.687983500341943E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -37.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a3012d1e-f1e5-4fe8-91b4-325ee85e7eb7", + "Name": "FG_2_23" + }, + "cfbf602a-04eb-48e4-8e00-1552c63a7399": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cfbf602a-04eb-48e4-8e00-1552c63a7399", + "Name": "FP_2_24" + }, + "dd9ef9ff-4bcb-43ce-bb1d-90ced3ab6c91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -6.989964163039985E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -39.349999999999994, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "dd9ef9ff-4bcb-43ce-bb1d-90ced3ab6c91", + "Name": "FG_2_24" + }, + "6374bbd1-dbb3-47a4-8932-b53da0013da0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6374bbd1-dbb3-47a4-8932-b53da0013da0", + "Name": "FP_2_25" + }, + "5b64a384-1a36-44d9-8035-a3643e36889c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.291944825738029E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -41.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "5b64a384-1a36-44d9-8035-a3643e36889c", + "Name": "FG_2_25" + }, + "25baac25-4efe-4981-a3c1-9c75995b2b03": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "25baac25-4efe-4981-a3c1-9c75995b2b03", + "Name": "FP_2_26" + }, + "6df497f0-e19d-4cb7-be9a-65f7de93e46f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.593925488436071E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -42.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6df497f0-e19d-4cb7-be9a-65f7de93e46f", + "Name": "FG_2_26" + }, + "c26bc564-a14b-4006-82d6-3b6f637d01af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c26bc564-a14b-4006-82d6-3b6f637d01af", + "Name": "FP_2_27" + }, + "e5ed615a-a482-425f-b06e-922bca5fd0fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -7.895906151134114E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -44.45, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "e5ed615a-a482-425f-b06e-922bca5fd0fc", + "Name": "FG_2_27" + }, + "b0e745dd-bffe-4a0f-89db-209b00ddfa71": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "b0e745dd-bffe-4a0f-89db-209b00ddfa71", + "Name": "FP_2_28" + }, + "4eede944-ff83-4bec-b698-6fcd9c2699b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.197886813832156E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -46.150000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "4eede944-ff83-4bec-b698-6fcd9c2699b1", + "Name": "FG_2_28" + }, + "74aa154b-c1fc-4e8a-9f40-9f023a93c838": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "74aa154b-c1fc-4e8a-9f40-9f023a93c838", + "Name": "FP_2_29" + }, + "cb474f73-1ffc-43e5-a34d-8161e65bbd7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.499867476530199E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -47.85000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "cb474f73-1ffc-43e5-a34d-8161e65bbd7d", + "Name": "FG_2_29" + }, + "69df6c8d-a0f6-426d-8aed-759ee6081cab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "69df6c8d-a0f6-426d-8aed-759ee6081cab", + "Name": "FP_2_30" + }, + "52337a1d-9758-41ec-b005-7573045a3b0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -8.801848139228241E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -49.55, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "52337a1d-9758-41ec-b005-7573045a3b0a", + "Name": "FG_2_30" + }, + "6a82aceb-3658-4eaa-8ee5-accdf05bf31d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "6a82aceb-3658-4eaa-8ee5-accdf05bf31d", + "Name": "FP_2_31" + }, + "aa3bb25c-1177-40a0-9851-c40dd8cba4ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.103828801926285E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -51.25, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "aa3bb25c-1177-40a0-9851-c40dd8cba4ec", + "Name": "FG_2_31" + }, + "3b8eda14-9fae-414c-9b03-4bc73e003d43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "3b8eda14-9fae-414c-9b03-4bc73e003d43", + "Name": "FP_2_32" + }, + "4b80a2a2-869c-40c2-8a57-0e4aea554e87": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.405809464624326E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -52.95, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "4b80a2a2-869c-40c2-8a57-0e4aea554e87", + "Name": "FG_2_32" + }, + "73b1e826-6346-4517-a108-82595e931acb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "73b1e826-6346-4517-a108-82595e931acb", + "Name": "FP_2_33" + }, + "ca3cc3e2-35a4-4e79-a700-fb2b847397d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -9.70779012732237E-15, + -1.0, + 0.0, + 1.7763568394002506E-16, + -54.650000000000006, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "ca3cc3e2-35a4-4e79-a700-fb2b847397d8", + "Name": "FG_2_33" + }, + "a7d63dc3-cd5d-428d-99ad-87c26f93bfbc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "a7d63dc3-cd5d-428d-99ad-87c26f93bfbc", + "Name": "FP_2_34" + }, + "c6ac0eeb-12fa-41ae-a16a-d4b7e1b97341": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0009770790020413E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -56.35000000000001, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "c6ac0eeb-12fa-41ae-a16a-d4b7e1b97341", + "Name": "FG_2_34" + }, + "69cf00be-24d0-4be1-ab1e-5e2510fbe719": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "08536181-6c6a-4811-bd8c-26e64e079485", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "69cf00be-24d0-4be1-ab1e-5e2510fbe719", + "Name": "FP_2_35" + }, + "8e8171ea-8497-4df7-927d-d1d4ef11f2a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b8bb89a8-c302-4c75-ab3e-a1fe29251479", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0311751452718455E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -58.05, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Id": "8e8171ea-8497-4df7-927d-d1d4ef11f2a9", + "Name": "FG_2_35" + }, + "28b083a7-587e-430d-b743-513cc85803bb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 0.0006479859497433802, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 0.009978983626048054, + "Z": 0.0 + }, + { + "X": 0.24935201405025662, + "Y": 3.8400210163739517, + "Z": 0.0 + }, + { + "X": 0.0006479859497433802, + "Y": 3.8400210163739517, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "28b083a7-587e-430d-b743-513cc85803bb", + "Name": null + }, + "0857c85c-c68e-48f6-85aa-15339337b58b": { + "discriminator": "Elements.FacadePanel", + "Thickness": 0.1, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002506E-16, + 0.0, + -1.0, + -1.0613732115416497E-14, + -1.0, + 0.0, + 1.7763568394002506E-16, + -59.75, + 0.0, + 1.0, + 0.0, + 8.35 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "28b083a7-587e-430d-b743-513cc85803bb", + "Height": 0.1, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0857c85c-c68e-48f6-85aa-15339337b58b", + "Name": "FP_2_36" + }, + "07d9283d-4cf3-43c2-841d-c82dc71d6760": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.05, + "Y": 8.881784197001254E-18, + "Z": 12.2 + }, + { + "X": -0.05000000000001066, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.049999999999989345, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.05, + "Y": -8.881784197001254E-18, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "07d9283d-4cf3-43c2-841d-c82dc71d6760", + "Name": null + }, + "7f810a61-7aa0-4d54-a9e3-a30c0181c9d7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.05, + "Y": 8.881784197001254E-18, + "Z": 12.2 + }, + { + "X": -0.05000000000001066, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.049999999999989345, + "Y": -60.0, + "Z": 12.2 + }, + { + "X": 0.05, + "Y": -8.881784197001254E-18, + "Z": 12.2 + } + ] + }, + "Voids": [], + "Id": "7f810a61-7aa0-4d54-a9e3-a30c0181c9d7", + "Name": null + }, + "072bccf0-7255-4bc6-9fde-abdb3fee8fbd": { + "discriminator": "Elements.StandardWall", + "CenterLine": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 12.2 + }, + "End": { + "X": -1.0658141036401503E-14, + "Y": -60.0, + "Z": 12.2 + } + }, + "Thickness": 0.1, + "Height": 0.9, + "Profile": null, + "Openings": [], + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "6771e26c-6d64-4c0e-962c-018166d01dfd", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Extrude", + "Profile": "7f810a61-7aa0-4d54-a9e3-a30c0181c9d7", + "Height": 0.9, + "Direction": { + "X": 0.0, + "Y": 0.0, + "Z": 1.0 + }, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "072bccf0-7255-4bc6-9fde-abdb3fee8fbd", + "Name": null + }, + "1bc34a74-5aff-4a89-967c-eaaace0b4d50": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1bc34a74-5aff-4a89-967c-eaaace0b4d50", + "Name": null + }, + "7298d643-9049-4a2b-960d-ae775b50fd80": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 0.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.0, + "GlossinessFactor": 0.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Name": "black" + }, + "762b6141-87f5-4a25-b644-4b1c66d8d5e5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1bc34a74-5aff-4a89-967c-eaaace0b4d50", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1bc34a74-5aff-4a89-967c-eaaace0b4d50", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "762b6141-87f5-4a25-b644-4b1c66d8d5e5", + "Name": null + }, + "d040523b-148a-41e3-8228-523e4597e8ca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d040523b-148a-41e3-8228-523e4597e8ca", + "Name": null + }, + "487b40b2-a5dc-4e3d-aeba-6c49a79e00e1": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "d040523b-148a-41e3-8228-523e4597e8ca", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "d040523b-148a-41e3-8228-523e4597e8ca", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "487b40b2-a5dc-4e3d-aeba-6c49a79e00e1", + "Name": null + }, + "da794247-52d7-4137-8f6a-2ea2b0d321b6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "da794247-52d7-4137-8f6a-2ea2b0d321b6", + "Name": null + }, + "5c0f8c0e-0318-43fe-bb17-4764d0d2cb61": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "da794247-52d7-4137-8f6a-2ea2b0d321b6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "da794247-52d7-4137-8f6a-2ea2b0d321b6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5c0f8c0e-0318-43fe-bb17-4764d0d2cb61", + "Name": null + }, + "2b1e23eb-e5f9-430d-9fa1-d4539e09c134": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2b1e23eb-e5f9-430d-9fa1-d4539e09c134", + "Name": null + }, + "c568286c-ae77-4d5b-a07e-72bcec1b5a25": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2b1e23eb-e5f9-430d-9fa1-d4539e09c134", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2b1e23eb-e5f9-430d-9fa1-d4539e09c134", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c568286c-ae77-4d5b-a07e-72bcec1b5a25", + "Name": null + }, + "4a8f40c9-33ea-499c-9ea8-348bd2b41430": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4a8f40c9-33ea-499c-9ea8-348bd2b41430", + "Name": null + }, + "1d593e24-b5ed-4a27-9a8d-d5b7c364b25a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 0.0 + }, + "End": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4a8f40c9-33ea-499c-9ea8-348bd2b41430", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4a8f40c9-33ea-499c-9ea8-348bd2b41430", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 0.0 + }, + "End": { + "X": 28.16794990224245, + "Y": -29.054704427439727, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1d593e24-b5ed-4a27-9a8d-d5b7c364b25a", + "Name": null + }, + "fdd95142-0ed3-48b4-98fe-98396287d17b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fdd95142-0ed3-48b4-98fe-98396287d17b", + "Name": null + }, + "80717812-352e-48cd-b0be-4ed3b11e16e9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 0.0 + }, + "End": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fdd95142-0ed3-48b4-98fe-98396287d17b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fdd95142-0ed3-48b4-98fe-98396287d17b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 0.0 + }, + "End": { + "X": 27.3358998044849, + "Y": -27.806628854879452, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "80717812-352e-48cd-b0be-4ed3b11e16e9", + "Name": null + }, + "3ff6d73e-4946-478e-bfde-0645ad9893b9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3ff6d73e-4946-478e-bfde-0645ad9893b9", + "Name": null + }, + "7d57375c-c364-4c05-b9c7-9d384449a3e5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 0.0 + }, + "End": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3ff6d73e-4946-478e-bfde-0645ad9893b9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3ff6d73e-4946-478e-bfde-0645ad9893b9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 0.0 + }, + "End": { + "X": 26.50384970672735, + "Y": -26.55855328231918, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7d57375c-c364-4c05-b9c7-9d384449a3e5", + "Name": null + }, + "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6", + "Name": null + }, + "1b57cf87-0e10-4adb-afb4-580f95d5b2a8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 0.0 + }, + "End": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4d138a3d-8ee2-494d-a1b2-8acb5782a8c6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 0.0 + }, + "End": { + "X": 25.6717996089698, + "Y": -25.31047770975891, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1b57cf87-0e10-4adb-afb4-580f95d5b2a8", + "Name": null + }, + "95242f67-a116-48c8-8471-b1f9e191d1a7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "95242f67-a116-48c8-8471-b1f9e191d1a7", + "Name": null + }, + "30c921b3-278d-43b5-bc6e-25b63df5181d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 0.0 + }, + "End": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "95242f67-a116-48c8-8471-b1f9e191d1a7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "95242f67-a116-48c8-8471-b1f9e191d1a7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 0.0 + }, + "End": { + "X": 24.83974951121225, + "Y": -24.06240213719864, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "30c921b3-278d-43b5-bc6e-25b63df5181d", + "Name": null + }, + "9459bd17-3c8e-46e9-8895-7bfc3adbea34": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "9459bd17-3c8e-46e9-8895-7bfc3adbea34", + "Name": null + }, + "74e505aa-c39e-4a87-a5d0-cee2c496ed6c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 0.0 + }, + "End": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "9459bd17-3c8e-46e9-8895-7bfc3adbea34", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "9459bd17-3c8e-46e9-8895-7bfc3adbea34", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 0.0 + }, + "End": { + "X": 24.007699413454702, + "Y": -22.814326564638364, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "74e505aa-c39e-4a87-a5d0-cee2c496ed6c", + "Name": null + }, + "f2203fd5-75e1-4284-abb2-638463500c12": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f2203fd5-75e1-4284-abb2-638463500c12", + "Name": null + }, + "197adfd3-8e92-46d9-a7b6-4ce045875a1f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 0.0 + }, + "End": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f2203fd5-75e1-4284-abb2-638463500c12", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f2203fd5-75e1-4284-abb2-638463500c12", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 0.0 + }, + "End": { + "X": 23.17564931569715, + "Y": -21.566250992078093, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "197adfd3-8e92-46d9-a7b6-4ce045875a1f", + "Name": null + }, + "c6deb3be-8d83-4ddc-a246-38b190d088f9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c6deb3be-8d83-4ddc-a246-38b190d088f9", + "Name": null + }, + "2f01d0c4-9958-475e-98d9-24976578050e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 0.0 + }, + "End": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c6deb3be-8d83-4ddc-a246-38b190d088f9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c6deb3be-8d83-4ddc-a246-38b190d088f9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 0.0 + }, + "End": { + "X": 22.343599217939598, + "Y": -20.31817541951782, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2f01d0c4-9958-475e-98d9-24976578050e", + "Name": null + }, + "20cc3180-ef20-4ff7-82c0-ec2be19092c6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "20cc3180-ef20-4ff7-82c0-ec2be19092c6", + "Name": null + }, + "db2fe5a6-e358-4f1b-aac2-b37a8fab6887": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 0.0 + }, + "End": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "20cc3180-ef20-4ff7-82c0-ec2be19092c6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "20cc3180-ef20-4ff7-82c0-ec2be19092c6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 0.0 + }, + "End": { + "X": 21.51154912018205, + "Y": -19.070099846957547, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "db2fe5a6-e358-4f1b-aac2-b37a8fab6887", + "Name": null + }, + "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d", + "Name": null + }, + "d77ce8e5-6af1-4f19-9be2-42cf74458942": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 0.0 + }, + "End": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8fd2c859-20e3-40f0-b1b8-38c0cc1a363d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 0.0 + }, + "End": { + "X": 20.6794990224245, + "Y": -17.822024274397275, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d77ce8e5-6af1-4f19-9be2-42cf74458942", + "Name": null + }, + "df06b204-3e10-489e-9104-0cb77222d57d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "df06b204-3e10-489e-9104-0cb77222d57d", + "Name": null + }, + "ff9c620c-b1d3-4494-ad63-dd6371db654d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 0.0 + }, + "End": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "df06b204-3e10-489e-9104-0cb77222d57d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "df06b204-3e10-489e-9104-0cb77222d57d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 0.0 + }, + "End": { + "X": 19.84744892466695, + "Y": -16.573948701837004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "ff9c620c-b1d3-4494-ad63-dd6371db654d", + "Name": null + }, + "8d99beec-8b2d-4f51-b5e0-e3426509070d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8d99beec-8b2d-4f51-b5e0-e3426509070d", + "Name": null + }, + "c6dbf26e-d595-4cbd-b80e-4b7a81847fd1": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 0.0 + }, + "End": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8d99beec-8b2d-4f51-b5e0-e3426509070d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8d99beec-8b2d-4f51-b5e0-e3426509070d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 0.0 + }, + "End": { + "X": 19.0153988269094, + "Y": -15.325873129276731, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c6dbf26e-d595-4cbd-b80e-4b7a81847fd1", + "Name": null + }, + "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2", + "Name": null + }, + "f553c06a-c1b4-4344-b34f-3ad6f5f45c2a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 0.0 + }, + "End": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c354aa25-fee3-4bcc-aaa8-2dfa95e8c5c2", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 0.0 + }, + "End": { + "X": 18.183348729151852, + "Y": -14.077797556716458, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f553c06a-c1b4-4344-b34f-3ad6f5f45c2a", + "Name": null + }, + "40f030e9-02af-45f9-8772-0354f6e83f08": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "40f030e9-02af-45f9-8772-0354f6e83f08", + "Name": null + }, + "4c074df2-03b5-4381-822a-5380fdfb5394": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 0.0 + }, + "End": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "40f030e9-02af-45f9-8772-0354f6e83f08", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "40f030e9-02af-45f9-8772-0354f6e83f08", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 0.0 + }, + "End": { + "X": 17.3512986313943, + "Y": -12.829721984156187, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4c074df2-03b5-4381-822a-5380fdfb5394", + "Name": null + }, + "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b", + "Name": null + }, + "b0cd255e-db88-4188-bba8-36aacb8bf1ea": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 0.0 + }, + "End": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b91f8f0d-86fa-423a-acd1-3ac26feb9a8b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 0.0 + }, + "End": { + "X": 16.51924853363675, + "Y": -11.581646411595916, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b0cd255e-db88-4188-bba8-36aacb8bf1ea", + "Name": null + }, + "e9d848e3-448d-4aae-b730-7b2432e02b37": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e9d848e3-448d-4aae-b730-7b2432e02b37", + "Name": null + }, + "6bcd6fac-6c82-42a7-bf67-733575b82465": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 0.0 + }, + "End": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "e9d848e3-448d-4aae-b730-7b2432e02b37", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "e9d848e3-448d-4aae-b730-7b2432e02b37", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 0.0 + }, + "End": { + "X": 15.6871984358792, + "Y": -10.33357083903564, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6bcd6fac-6c82-42a7-bf67-733575b82465", + "Name": null + }, + "dd083ba7-259b-47a7-8cc8-6f7e86ff1053": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "dd083ba7-259b-47a7-8cc8-6f7e86ff1053", + "Name": null + }, + "8524b05a-6662-4ab2-b3a9-975275ca55fd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 0.0 + }, + "End": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "dd083ba7-259b-47a7-8cc8-6f7e86ff1053", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "dd083ba7-259b-47a7-8cc8-6f7e86ff1053", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 0.0 + }, + "End": { + "X": 14.85514833812165, + "Y": -9.08549526647537, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8524b05a-6662-4ab2-b3a9-975275ca55fd", + "Name": null + }, + "36f75b30-c3e4-42e7-ab8b-7847588a7b86": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "36f75b30-c3e4-42e7-ab8b-7847588a7b86", + "Name": null + }, + "652c18fd-4626-4acf-ab4a-8e2b2193be04": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 0.0 + }, + "End": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "36f75b30-c3e4-42e7-ab8b-7847588a7b86", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "36f75b30-c3e4-42e7-ab8b-7847588a7b86", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 0.0 + }, + "End": { + "X": 14.0230982403641, + "Y": -7.837419693915098, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "652c18fd-4626-4acf-ab4a-8e2b2193be04", + "Name": null + }, + "7ba7bc46-63a5-4d3f-a90a-708a99118dca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7ba7bc46-63a5-4d3f-a90a-708a99118dca", + "Name": null + }, + "f31c9cbe-39c6-4407-a110-872841a8b6e3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 0.0 + }, + "End": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7ba7bc46-63a5-4d3f-a90a-708a99118dca", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7ba7bc46-63a5-4d3f-a90a-708a99118dca", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 0.0 + }, + "End": { + "X": 13.19104814260655, + "Y": -6.589344121354824, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f31c9cbe-39c6-4407-a110-872841a8b6e3", + "Name": null + }, + "7867cf66-2d50-4cfe-b219-b56314314a2c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7867cf66-2d50-4cfe-b219-b56314314a2c", + "Name": null + }, + "f7ec8249-114b-47d6-a1c0-bb61382fe1f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 0.0 + }, + "End": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7867cf66-2d50-4cfe-b219-b56314314a2c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7867cf66-2d50-4cfe-b219-b56314314a2c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 0.0 + }, + "End": { + "X": 12.358998044848999, + "Y": -5.341268548794552, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f7ec8249-114b-47d6-a1c0-bb61382fe1f0", + "Name": null + }, + "6964f996-efc6-4016-9711-b2b90f055904": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6964f996-efc6-4016-9711-b2b90f055904", + "Name": null + }, + "fcac37e6-333c-4e32-9911-c54f1a7ba929": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 0.0 + }, + "End": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "6964f996-efc6-4016-9711-b2b90f055904", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "6964f996-efc6-4016-9711-b2b90f055904", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 0.0 + }, + "End": { + "X": 11.526947947091447, + "Y": -4.093192976234278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "fcac37e6-333c-4e32-9911-c54f1a7ba929", + "Name": null + }, + "fda32561-7d07-475a-8956-957c0f46b55a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fda32561-7d07-475a-8956-957c0f46b55a", + "Name": null + }, + "5e2ad3eb-4222-462d-9208-d08151fd2fc0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 0.0 + }, + "End": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fda32561-7d07-475a-8956-957c0f46b55a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fda32561-7d07-475a-8956-957c0f46b55a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 0.0 + }, + "End": { + "X": 10.694897849333898, + "Y": -2.8451174036740063, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5e2ad3eb-4222-462d-9208-d08151fd2fc0", + "Name": null + }, + "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f", + "Name": null + }, + "c8b66a3d-1440-40e5-9fd4-489ecfc58a18": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 0.0 + }, + "End": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ac7a7672-70b8-4d91-aa6b-0e992f8ea94f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 0.0 + }, + "End": { + "X": 9.86284775157635, + "Y": -1.597041831113735, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c8b66a3d-1440-40e5-9fd4-489ecfc58a18", + "Name": null + }, + "7a2ec1bf-c88c-4878-a9b1-542019901232": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7a2ec1bf-c88c-4878-a9b1-542019901232", + "Name": null + }, + "231c9fa6-72ae-4f42-b532-4d567a38d164": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7a2ec1bf-c88c-4878-a9b1-542019901232", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7a2ec1bf-c88c-4878-a9b1-542019901232", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "231c9fa6-72ae-4f42-b532-4d567a38d164", + "Name": null + }, + "28c5c2b1-d65c-4c46-8689-d651f50f07e7": { + "discriminator": "Elements.Material", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.20000000298023224 + }, + "SpecularFactor": 1.0, + "GlossinessFactor": 1.0, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "EmissiveFactor": 1.0, + "EdgeDisplaySettings": null, + "Id": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Name": "glass" + }, + "e32262e9-1265-434b-a7e4-b92de71603f7": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e32262e9-1265-434b-a7e4-b92de71603f7", + "Name": null + }, + "873755b5-bd57-4001-bdba-4f3d00e2c138": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "873755b5-bd57-4001-bdba-4f3d00e2c138", + "Name": null + }, + "a086b5a3-8ec5-4c43-9b34-53e9cefec988": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "873755b5-bd57-4001-bdba-4f3d00e2c138", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "873755b5-bd57-4001-bdba-4f3d00e2c138", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a086b5a3-8ec5-4c43-9b34-53e9cefec988", + "Name": null + }, + "8b17641e-148a-4f78-95bb-de6b23673222": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8b17641e-148a-4f78-95bb-de6b23673222", + "Name": null + }, + "0299a21c-b0a7-4499-810b-658db2bfd743": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8b17641e-148a-4f78-95bb-de6b23673222", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8b17641e-148a-4f78-95bb-de6b23673222", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0299a21c-b0a7-4499-810b-658db2bfd743", + "Name": null + }, + "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e", + "Name": null + }, + "d3288cc4-721c-4165-8a82-4327f627e3f6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5ff005b5-9155-4f86-97f8-91aa7d6b6d8e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d3288cc4-721c-4165-8a82-4327f627e3f6", + "Name": null + }, + "6d7b3f8e-7b13-4c90-91b4-3532190b49aa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6d7b3f8e-7b13-4c90-91b4-3532190b49aa", + "Name": null + }, + "cc2d3346-1524-4db3-bb09-4f9f1d32c768": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "6d7b3f8e-7b13-4c90-91b4-3532190b49aa", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "6d7b3f8e-7b13-4c90-91b4-3532190b49aa", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cc2d3346-1524-4db3-bb09-4f9f1d32c768", + "Name": null + }, + "ab566acf-c5e2-49e6-b670-3a4d11e17f12": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ab566acf-c5e2-49e6-b670-3a4d11e17f12", + "Name": null + }, + "8aa1bd9a-d791-4671-92de-3c71eb32c622": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 7.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ab566acf-c5e2-49e6-b670-3a4d11e17f12", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ab566acf-c5e2-49e6-b670-3a4d11e17f12", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 7.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8aa1bd9a-d791-4671-92de-3c71eb32c622", + "Name": null + }, + "ae067c09-4fca-435a-9023-4456f08a1648": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ae067c09-4fca-435a-9023-4456f08a1648", + "Name": null + }, + "146818c8-2a71-43b8-a8db-475aad247b99": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 6.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ae067c09-4fca-435a-9023-4456f08a1648", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ae067c09-4fca-435a-9023-4456f08a1648", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 6.46482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 6.46482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "146818c8-2a71-43b8-a8db-475aad247b99", + "Name": null + }, + "b32842b1-91c5-4efc-9d26-1b18a373e299": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b32842b1-91c5-4efc-9d26-1b18a373e299", + "Name": null + }, + "42a579f6-0b75-4fe4-a06c-fea894313b8d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 4.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b32842b1-91c5-4efc-9d26-1b18a373e299", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b32842b1-91c5-4efc-9d26-1b18a373e299", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.96482, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 4.96482, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "42a579f6-0b75-4fe4-a06c-fea894313b8d", + "Name": null + }, + "79154e69-95bd-402f-88a6-1f747d936165": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "79154e69-95bd-402f-88a6-1f747d936165", + "Name": null + }, + "a0f9b4b6-ad00-4463-bfb3-74bb1f34590a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "79154e69-95bd-402f-88a6-1f747d936165", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "79154e69-95bd-402f-88a6-1f747d936165", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 3.4648199999999996, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a0f9b4b6-ad00-4463-bfb3-74bb1f34590a", + "Name": null + }, + "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7", + "Name": null + }, + "2cce7278-649a-4ac8-b264-7aa81abe28bb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f23ddf57-3f4f-43b7-9dd3-3e05af8163c7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.9648200000000005, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2cce7278-649a-4ac8-b264-7aa81abe28bb", + "Name": null + }, + "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f", + "Name": null + }, + "79aef24c-6a5b-4385-b897-d8ddbb90806c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "d104e5e4-4fd4-4c21-8b2c-94e0264fe90f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "79aef24c-6a5b-4385-b897-d8ddbb90806c", + "Name": null + }, + "52cc745e-786a-463f-bf6b-36dd6e53601b": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 9.46482, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + { + "X": 9.46482, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "52cc745e-786a-463f-bf6b-36dd6e53601b", + "Name": null + }, + "4f58b206-79a4-4b92-a5a2-1fd92033d21c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4f58b206-79a4-4b92-a5a2-1fd92033d21c", + "Name": null + }, + "98ca7935-db5a-4eb4-948f-2b9f11a75218": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4f58b206-79a4-4b92-a5a2-1fd92033d21c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4f58b206-79a4-4b92-a5a2-1fd92033d21c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "98ca7935-db5a-4eb4-948f-2b9f11a75218", + "Name": null + }, + "09099962-1835-4692-984a-eb010bce4d0d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "09099962-1835-4692-984a-eb010bce4d0d", + "Name": null + }, + "13d71bcf-21cf-4323-be9a-b1b70033f0a9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "09099962-1835-4692-984a-eb010bce4d0d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "09099962-1835-4692-984a-eb010bce4d0d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 2.25 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "13d71bcf-21cf-4323-be9a-b1b70033f0a9", + "Name": null + }, + "48da2373-6a89-4352-bfef-bdda79713af5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "48da2373-6a89-4352-bfef-bdda79713af5", + "Name": null + }, + "79efe3aa-b0d0-4c89-9026-9be1fe70dfeb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "48da2373-6a89-4352-bfef-bdda79713af5", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "48da2373-6a89-4352-bfef-bdda79713af5", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "79efe3aa-b0d0-4c89-9026-9be1fe70dfeb", + "Name": null + }, + "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1", + "Name": null + }, + "dbda0112-78e2-4cac-8ed2-f9e28cdc1757": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8b5c4f68-a0db-45a9-9563-cf5e39c35ae1", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dbda0112-78e2-4cac-8ed2-f9e28cdc1757", + "Name": null + }, + "a75ca899-2fa7-4f14-864b-1915867d735e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a75ca899-2fa7-4f14-864b-1915867d735e", + "Name": null + }, + "73ec5b23-bf5e-43ce-b76d-cd8d5658a060": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -2.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -2.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a75ca899-2fa7-4f14-864b-1915867d735e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a75ca899-2fa7-4f14-864b-1915867d735e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -2.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -2.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "73ec5b23-bf5e-43ce-b76d-cd8d5658a060", + "Name": null + }, + "0b0f7379-c1ba-4635-8c10-8225dced407e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0b0f7379-c1ba-4635-8c10-8225dced407e", + "Name": null + }, + "caa25bb6-ed6f-4dba-9556-4f7bd40f1dcc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -4.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0b0f7379-c1ba-4635-8c10-8225dced407e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0b0f7379-c1ba-4635-8c10-8225dced407e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -4.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -4.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "caa25bb6-ed6f-4dba-9556-4f7bd40f1dcc", + "Name": null + }, + "3c27c5d5-0ca1-4813-9060-37b1c58e122e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3c27c5d5-0ca1-4813-9060-37b1c58e122e", + "Name": null + }, + "765ccb09-72df-4e60-a46d-1b9a649f1622": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -5.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -5.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3c27c5d5-0ca1-4813-9060-37b1c58e122e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3c27c5d5-0ca1-4813-9060-37b1c58e122e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -5.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -5.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "765ccb09-72df-4e60-a46d-1b9a649f1622", + "Name": null + }, + "064cf28a-febc-43b7-98f9-d361d0fee195": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "064cf28a-febc-43b7-98f9-d361d0fee195", + "Name": null + }, + "a94b553a-e0eb-47f6-afec-9ce0129f8f13": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -7.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "064cf28a-febc-43b7-98f9-d361d0fee195", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "064cf28a-febc-43b7-98f9-d361d0fee195", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -7.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -7.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a94b553a-e0eb-47f6-afec-9ce0129f8f13", + "Name": null + }, + "98f28be1-9e15-4c12-9dbb-a1b0e56e0415": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "98f28be1-9e15-4c12-9dbb-a1b0e56e0415", + "Name": null + }, + "b9e3bec8-324b-44c9-a9f3-3328035087b5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -8.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -8.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "98f28be1-9e15-4c12-9dbb-a1b0e56e0415", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "98f28be1-9e15-4c12-9dbb-a1b0e56e0415", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -8.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -8.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b9e3bec8-324b-44c9-a9f3-3328035087b5", + "Name": null + }, + "f262da15-7db4-4941-a974-b0c9b85b3eb8": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f262da15-7db4-4941-a974-b0c9b85b3eb8", + "Name": null + }, + "c8e926c1-3d4e-4a6a-ad0d-4c21adc67e31": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f262da15-7db4-4941-a974-b0c9b85b3eb8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f262da15-7db4-4941-a974-b0c9b85b3eb8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c8e926c1-3d4e-4a6a-ad0d-4c21adc67e31", + "Name": null + }, + "8287585e-5af4-471b-a102-26e73c4467ae": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8287585e-5af4-471b-a102-26e73c4467ae", + "Name": null + }, + "977ee5dc-03c3-48a3-aea0-8ca7f889af5d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -11.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -11.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8287585e-5af4-471b-a102-26e73c4467ae", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8287585e-5af4-471b-a102-26e73c4467ae", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -11.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -11.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "977ee5dc-03c3-48a3-aea0-8ca7f889af5d", + "Name": null + }, + "ddf3c61c-7bc9-4536-bf74-d53d04c555d2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ddf3c61c-7bc9-4536-bf74-d53d04c555d2", + "Name": null + }, + "8ba4ab78-b7f3-4d12-8a17-3d4c68aef25f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -13.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ddf3c61c-7bc9-4536-bf74-d53d04c555d2", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ddf3c61c-7bc9-4536-bf74-d53d04c555d2", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -13.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -13.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8ba4ab78-b7f3-4d12-8a17-3d4c68aef25f", + "Name": null + }, + "af184823-d760-40d7-845d-50634fb99d7f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "af184823-d760-40d7-845d-50634fb99d7f", + "Name": null + }, + "e0d4171c-0d1f-4f5c-9056-9b5a13eaabfe": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -14.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -14.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "af184823-d760-40d7-845d-50634fb99d7f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "af184823-d760-40d7-845d-50634fb99d7f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -14.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -14.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e0d4171c-0d1f-4f5c-9056-9b5a13eaabfe", + "Name": null + }, + "3be64d1d-bbdc-4433-87da-a0e7eab0a67a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3be64d1d-bbdc-4433-87da-a0e7eab0a67a", + "Name": null + }, + "b43df5db-07eb-47ab-b91c-4b381504646a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -16.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3be64d1d-bbdc-4433-87da-a0e7eab0a67a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3be64d1d-bbdc-4433-87da-a0e7eab0a67a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -16.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -16.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b43df5db-07eb-47ab-b91c-4b381504646a", + "Name": null + }, + "14353ee1-8757-465f-a67e-998291a57331": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "14353ee1-8757-465f-a67e-998291a57331", + "Name": null + }, + "914e9d64-9da6-4ca4-92b6-3086885216e1": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -17.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -17.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "14353ee1-8757-465f-a67e-998291a57331", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "14353ee1-8757-465f-a67e-998291a57331", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -17.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -17.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "914e9d64-9da6-4ca4-92b6-3086885216e1", + "Name": null + }, + "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398", + "Name": null + }, + "55e33382-ad47-421d-847d-dde998c7863f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -19.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8e2c3c6a-3fe1-4cb1-a5f4-261a2b7f2398", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -19.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -19.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "55e33382-ad47-421d-847d-dde998c7863f", + "Name": null + }, + "b6f25239-474d-4c71-a8cf-771187031726": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b6f25239-474d-4c71-a8cf-771187031726", + "Name": null + }, + "d06dacf8-9884-4549-bf4a-0fc09e5a08e9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -20.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -20.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b6f25239-474d-4c71-a8cf-771187031726", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b6f25239-474d-4c71-a8cf-771187031726", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -20.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -20.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d06dacf8-9884-4549-bf4a-0fc09e5a08e9", + "Name": null + }, + "2fde2d11-e127-4dff-86f0-b7ae7115b33a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2fde2d11-e127-4dff-86f0-b7ae7115b33a", + "Name": null + }, + "d078a800-f45e-43d9-b5f8-3dae8cbd9e5a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -22.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2fde2d11-e127-4dff-86f0-b7ae7115b33a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2fde2d11-e127-4dff-86f0-b7ae7115b33a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -22.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -22.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d078a800-f45e-43d9-b5f8-3dae8cbd9e5a", + "Name": null + }, + "19b633f6-f1e1-4342-8b52-b75fff2f6963": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "19b633f6-f1e1-4342-8b52-b75fff2f6963", + "Name": null + }, + "b48c1065-144e-4a58-abd7-60b912ddb9e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -23.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -23.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "19b633f6-f1e1-4342-8b52-b75fff2f6963", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "19b633f6-f1e1-4342-8b52-b75fff2f6963", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -23.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -23.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b48c1065-144e-4a58-abd7-60b912ddb9e8", + "Name": null + }, + "efe1be9b-b00f-4cc6-83f4-1caa2805cc04": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "efe1be9b-b00f-4cc6-83f4-1caa2805cc04", + "Name": null + }, + "8e4cb6d0-e364-48a1-9202-005a41f82e48": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "efe1be9b-b00f-4cc6-83f4-1caa2805cc04", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "efe1be9b-b00f-4cc6-83f4-1caa2805cc04", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8e4cb6d0-e364-48a1-9202-005a41f82e48", + "Name": null + }, + "ec372921-a192-4e32-b211-f0f459e4e5f5": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ec372921-a192-4e32-b211-f0f459e4e5f5", + "Name": null + }, + "2002906c-4bf2-4fd8-98b1-b09c316ae6b2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -26.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -26.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ec372921-a192-4e32-b211-f0f459e4e5f5", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ec372921-a192-4e32-b211-f0f459e4e5f5", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -26.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -26.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2002906c-4bf2-4fd8-98b1-b09c316ae6b2", + "Name": null + }, + "89c787b9-1de8-4ac2-9149-574b59b5fc2d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "89c787b9-1de8-4ac2-9149-574b59b5fc2d", + "Name": null + }, + "3faef0e0-1bdb-4723-9112-14e9ce104a05": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -28.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "89c787b9-1de8-4ac2-9149-574b59b5fc2d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "89c787b9-1de8-4ac2-9149-574b59b5fc2d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -28.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -28.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3faef0e0-1bdb-4723-9112-14e9ce104a05", + "Name": null + }, + "a7e1efb1-5718-45da-85e4-bff82356b5e0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a7e1efb1-5718-45da-85e4-bff82356b5e0", + "Name": null + }, + "adee005d-903e-4ea2-8cd7-a9de5e975fed": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -29.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -29.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a7e1efb1-5718-45da-85e4-bff82356b5e0", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a7e1efb1-5718-45da-85e4-bff82356b5e0", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -29.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -29.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "adee005d-903e-4ea2-8cd7-a9de5e975fed", + "Name": null + }, + "764bf663-d0cb-41f0-94bc-0e639c6578fb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "764bf663-d0cb-41f0-94bc-0e639c6578fb", + "Name": null + }, + "81f1b370-c69c-4907-a2a4-384f549d9af2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "764bf663-d0cb-41f0-94bc-0e639c6578fb", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "764bf663-d0cb-41f0-94bc-0e639c6578fb", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -31.000000000000004, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "81f1b370-c69c-4907-a2a4-384f549d9af2", + "Name": null + }, + "dba3d51b-420b-4642-8fa5-e74a196aa430": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "dba3d51b-420b-4642-8fa5-e74a196aa430", + "Name": null + }, + "48d1db71-a215-4e19-adb2-8602f72dea04": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -32.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -32.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "dba3d51b-420b-4642-8fa5-e74a196aa430", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "dba3d51b-420b-4642-8fa5-e74a196aa430", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -32.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -32.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "48d1db71-a215-4e19-adb2-8602f72dea04", + "Name": null + }, + "1ceca958-0e42-4df7-b02f-aec37623a5aa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1ceca958-0e42-4df7-b02f-aec37623a5aa", + "Name": null + }, + "a6226dce-2682-4a53-b0ff-f990cb45f84d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -34.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1ceca958-0e42-4df7-b02f-aec37623a5aa", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1ceca958-0e42-4df7-b02f-aec37623a5aa", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -34.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -34.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a6226dce-2682-4a53-b0ff-f990cb45f84d", + "Name": null + }, + "0b09e749-de6e-4507-8d50-ca4729d7ea9c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0b09e749-de6e-4507-8d50-ca4729d7ea9c", + "Name": null + }, + "2528955e-325a-47e6-8e2f-586a7126954e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -35.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -35.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0b09e749-de6e-4507-8d50-ca4729d7ea9c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0b09e749-de6e-4507-8d50-ca4729d7ea9c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -35.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -35.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2528955e-325a-47e6-8e2f-586a7126954e", + "Name": null + }, + "b91b9895-4f96-4ab3-8532-103d7cc5ba18": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b91b9895-4f96-4ab3-8532-103d7cc5ba18", + "Name": null + }, + "efad256b-b9e4-4559-b8ff-84894d218e57": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -37.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b91b9895-4f96-4ab3-8532-103d7cc5ba18", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b91b9895-4f96-4ab3-8532-103d7cc5ba18", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -37.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -37.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "efad256b-b9e4-4559-b8ff-84894d218e57", + "Name": null + }, + "4e2f26be-b780-4f22-9b92-df89a6185f73": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4e2f26be-b780-4f22-9b92-df89a6185f73", + "Name": null + }, + "8370a8c3-1184-4b10-bd36-0c09d45f6183": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -38.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -38.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4e2f26be-b780-4f22-9b92-df89a6185f73", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4e2f26be-b780-4f22-9b92-df89a6185f73", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -38.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -38.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8370a8c3-1184-4b10-bd36-0c09d45f6183", + "Name": null + }, + "53eccb2b-726a-40aa-a121-66dd0ddfe02f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "53eccb2b-726a-40aa-a121-66dd0ddfe02f", + "Name": null + }, + "10a46ea4-e9e8-41ee-91dc-4b4a3964e067": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "53eccb2b-726a-40aa-a121-66dd0ddfe02f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "53eccb2b-726a-40aa-a121-66dd0ddfe02f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "10a46ea4-e9e8-41ee-91dc-4b4a3964e067", + "Name": null + }, + "5f2c2039-1468-4194-88e0-8948d0c8620b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5f2c2039-1468-4194-88e0-8948d0c8620b", + "Name": null + }, + "44707400-314f-4bd4-a8d2-3296885c519b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -41.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -41.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5f2c2039-1468-4194-88e0-8948d0c8620b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5f2c2039-1468-4194-88e0-8948d0c8620b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -41.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -41.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "44707400-314f-4bd4-a8d2-3296885c519b", + "Name": null + }, + "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21", + "Name": null + }, + "45c6fe6d-2b6e-4af5-9d23-726528cc6aba": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -43.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a5dadcc3-70c6-42d6-9f88-4eaacfb86b21", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -43.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -43.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "45c6fe6d-2b6e-4af5-9d23-726528cc6aba", + "Name": null + }, + "fd72396f-adb0-4f63-a87f-85272e174594": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fd72396f-adb0-4f63-a87f-85272e174594", + "Name": null + }, + "0a841f20-52f8-41cc-85fe-05c73503dff2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -44.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -44.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fd72396f-adb0-4f63-a87f-85272e174594", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fd72396f-adb0-4f63-a87f-85272e174594", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -44.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -44.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0a841f20-52f8-41cc-85fe-05c73503dff2", + "Name": null + }, + "cf0c046d-c4e3-414c-9be9-48eb84844feb": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "cf0c046d-c4e3-414c-9be9-48eb84844feb", + "Name": null + }, + "3bd0f885-8663-4fdd-b2cf-0b9bafc361e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -46.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "cf0c046d-c4e3-414c-9be9-48eb84844feb", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "cf0c046d-c4e3-414c-9be9-48eb84844feb", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -46.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -46.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3bd0f885-8663-4fdd-b2cf-0b9bafc361e8", + "Name": null + }, + "97500fd2-d2c0-427a-8e12-3e20cb77b3f9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "97500fd2-d2c0-427a-8e12-3e20cb77b3f9", + "Name": null + }, + "9383a6fd-80a5-48ce-bd40-0afcc9c1528f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -47.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -47.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "97500fd2-d2c0-427a-8e12-3e20cb77b3f9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "97500fd2-d2c0-427a-8e12-3e20cb77b3f9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -47.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -47.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9383a6fd-80a5-48ce-bd40-0afcc9c1528f", + "Name": null + }, + "3be1abee-2ccb-4d66-ad8b-eccad3311f0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "3be1abee-2ccb-4d66-ad8b-eccad3311f0b", + "Name": null + }, + "a26296ed-6ec2-4208-8c0b-a38f444041ce": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -49.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "3be1abee-2ccb-4d66-ad8b-eccad3311f0b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "3be1abee-2ccb-4d66-ad8b-eccad3311f0b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -49.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -49.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a26296ed-6ec2-4208-8c0b-a38f444041ce", + "Name": null + }, + "98d4a0fe-e1a3-4386-9a81-0da7cc69259d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "98d4a0fe-e1a3-4386-9a81-0da7cc69259d", + "Name": null + }, + "33d2a68e-e960-4c83-82a9-1c164fc8325a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -50.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -50.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "98d4a0fe-e1a3-4386-9a81-0da7cc69259d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "98d4a0fe-e1a3-4386-9a81-0da7cc69259d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -50.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -50.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "33d2a68e-e960-4c83-82a9-1c164fc8325a", + "Name": null + }, + "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e", + "Name": null + }, + "6b48e3ac-6c89-4b03-8ae7-9b8c8d54eb7b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -52.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "1f072c1c-29a6-4e2b-9ac8-aa7dd914e84e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -52.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -52.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6b48e3ac-6c89-4b03-8ae7-9b8c8d54eb7b", + "Name": null + }, + "0169fef7-7760-45d9-b1c4-cb8016f3359e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0169fef7-7760-45d9-b1c4-cb8016f3359e", + "Name": null + }, + "88b74a38-c861-47b8-b9bb-e6746cdac64e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -53.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -53.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0169fef7-7760-45d9-b1c4-cb8016f3359e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0169fef7-7760-45d9-b1c4-cb8016f3359e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -53.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -53.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "88b74a38-c861-47b8-b9bb-e6746cdac64e", + "Name": null + }, + "08e99676-4ddc-45ef-94ec-8df764af493e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "08e99676-4ddc-45ef-94ec-8df764af493e", + "Name": null + }, + "9d9d83d1-ed06-4c56-a60e-d1457b4679de": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "08e99676-4ddc-45ef-94ec-8df764af493e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "08e99676-4ddc-45ef-94ec-8df764af493e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9d9d83d1-ed06-4c56-a60e-d1457b4679de", + "Name": null + }, + "cd470729-64f3-4b5c-9644-5f86ff6dcfab": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "cd470729-64f3-4b5c-9644-5f86ff6dcfab", + "Name": null + }, + "d1062adc-0b26-434f-865e-d55fb3791f6d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -56.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -56.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "cd470729-64f3-4b5c-9644-5f86ff6dcfab", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "cd470729-64f3-4b5c-9644-5f86ff6dcfab", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -56.5, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -56.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d1062adc-0b26-434f-865e-d55fb3791f6d", + "Name": null + }, + "89d8fb5f-ad50-46c3-ac19-286178f292a9": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "89d8fb5f-ad50-46c3-ac19-286178f292a9", + "Name": null + }, + "f940ce60-af81-401e-b333-593aa7875a1d": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -58.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "89d8fb5f-ad50-46c3-ac19-286178f292a9", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "89d8fb5f-ad50-46c3-ac19-286178f292a9", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -58.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f940ce60-af81-401e-b333-593aa7875a1d", + "Name": null + }, + "235e1733-465c-4664-9fe4-ac20397c6e75": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "235e1733-465c-4664-9fe4-ac20397c6e75", + "Name": null + }, + "e5309f74-a3ad-4f20-ab9a-8463d3e81298": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "235e1733-465c-4664-9fe4-ac20397c6e75", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "235e1733-465c-4664-9fe4-ac20397c6e75", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e5309f74-a3ad-4f20-ab9a-8463d3e81298", + "Name": null + }, + "f7e5dfec-3daf-47c7-ae9e-5655d7873dfd": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -1.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -1.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f7e5dfec-3daf-47c7-ae9e-5655d7873dfd", + "Name": null + }, + "99b93bca-f665-4b73-9232-f7629bc8903c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "99b93bca-f665-4b73-9232-f7629bc8903c", + "Name": null + }, + "debc3ff3-499f-4a0a-ab2b-7e41f6c8a127": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "99b93bca-f665-4b73-9232-f7629bc8903c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "99b93bca-f665-4b73-9232-f7629bc8903c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "debc3ff3-499f-4a0a-ab2b-7e41f6c8a127", + "Name": null + }, + "a0aa1b33-82f6-4edf-834f-79f3dbb94d93": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a0aa1b33-82f6-4edf-834f-79f3dbb94d93", + "Name": null + }, + "e1a5504c-8f26-4964-9ac3-0620d3c21890": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a0aa1b33-82f6-4edf-834f-79f3dbb94d93", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a0aa1b33-82f6-4edf-834f-79f3dbb94d93", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "e1a5504c-8f26-4964-9ac3-0620d3c21890", + "Name": null + }, + "5328ebb2-dca0-491a-9687-d7bb12142603": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5328ebb2-dca0-491a-9687-d7bb12142603", + "Name": null + }, + "38430b0c-a9fb-4d6c-b813-1ad286874e20": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5328ebb2-dca0-491a-9687-d7bb12142603", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5328ebb2-dca0-491a-9687-d7bb12142603", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "38430b0c-a9fb-4d6c-b813-1ad286874e20", + "Name": null + }, + "f9bcd9be-8496-49d5-a6ed-f463b3b32851": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f9bcd9be-8496-49d5-a6ed-f463b3b32851", + "Name": null + }, + "db2a7ee2-30e1-4872-990d-b8eade1e400f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f9bcd9be-8496-49d5-a6ed-f463b3b32851", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f9bcd9be-8496-49d5-a6ed-f463b3b32851", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "db2a7ee2-30e1-4872-990d-b8eade1e400f", + "Name": null + }, + "b7ab6c92-74fc-493b-afb6-f003bcad7e0d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b7ab6c92-74fc-493b-afb6-f003bcad7e0d", + "Name": null + }, + "1eee6876-975a-4858-9e8f-b26a979bfdcd": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 2.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b7ab6c92-74fc-493b-afb6-f003bcad7e0d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b7ab6c92-74fc-493b-afb6-f003bcad7e0d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 2.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1eee6876-975a-4858-9e8f-b26a979bfdcd", + "Name": null + }, + "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07", + "Name": null + }, + "b37a14cc-a004-4efd-a369-33308aac95ea": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 4.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "4504c6bb-277f-45f5-a5b5-72b7bbd4bf07", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 4.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 4.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b37a14cc-a004-4efd-a369-33308aac95ea", + "Name": null + }, + "264c70f2-92d2-4ced-9418-d3f3e0d00869": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "264c70f2-92d2-4ced-9418-d3f3e0d00869", + "Name": null + }, + "1e45ba9e-f242-4a00-94c7-b9e9733bdd45": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "264c70f2-92d2-4ced-9418-d3f3e0d00869", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "264c70f2-92d2-4ced-9418-d3f3e0d00869", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "1e45ba9e-f242-4a00-94c7-b9e9733bdd45", + "Name": null + }, + "661c04a6-72e2-49f8-83fe-8ca6b2deafd4": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "661c04a6-72e2-49f8-83fe-8ca6b2deafd4", + "Name": null + }, + "2fc57063-e4ed-4d29-974a-a1ad7d996651": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "661c04a6-72e2-49f8-83fe-8ca6b2deafd4", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "661c04a6-72e2-49f8-83fe-8ca6b2deafd4", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2fc57063-e4ed-4d29-974a-a1ad7d996651", + "Name": null + }, + "ea92d924-3bc7-4237-828c-65d1ba9ee6ae": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ea92d924-3bc7-4237-828c-65d1ba9ee6ae", + "Name": null + }, + "24e6a070-25d6-4095-9e76-866864281b3a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 8.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ea92d924-3bc7-4237-828c-65d1ba9ee6ae", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ea92d924-3bc7-4237-828c-65d1ba9ee6ae", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 8.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 8.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "24e6a070-25d6-4095-9e76-866864281b3a", + "Name": null + }, + "163532af-a140-4c8f-8b39-e0764a55593d": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "163532af-a140-4c8f-8b39-e0764a55593d", + "Name": null + }, + "d85eeb32-02a1-4ca9-991b-61f76fd1f36a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 10.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "163532af-a140-4c8f-8b39-e0764a55593d", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "163532af-a140-4c8f-8b39-e0764a55593d", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 10.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d85eeb32-02a1-4ca9-991b-61f76fd1f36a", + "Name": null + }, + "d3f661d6-cd69-4711-9538-a6ae9d198625": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "d3f661d6-cd69-4711-9538-a6ae9d198625", + "Name": null + }, + "11497673-a045-4ef2-8189-5c76ed57b80f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 11.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "d3f661d6-cd69-4711-9538-a6ae9d198625", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "d3f661d6-cd69-4711-9538-a6ae9d198625", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 11.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 11.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "11497673-a045-4ef2-8189-5c76ed57b80f", + "Name": null + }, + "5368af83-25ec-4fe8-90a6-4a59feee1dca": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5368af83-25ec-4fe8-90a6-4a59feee1dca", + "Name": null + }, + "7c177cfe-558c-471e-89d3-48640dd3c040": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 13.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5368af83-25ec-4fe8-90a6-4a59feee1dca", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5368af83-25ec-4fe8-90a6-4a59feee1dca", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 13.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 13.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7c177cfe-558c-471e-89d3-48640dd3c040", + "Name": null + }, + "c53979b0-1e96-4392-bd17-c3fb700c5139": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c53979b0-1e96-4392-bd17-c3fb700c5139", + "Name": null + }, + "4b105f2a-fbea-4bda-a46c-732db0abf35b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 14.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c53979b0-1e96-4392-bd17-c3fb700c5139", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c53979b0-1e96-4392-bd17-c3fb700c5139", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 14.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4b105f2a-fbea-4bda-a46c-732db0abf35b", + "Name": null + }, + "95850dd9-34fc-452e-a377-ffffa110e6aa": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "95850dd9-34fc-452e-a377-ffffa110e6aa", + "Name": null + }, + "117e1e0a-81ab-43d6-ba70-5c1841bbf3d5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "95850dd9-34fc-452e-a377-ffffa110e6aa", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "95850dd9-34fc-452e-a377-ffffa110e6aa", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "117e1e0a-81ab-43d6-ba70-5c1841bbf3d5", + "Name": null + }, + "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7", + "Name": null + }, + "2cf5618f-3db7-46e0-bb4e-f66f6a4456f7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 17.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "e4a8d36e-1d20-4c8a-9ff4-33fad9e02af7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 17.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2cf5618f-3db7-46e0-bb4e-f66f6a4456f7", + "Name": null + }, + "82241029-8458-4e39-ae2a-ea929600d34b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "82241029-8458-4e39-ae2a-ea929600d34b", + "Name": null + }, + "6b41dbbb-b702-4dbe-8a58-a90bbfe946d4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 19.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "82241029-8458-4e39-ae2a-ea929600d34b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "82241029-8458-4e39-ae2a-ea929600d34b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 19.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6b41dbbb-b702-4dbe-8a58-a90bbfe946d4", + "Name": null + }, + "e27c94ef-98eb-4164-824b-fd425dd621e7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "e27c94ef-98eb-4164-824b-fd425dd621e7", + "Name": null + }, + "73ce5d53-22ed-4e8e-aa8c-af8f40697e4f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 20.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "e27c94ef-98eb-4164-824b-fd425dd621e7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "e27c94ef-98eb-4164-824b-fd425dd621e7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 20.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 20.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "73ce5d53-22ed-4e8e-aa8c-af8f40697e4f", + "Name": null + }, + "53715e85-82b0-4eeb-8630-6df8ab63ce63": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "53715e85-82b0-4eeb-8630-6df8ab63ce63", + "Name": null + }, + "4359b28c-320f-492e-acf7-7715ffae6c1e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 22.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "53715e85-82b0-4eeb-8630-6df8ab63ce63", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "53715e85-82b0-4eeb-8630-6df8ab63ce63", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 22.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4359b28c-320f-492e-acf7-7715ffae6c1e", + "Name": null + }, + "10a2ff40-5964-49ee-8467-2d7009918d19": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "10a2ff40-5964-49ee-8467-2d7009918d19", + "Name": null + }, + "9990420b-c525-4a06-b764-2871a76cf02f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 23.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "10a2ff40-5964-49ee-8467-2d7009918d19", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "10a2ff40-5964-49ee-8467-2d7009918d19", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 23.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9990420b-c525-4a06-b764-2871a76cf02f", + "Name": null + }, + "c7a838fc-0027-4b73-b7f2-9c871af30c88": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c7a838fc-0027-4b73-b7f2-9c871af30c88", + "Name": null + }, + "c43d2cc3-0831-463b-89c7-18cf855287f5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 25.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c7a838fc-0027-4b73-b7f2-9c871af30c88", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c7a838fc-0027-4b73-b7f2-9c871af30c88", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 25.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 25.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c43d2cc3-0831-463b-89c7-18cf855287f5", + "Name": null + }, + "7160f15b-b545-4f63-8eed-92e1084d6790": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7160f15b-b545-4f63-8eed-92e1084d6790", + "Name": null + }, + "49605b00-caed-41dd-9307-d41da97301d6": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 26.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7160f15b-b545-4f63-8eed-92e1084d6790", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7160f15b-b545-4f63-8eed-92e1084d6790", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.5, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 26.5, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "49605b00-caed-41dd-9307-d41da97301d6", + "Name": null + }, + "df9196e3-81d7-4493-aea4-c9aadb27a367": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "df9196e3-81d7-4493-aea4-c9aadb27a367", + "Name": null + }, + "c0e83a06-514e-4977-baaa-6826bc32176b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 28.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "df9196e3-81d7-4493-aea4-c9aadb27a367", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "df9196e3-81d7-4493-aea4-c9aadb27a367", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 28.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 28.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "c0e83a06-514e-4977-baaa-6826bc32176b", + "Name": null + }, + "ed90c76d-3289-43d9-a5a4-4108fb2bf580": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ed90c76d-3289-43d9-a5a4-4108fb2bf580", + "Name": null + }, + "a35bad36-7158-4d40-9889-3c0bc35865c2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed90c76d-3289-43d9-a5a4-4108fb2bf580", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed90c76d-3289-43d9-a5a4-4108fb2bf580", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a35bad36-7158-4d40-9889-3c0bc35865c2", + "Name": null + }, + "93730af0-e5c6-472f-aba2-f85e640f75f9": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 1.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + { + "X": 1.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "93730af0-e5c6-472f-aba2-f85e640f75f9", + "Name": null + }, + "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e", + "Name": null + }, + "a8dd846a-2bf4-460b-91da-6c901e025b1f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2c6dfe4d-a7e7-471d-b4bb-ec7415a1db2e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "a8dd846a-2bf4-460b-91da-6c901e025b1f", + "Name": null + }, + "8df87452-9217-4b1e-9e14-bfad1cb07683": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8df87452-9217-4b1e-9e14-bfad1cb07683", + "Name": null + }, + "f4d47d59-5d40-4305-af36-4cd9ff7d3287": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8df87452-9217-4b1e-9e14-bfad1cb07683", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8df87452-9217-4b1e-9e14-bfad1cb07683", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 2.25 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 2.25 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f4d47d59-5d40-4305-af36-4cd9ff7d3287", + "Name": null + }, + "58048ca5-5a02-4229-80a1-dedba924f62e": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "58048ca5-5a02-4229-80a1-dedba924f62e", + "Name": null + }, + "8cf556ee-e388-494b-8255-fb30af6248d3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "58048ca5-5a02-4229-80a1-dedba924f62e", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "58048ca5-5a02-4229-80a1-dedba924f62e", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "8cf556ee-e388-494b-8255-fb30af6248d3", + "Name": null + }, + "c577c06a-14cb-445d-a7ec-b7373a056ba7": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c577c06a-14cb-445d-a7ec-b7373a056ba7", + "Name": null + }, + "3873f57c-5d72-4809-9b1e-6ffe00535479": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c577c06a-14cb-445d-a7ec-b7373a056ba7", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c577c06a-14cb-445d-a7ec-b7373a056ba7", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3873f57c-5d72-4809-9b1e-6ffe00535479", + "Name": null + }, + "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a", + "Name": null + }, + "7c73ab0b-ee3d-420c-9abf-16482b99c6f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -57.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -57.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c549e12a-5ed7-4d85-b3dd-8cfdfbfd5e1a", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -57.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -57.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7c73ab0b-ee3d-420c-9abf-16482b99c6f0", + "Name": null + }, + "6489090a-fca7-4814-a3b4-c1a1d1aa3a14": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "6489090a-fca7-4814-a3b4-c1a1d1aa3a14", + "Name": null + }, + "d390dfb3-ec3f-4a1b-83ce-005d79a56ee2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -56.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "6489090a-fca7-4814-a3b4-c1a1d1aa3a14", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "6489090a-fca7-4814-a3b4-c1a1d1aa3a14", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -56.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -56.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "d390dfb3-ec3f-4a1b-83ce-005d79a56ee2", + "Name": null + }, + "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509", + "Name": null + }, + "3113083a-ec22-4cdb-813c-46ba0ddee0f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -54.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -54.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "5ae417e7-7aa9-44ea-b25e-5c2ac7c4a509", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -54.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -54.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "3113083a-ec22-4cdb-813c-46ba0ddee0f0", + "Name": null + }, + "ab1c0293-4c44-485a-af60-18c6de3b3c93": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ab1c0293-4c44-485a-af60-18c6de3b3c93", + "Name": null + }, + "cbc806c9-3cf8-476e-88c2-663a81447292": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -53.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ab1c0293-4c44-485a-af60-18c6de3b3c93", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ab1c0293-4c44-485a-af60-18c6de3b3c93", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -53.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -53.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "cbc806c9-3cf8-476e-88c2-663a81447292", + "Name": null + }, + "f2336244-8645-4d29-a733-27c3b432340b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "f2336244-8645-4d29-a733-27c3b432340b", + "Name": null + }, + "f74c61e1-593d-41a9-b902-2eefaf5043d5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -51.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -51.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "f2336244-8645-4d29-a733-27c3b432340b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "f2336244-8645-4d29-a733-27c3b432340b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -51.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -51.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "f74c61e1-593d-41a9-b902-2eefaf5043d5", + "Name": null + }, + "ecc9f632-802e-4d91-9e93-f73497c2536f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ecc9f632-802e-4d91-9e93-f73497c2536f", + "Name": null + }, + "dae1804b-4e2a-4701-beb7-e01855726650": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ecc9f632-802e-4d91-9e93-f73497c2536f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ecc9f632-802e-4d91-9e93-f73497c2536f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "dae1804b-4e2a-4701-beb7-e01855726650", + "Name": null + }, + "ab3fa574-e372-42a5-8a21-8cc938daae0b": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ab3fa574-e372-42a5-8a21-8cc938daae0b", + "Name": null + }, + "0327459b-b744-423a-9136-b7a7d7ae23c3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -48.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -48.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ab3fa574-e372-42a5-8a21-8cc938daae0b", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ab3fa574-e372-42a5-8a21-8cc938daae0b", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -48.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -48.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "0327459b-b744-423a-9136-b7a7d7ae23c3", + "Name": null + }, + "8c3388cc-12ba-4439-b477-fab180860567": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8c3388cc-12ba-4439-b477-fab180860567", + "Name": null + }, + "7d557a36-d258-4bf3-b094-dee285d7f867": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -47.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8c3388cc-12ba-4439-b477-fab180860567", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8c3388cc-12ba-4439-b477-fab180860567", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -47.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -47.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "7d557a36-d258-4bf3-b094-dee285d7f867", + "Name": null + }, + "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415", + "Name": null + }, + "5e56674b-3a97-4966-8ef7-814eab3c02d0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -45.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -45.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "eba1cd5f-4fc6-4aba-9f79-ef5625c0b415", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -45.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -45.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "5e56674b-3a97-4966-8ef7-814eab3c02d0", + "Name": null + }, + "8eacceda-08e7-419d-92cd-955ee2e32547": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "8eacceda-08e7-419d-92cd-955ee2e32547", + "Name": null + }, + "b2db9cfe-92a4-406e-a664-0647f8ccca30": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -44.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "8eacceda-08e7-419d-92cd-955ee2e32547", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "8eacceda-08e7-419d-92cd-955ee2e32547", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -44.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -44.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b2db9cfe-92a4-406e-a664-0647f8ccca30", + "Name": null + }, + "844c36b4-cedf-4e94-88a6-df931c6f52d0": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "844c36b4-cedf-4e94-88a6-df931c6f52d0", + "Name": null + }, + "4fe8e40e-860a-45c7-9bb6-4f6eef8287f0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -42.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -42.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "844c36b4-cedf-4e94-88a6-df931c6f52d0", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "844c36b4-cedf-4e94-88a6-df931c6f52d0", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -42.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -42.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "4fe8e40e-860a-45c7-9bb6-4f6eef8287f0", + "Name": null + }, + "0ae51050-f7e4-4fa5-8a45-3c28df241143": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "0ae51050-f7e4-4fa5-8a45-3c28df241143", + "Name": null + }, + "febf34e0-2342-4073-a959-da6ecc62c484": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -41.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "0ae51050-f7e4-4fa5-8a45-3c28df241143", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "0ae51050-f7e4-4fa5-8a45-3c28df241143", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -41.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -41.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "febf34e0-2342-4073-a959-da6ecc62c484", + "Name": null + }, + "c1b3f3c9-0e76-496a-8d4a-61f76f40a747": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "c1b3f3c9-0e76-496a-8d4a-61f76f40a747", + "Name": null + }, + "2a9e554b-ab84-4ef4-8c9b-6aff65b02193": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -39.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -39.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "c1b3f3c9-0e76-496a-8d4a-61f76f40a747", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "c1b3f3c9-0e76-496a-8d4a-61f76f40a747", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -39.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -39.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2a9e554b-ab84-4ef4-8c9b-6aff65b02193", + "Name": null + }, + "a988a85c-758b-4860-9b98-fdcc7aeec592": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "a988a85c-758b-4860-9b98-fdcc7aeec592", + "Name": null + }, + "2e64a3bf-3234-490b-8ed2-d22862ba33c3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -38.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "a988a85c-758b-4860-9b98-fdcc7aeec592", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "a988a85c-758b-4860-9b98-fdcc7aeec592", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -38.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -38.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "2e64a3bf-3234-490b-8ed2-d22862ba33c3", + "Name": null + }, + "fec977a4-d81f-4e13-8f0d-4992a97aaec2": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "fec977a4-d81f-4e13-8f0d-4992a97aaec2", + "Name": null + }, + "6b194a90-ac4c-4f89-81f2-7eec26a259d9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -36.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -36.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "fec977a4-d81f-4e13-8f0d-4992a97aaec2", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "fec977a4-d81f-4e13-8f0d-4992a97aaec2", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -36.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -36.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "6b194a90-ac4c-4f89-81f2-7eec26a259d9", + "Name": null + }, + "7e68f498-5590-41cc-839a-3b76b826d59f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "7e68f498-5590-41cc-839a-3b76b826d59f", + "Name": null + }, + "9cf64079-cdef-40c9-9e1d-71001ecef6ba": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "7e68f498-5590-41cc-839a-3b76b826d59f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "7e68f498-5590-41cc-839a-3b76b826d59f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "9cf64079-cdef-40c9-9e1d-71001ecef6ba", + "Name": null + }, + "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f", + "Name": null + }, + "53125eae-8b92-47f2-b888-db1a08d26614": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -33.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -33.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "b7c20ef3-5a4b-4c63-9af3-7a20101ff27f", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -33.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -33.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "53125eae-8b92-47f2-b888-db1a08d26614", + "Name": null + }, + "2e220695-f858-451a-996c-88813b2e4d4c": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "2e220695-f858-451a-996c-88813b2e4d4c", + "Name": null + }, + "19eed878-5722-45e9-968f-bdc5ef1705b7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -32.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "2e220695-f858-451a-996c-88813b2e4d4c", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "2e220695-f858-451a-996c-88813b2e4d4c", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -32.0, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -32.0, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "19eed878-5722-45e9-968f-bdc5ef1705b7", + "Name": null + }, + "67949bc5-fc6c-4e03-b48e-750d673b3b45": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "67949bc5-fc6c-4e03-b48e-750d673b3b45", + "Name": null + }, + "b04741a8-8d75-4a20-9a02-713c7c9d5961": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "67949bc5-fc6c-4e03-b48e-750d673b3b45", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "67949bc5-fc6c-4e03-b48e-750d673b3b45", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.5, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.5, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "b04741a8-8d75-4a20-9a02-713c7c9d5961", + "Name": null + }, + "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6": { + "discriminator": "Elements.Geometry.Profile", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": -0.025, + "Z": 0.0 + }, + { + "X": 0.025, + "Y": 0.025, + "Z": 0.0 + }, + { + "X": -0.025, + "Y": 0.025, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6", + "Name": null + }, + "71f9813c-15b2-4996-b966-d66fa6c5e1d7": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "7298d643-9049-4a2b-960d-ae775b50fd80", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ffe72ae0-dd3f-4a1a-8a2a-135a997a2ef6", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + "End": { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "71f9813c-15b2-4996-b966-d66fa6c5e1d7", + "Name": null + }, + "30479846-1e9d-4b13-98d0-ebc246e3e47d": { + "discriminator": "Elements.Panel", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "28c5c2b1-d65c-4c46-8689-d651f50f07e7", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Lamina", + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": 29.0, + "Y": -59.0, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 0.0 + }, + { + "X": 29.0, + "Y": -30.30278, + "Z": 4.5 + }, + { + "X": 29.0, + "Y": -59.0, + "Z": 4.5 + } + ] + }, + "Voids": [], + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": false, + "Id": "30479846-1e9d-4b13-98d0-ebc246e3e47d", + "Name": null + }, + "d0679ff9-51db-44d0-9743-3ae8c814face": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.5, + "Green": 0.5, + "Blue": 0.5, + "Alpha": 1.0 + }, + "SpecularFactor": 0.5, + "GlossinessFactor": 0.3, + "Unlit": false, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Name": "Steel" + }, + "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36": { + "discriminator": "Elements.Material", + "Color": { + "Red": 0.0, + "Green": 0.0, + "Blue": 1.0, + "Alpha": 1.0 + }, + "SpecularFactor": 0.10000000149011612, + "GlossinessFactor": 0.10000000149011612, + "Unlit": true, + "DoubleSided": false, + "RepeatTexture": true, + "InterpolateTexture": true, + "Id": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Name": "Z" + }, + "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151": { + "discriminator": "Elements.Geometry.Profiles.WideFlangeProfile", + "d": 0.45465999999999995, + "tw": 0.008001, + "bf": 0.152908, + "tf": 0.013335, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.076454, + "Y": -0.1254, + "Z": 0.0 + }, + { + "X": -0.076454, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": -0.0040005, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": -0.0040005, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": -0.076454, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": -0.076454, + "Y": -0.58006, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.58006, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": 0.0040005, + "Y": -0.5667249999999999, + "Z": 0.0 + }, + { + "X": 0.0040005, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.138735, + "Z": 0.0 + }, + { + "X": 0.076454, + "Y": -0.1254, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Name": "W18x40" + }, + "1f248147-be87-4d6a-922b-e7bf05d5f27e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Name": "W18x40" + }, + "e3cd3000-5e61-43c0-a010-a6757408d2ac": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Name": "W18x40" + }, + "c9699dd2-d040-4a2c-ad98-36443b0d037a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Name": "W18x40" + }, + "442ea777-71e8-42e2-a88c-d741cce24ce5": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.408326913195984, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.408326913195984, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Name": "W18x40" + }, + "edad7470-dae0-4697-a2aa-8adc95f4440a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 7.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Name": "W18x40" + }, + "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Name": "W18x40" + }, + "e5972626-f896-4b80-b62f-fa93a8846507": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.09859999999999935, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.09859999999999935, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e5972626-f896-4b80-b62f-fa93a8846507", + "Name": "W18x40" + }, + "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.06574000000000169, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.06574000000000169, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Name": "W18x40" + }, + "4dc79d1f-76cc-4eac-ba1d-90c0929442e9": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.11850615005137959, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.11850615005137959, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Name": "W18x40" + }, + "39b28bf6-91db-4c72-b448-44bed8dc6bc0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.890749673853066, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.890749673853066, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Name": "W18x40" + }, + "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Name": "W18x40" + }, + "0b85760d-9483-48e4-99ef-f0158063192f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.3990599999999986, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.3990599999999986, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0b85760d-9483-48e4-99ef-f0158063192f", + "Name": "W18x40" + }, + "2d8372e3-18d6-43f5-b8a6-ca8af44199e8": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009244729780939, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009244729780939, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Name": "W18x40" + }, + "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.732399999999998, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.732399999999998, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Name": "W18x40" + }, + "f1f4efee-0d74-4a09-8341-e6127bd83748": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009255823777184, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.009255823777184, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Name": "W18x40" + }, + "d4da724b-0d2f-4bd3-acf2-5d3697adf278": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.598600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.598600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Name": "W18x40" + }, + "b110d957-b9da-4137-9c21-3ec50b79b33e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.0657400000000017, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 3.0657400000000017, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Name": "W18x40" + }, + "e0c50391-a50c-417e-a648-1d8139e40aa4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.5268330631203275, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.5268330631203275, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Name": "W18x40" + }, + "3bf2c337-826f-4c12-b4d9-a345602f7c71": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.48242276065708173, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.48242276065708173, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Name": "W18x40" + }, + "9b7bdf59-55a7-4daf-9c50-86da88398d8a": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.399059999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.399059999999999, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Name": "W18x40" + }, + "34bbf385-46d3-47bf-83a0-3a400bd05173": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.18196385245427163, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 0.18196385245427163, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Name": "W18x40" + }, + "bbfc5b0f-cc29-4045-91bf-821e7813de86": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 6.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Name": "W18x40" + }, + "2984e71a-f669-4201-8e3b-e26ab9529910": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.848600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ed29a1bb-f75f-4df0-8bb8-21ed3ecfa151", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.848600000000001, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Name": "W18x40" + }, + "ae17b256-3a91-41c9-b812-a732b948db41": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ae17b256-3a91-41c9-b812-a732b948db41", + "Name": "W18x40", + "EdgeId": 5, + "ExternalEdgeId": 5 + }, + "82cbeaef-d3df-4277-80d6-2690654b1c05": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "82cbeaef-d3df-4277-80d6-2690654b1c05", + "Name": null + }, + "b1f59156-7366-4c12-9ed9-6fe976dba558": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b1f59156-7366-4c12-9ed9-6fe976dba558", + "Name": "W18x40", + "EdgeId": 6 + }, + "cfbd5350-0d10-43ce-b63c-9d9c38caa4dc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfbd5350-0d10-43ce-b63c-9d9c38caa4dc", + "Name": null + }, + "c561276f-cf9b-481a-81ad-93acecd17b23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c561276f-cf9b-481a-81ad-93acecd17b23", + "Name": "W18x40", + "EdgeId": 7 + }, + "753f627d-b9d1-4c55-b3cb-6ee8584fc1c4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "753f627d-b9d1-4c55-b3cb-6ee8584fc1c4", + "Name": null + }, + "31e4920c-a82d-4dc1-a3ab-5adb5ba9ff3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "31e4920c-a82d-4dc1-a3ab-5adb5ba9ff3b", + "Name": "W18x40", + "EdgeId": 8, + "ExternalEdgeId": 8 + }, + "877ba8f8-2136-413e-9809-ff6187e71bfe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "877ba8f8-2136-413e-9809-ff6187e71bfe", + "Name": null + }, + "b3833bc9-d208-41dc-b000-609e389a8291": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b3833bc9-d208-41dc-b000-609e389a8291", + "Name": "W18x40", + "EdgeId": 16, + "ExternalEdgeId": 16 + }, + "d255fd5c-04f5-4027-976a-141e72bba131": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d255fd5c-04f5-4027-976a-141e72bba131", + "Name": null + }, + "c8aececb-18c8-4823-ba46-4b0d519535de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c8aececb-18c8-4823-ba46-4b0d519535de", + "Name": "W18x40", + "EdgeId": 17 + }, + "41256acb-0d1b-4b7c-9cc3-fa2611f2adde": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41256acb-0d1b-4b7c-9cc3-fa2611f2adde", + "Name": null + }, + "466ad02b-076d-487c-af32-38e1f683bce2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "466ad02b-076d-487c-af32-38e1f683bce2", + "Name": "W18x40", + "EdgeId": 18 + }, + "10595b28-3506-44e5-9c50-30c36abfffea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10595b28-3506-44e5-9c50-30c36abfffea", + "Name": null + }, + "a6070242-e5ee-4d3f-961c-5efee9e4d87a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a6070242-e5ee-4d3f-961c-5efee9e4d87a", + "Name": "W18x40", + "EdgeId": 24, + "ExternalEdgeId": 24 + }, + "6e332766-3823-49ef-9e09-023624f445f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e332766-3823-49ef-9e09-023624f445f5", + "Name": null + }, + "97132164-947a-4bf8-bd7b-d1ad761938ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "97132164-947a-4bf8-bd7b-d1ad761938ef", + "Name": "W18x40", + "EdgeId": 25, + "ExternalEdgeId": 25 + }, + "ff688718-5b9e-4473-b14b-87a77ef9fa7b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ff688718-5b9e-4473-b14b-87a77ef9fa7b", + "Name": null + }, + "b7cca279-36ad-44b6-9905-051a28e63e69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b7cca279-36ad-44b6-9905-051a28e63e69", + "Name": "W18x40", + "EdgeId": 26 + }, + "37a98013-68f7-4a72-8ed9-ee922b09017b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "37a98013-68f7-4a72-8ed9-ee922b09017b", + "Name": null + }, + "e3d693f8-6171-497c-8038-f4d0035f1e4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e3d693f8-6171-497c-8038-f4d0035f1e4e", + "Name": "W18x40", + "EdgeId": 32 + }, + "c73c0800-487b-4a98-8fb1-92c3e1e615ee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c73c0800-487b-4a98-8fb1-92c3e1e615ee", + "Name": null + }, + "92b851c6-b096-406d-821f-799e727c0cc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "92b851c6-b096-406d-821f-799e727c0cc0", + "Name": "W18x40", + "EdgeId": 33 + }, + "a9f3cc05-0956-4d74-b2ae-ab855a40614c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a9f3cc05-0956-4d74-b2ae-ab855a40614c", + "Name": null + }, + "39e05e73-5819-4487-ab9d-7f65bc2eec6e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "39e05e73-5819-4487-ab9d-7f65bc2eec6e", + "Name": "W18x40", + "EdgeId": 34, + "ExternalEdgeId": 34 + }, + "2eb33d03-229f-44d6-b651-3e115a3895cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 0.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2eb33d03-229f-44d6-b651-3e115a3895cd", + "Name": null + }, + "1e006143-11ee-4e87-b178-d979565d0b3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1e006143-11ee-4e87-b178-d979565d0b3a", + "Name": "W18x40", + "EdgeId": 41, + "ExternalEdgeId": 41 + }, + "9acdad82-edfc-428f-ac09-ea6d3bc22518": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9acdad82-edfc-428f-ac09-ea6d3bc22518", + "Name": null + }, + "e4468727-72c6-4e95-9340-2ea4f16092da": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e4468727-72c6-4e95-9340-2ea4f16092da", + "Name": "W18x40", + "EdgeId": 42 + }, + "f3baf7cb-f24d-4cb8-be12-9bc0901ee832": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f3baf7cb-f24d-4cb8-be12-9bc0901ee832", + "Name": null + }, + "8a02c5bb-287e-4cc6-a8a9-65b4ea10b2ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8a02c5bb-287e-4cc6-a8a9-65b4ea10b2ef", + "Name": "W18x40", + "EdgeId": 43 + }, + "2b5a6655-46b7-471a-b200-3b5212821674": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b5a6655-46b7-471a-b200-3b5212821674", + "Name": null + }, + "ec5e2769-91a2-4c5d-9c51-ca1965c7bd16": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec5e2769-91a2-4c5d-9c51-ca1965c7bd16", + "Name": "W18x40", + "EdgeId": 47 + }, + "cc444e69-3fef-4829-b15f-d96481d23430": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc444e69-3fef-4829-b15f-d96481d23430", + "Name": null + }, + "a9475a27-ff48-4320-87a5-a4356568df4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a9475a27-ff48-4320-87a5-a4356568df4b", + "Name": "W18x40", + "EdgeId": 48 + }, + "ebd81fb1-ec36-4d7f-a2e3-bad8555dfc97": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ebd81fb1-ec36-4d7f-a2e3-bad8555dfc97", + "Name": null + }, + "b49b476f-0728-4dfb-bf8c-3b801f66251a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b49b476f-0728-4dfb-bf8c-3b801f66251a", + "Name": "W18x40", + "EdgeId": 52, + "ExternalEdgeId": 52 + }, + "168c09dc-e2ba-47a4-b7b5-cb3e8dd542b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "168c09dc-e2ba-47a4-b7b5-cb3e8dd542b3", + "Name": null + }, + "1cfb46f7-63b4-43b0-b104-79dfaabc963b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1cfb46f7-63b4-43b0-b104-79dfaabc963b", + "Name": "W18x40", + "EdgeId": 53 + }, + "5608a27d-0f01-4c80-b161-c54662595932": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5608a27d-0f01-4c80-b161-c54662595932", + "Name": null + }, + "29c93ade-ace5-4fbe-88fa-d3a6061c388b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "29c93ade-ace5-4fbe-88fa-d3a6061c388b", + "Name": "W18x40", + "EdgeId": 58 + }, + "e4b51bce-581a-4b7b-a35e-e943b7c2144d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4b51bce-581a-4b7b-a35e-e943b7c2144d", + "Name": null + }, + "4625c2ce-39df-4173-ae2d-b393e079f119": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4625c2ce-39df-4173-ae2d-b393e079f119", + "Name": "W18x40", + "EdgeId": 59 + }, + "4e1b3209-6273-44d5-8900-75a71724d698": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e1b3209-6273-44d5-8900-75a71724d698", + "Name": null + }, + "f9cffb1b-0da5-481c-b77e-849634352a77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f9cffb1b-0da5-481c-b77e-849634352a77", + "Name": "W18x40", + "EdgeId": 60, + "ExternalEdgeId": 60 + }, + "621ecd7d-9d31-428e-b432-24b910e8fc53": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "621ecd7d-9d31-428e-b432-24b910e8fc53", + "Name": null + }, + "226e428e-5844-4099-934c-c761c5029249": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "226e428e-5844-4099-934c-c761c5029249", + "Name": "W18x40", + "EdgeId": 65 + }, + "4e2d3230-d888-4514-824a-3b4523c18f13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e2d3230-d888-4514-824a-3b4523c18f13", + "Name": null + }, + "2daa57de-4f29-493b-8ecc-1a57c56e3ba1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2daa57de-4f29-493b-8ecc-1a57c56e3ba1", + "Name": "W18x40", + "EdgeId": 66 + }, + "0daa255c-a59c-456b-9134-01df740622b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0daa255c-a59c-456b-9134-01df740622b6", + "Name": null + }, + "340a59ac-f7c0-4f16-afe9-316a6c9c39b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "340a59ac-f7c0-4f16-afe9-316a6c9c39b7", + "Name": "W18x40", + "EdgeId": 70 + }, + "5b664155-fdb4-49cb-a10d-125580438eee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b664155-fdb4-49cb-a10d-125580438eee", + "Name": null + }, + "d7891b32-e863-43d0-a5ff-bfe2e8385839": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d7891b32-e863-43d0-a5ff-bfe2e8385839", + "Name": "W18x40", + "EdgeId": 71 + }, + "8dd0de28-dd71-412e-a94a-2e3ad8c91a48": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8dd0de28-dd71-412e-a94a-2e3ad8c91a48", + "Name": null + }, + "f9e1b96a-32d7-4f7d-9e2d-3ff0de635348": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f9e1b96a-32d7-4f7d-9e2d-3ff0de635348", + "Name": "W18x40", + "EdgeId": 75, + "ExternalEdgeId": 75 + }, + "14634e11-1ae6-4b2b-91db-4443ea657d96": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14634e11-1ae6-4b2b-91db-4443ea657d96", + "Name": null + }, + "d78784a4-d29d-4724-ad9e-f0d0c4356c4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d78784a4-d29d-4724-ad9e-f0d0c4356c4c", + "Name": "W18x40", + "EdgeId": 76 + }, + "29d9b80a-b9ae-49fd-917e-12a075ccc9e1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "29d9b80a-b9ae-49fd-917e-12a075ccc9e1", + "Name": null + }, + "f23036c8-9449-4e50-83e0-e776ea5edd62": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f23036c8-9449-4e50-83e0-e776ea5edd62", + "Name": "W18x40", + "EdgeId": 81 + }, + "60eb3957-3a8b-458e-b99e-6c50df3c41a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "60eb3957-3a8b-458e-b99e-6c50df3c41a6", + "Name": null + }, + "cec114d5-e4d6-454f-9b34-a57d4a79e47e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cec114d5-e4d6-454f-9b34-a57d4a79e47e", + "Name": "W18x40", + "EdgeId": 82 + }, + "d9578b9b-c652-4266-a0fd-eb07654736b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9578b9b-c652-4266-a0fd-eb07654736b6", + "Name": null + }, + "f59dbd27-9bde-4cfe-8761-09f55dc5ac0d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f59dbd27-9bde-4cfe-8761-09f55dc5ac0d", + "Name": "W18x40", + "EdgeId": 83, + "ExternalEdgeId": 83 + }, + "ae45d0c8-1906-4c70-bb93-c32d9466ddc4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae45d0c8-1906-4c70-bb93-c32d9466ddc4", + "Name": null + }, + "a9dc5e6a-97c9-4c44-a00a-f92205bfcadd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a9dc5e6a-97c9-4c44-a00a-f92205bfcadd", + "Name": "W18x40", + "EdgeId": 88 + }, + "8e7912fe-7b3a-471f-ab34-64bf9ec274e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8e7912fe-7b3a-471f-ab34-64bf9ec274e6", + "Name": null + }, + "6013df4e-bede-4a41-ad39-05a61f6c79ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6013df4e-bede-4a41-ad39-05a61f6c79ff", + "Name": "W18x40", + "EdgeId": 89 + }, + "4f6a8b84-6e6e-4670-bf2d-d6c05ff49b19": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f6a8b84-6e6e-4670-bf2d-d6c05ff49b19", + "Name": null + }, + "699e7aa7-8ac3-4131-93f8-238c84378764": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "699e7aa7-8ac3-4131-93f8-238c84378764", + "Name": "W18x40", + "EdgeId": 93 + }, + "bc811a61-40c9-45f7-a21e-06f541b95670": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bc811a61-40c9-45f7-a21e-06f541b95670", + "Name": null + }, + "51d36270-886e-4f9d-859f-d82e4b5dee53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "51d36270-886e-4f9d-859f-d82e4b5dee53", + "Name": "W18x40", + "EdgeId": 94 + }, + "f49c573e-fc3d-488f-8d50-8ebd1aee2074": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f49c573e-fc3d-488f-8d50-8ebd1aee2074", + "Name": null + }, + "9a1c5df6-ac81-4698-9004-3efe13e37b47": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9a1c5df6-ac81-4698-9004-3efe13e37b47", + "Name": "W18x40", + "EdgeId": 98, + "ExternalEdgeId": 98 + }, + "c0c93675-73aa-4281-a31e-6e0da3bcafa1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0c93675-73aa-4281-a31e-6e0da3bcafa1", + "Name": null + }, + "d997ae53-2842-436a-8686-49634a26f17e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d997ae53-2842-436a-8686-49634a26f17e", + "Name": "W18x40", + "EdgeId": 99 + }, + "228df31a-7ece-46e0-ae50-8eb9c1b21c51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "228df31a-7ece-46e0-ae50-8eb9c1b21c51", + "Name": null + }, + "20e54c91-a655-4be8-9671-4d5462e74320": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "20e54c91-a655-4be8-9671-4d5462e74320", + "Name": "W18x40", + "EdgeId": 104 + }, + "86529516-d2f5-4df4-8d6b-d51c8b940ed8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "86529516-d2f5-4df4-8d6b-d51c8b940ed8", + "Name": null + }, + "547eaa00-10da-4755-8fa0-48d58e01685f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "547eaa00-10da-4755-8fa0-48d58e01685f", + "Name": "W18x40", + "EdgeId": 105 + }, + "96a2943d-8b62-40de-9217-89c0c36ea25a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "96a2943d-8b62-40de-9217-89c0c36ea25a", + "Name": null + }, + "e02ec524-729b-4f92-b280-72484287779c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e02ec524-729b-4f92-b280-72484287779c", + "Name": "W18x40", + "EdgeId": 106, + "ExternalEdgeId": 106 + }, + "c2d1b78f-54f3-41f4-a9a3-40db314d57af": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 0.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c2d1b78f-54f3-41f4-a9a3-40db314d57af", + "Name": null + }, + "0ea3c452-bb63-4e86-9d01-d649e69bc608": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0ea3c452-bb63-4e86-9d01-d649e69bc608", + "Name": "W18x40", + "EdgeId": 113, + "ExternalEdgeId": 113 + }, + "5766748d-7453-43d3-b6af-05d0badf27a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5766748d-7453-43d3-b6af-05d0badf27a9", + "Name": null + }, + "7a705425-2382-4657-9852-4c3d323af2a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7a705425-2382-4657-9852-4c3d323af2a5", + "Name": "W18x40", + "EdgeId": 114 + }, + "20b42428-92dd-4175-be10-b972fc1a36ec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20b42428-92dd-4175-be10-b972fc1a36ec", + "Name": null + }, + "eb853b1e-b0ad-4842-a019-5a86ecba0abb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb853b1e-b0ad-4842-a019-5a86ecba0abb", + "Name": "W18x40", + "EdgeId": 115 + }, + "13cc1eea-637f-4be4-8bbf-4cc0a9ff8b8e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "13cc1eea-637f-4be4-8bbf-4cc0a9ff8b8e", + "Name": null + }, + "352550ee-0419-4677-93da-e17b83e458f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "352550ee-0419-4677-93da-e17b83e458f5", + "Name": "W18x40", + "EdgeId": 119 + }, + "172658a4-8e3d-41ca-bcd0-8502d4a69581": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "172658a4-8e3d-41ca-bcd0-8502d4a69581", + "Name": null + }, + "0cf4265c-2002-492d-8150-79472ec80f7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0cf4265c-2002-492d-8150-79472ec80f7c", + "Name": "W18x40", + "EdgeId": 120 + }, + "12353ffe-2c8b-4194-8079-d99389388383": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12353ffe-2c8b-4194-8079-d99389388383", + "Name": null + }, + "0207f7ff-a77e-41b8-93a2-adcd79f75719": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0207f7ff-a77e-41b8-93a2-adcd79f75719", + "Name": "W18x40", + "EdgeId": 124 + }, + "55ba5899-ce79-4ef3-8d8c-13795c0eb896": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55ba5899-ce79-4ef3-8d8c-13795c0eb896", + "Name": null + }, + "dd68a031-f7b3-4a22-8442-1f2af9f15842": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dd68a031-f7b3-4a22-8442-1f2af9f15842", + "Name": "W18x40", + "EdgeId": 125 + }, + "3e83e411-07fd-40d4-93a4-0b3391c11758": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3e83e411-07fd-40d4-93a4-0b3391c11758", + "Name": null + }, + "00f83664-313a-45ac-856c-45f7582a0779": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "00f83664-313a-45ac-856c-45f7582a0779", + "Name": "W18x40", + "EdgeId": 129, + "ExternalEdgeId": 129 + }, + "27ab68b9-2150-436b-afff-908c6cdad629": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "27ab68b9-2150-436b-afff-908c6cdad629", + "Name": null + }, + "9bb72b77-ce9a-4ad6-a3e4-453ace4dddcf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9bb72b77-ce9a-4ad6-a3e4-453ace4dddcf", + "Name": "W18x40", + "EdgeId": 130 + }, + "eb6394b6-c2b0-46f3-8a92-7a0161b83654": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eb6394b6-c2b0-46f3-8a92-7a0161b83654", + "Name": null + }, + "80db92c8-c919-475b-9184-d25b4a000538": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80db92c8-c919-475b-9184-d25b4a000538", + "Name": "W18x40", + "EdgeId": 135 + }, + "0b6aaf8b-c7e3-47b5-a816-569c02f1bc79": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b6aaf8b-c7e3-47b5-a816-569c02f1bc79", + "Name": null + }, + "6f0191a8-0e95-49e0-9e33-061a64129074": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6f0191a8-0e95-49e0-9e33-061a64129074", + "Name": "W18x40", + "EdgeId": 136 + }, + "25cd25be-43f9-4bb0-9cce-c9efbe8488c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25cd25be-43f9-4bb0-9cce-c9efbe8488c1", + "Name": null + }, + "b63d7598-f2d9-47d1-a81c-2398e9dde8c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b63d7598-f2d9-47d1-a81c-2398e9dde8c8", + "Name": "W18x40", + "EdgeId": 137, + "ExternalEdgeId": 137 + }, + "bb46dee5-c65d-4abf-a6fa-cfffb40bb545": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bb46dee5-c65d-4abf-a6fa-cfffb40bb545", + "Name": null + }, + "14bcaa75-d02b-413b-90bb-10e70c336f4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "14bcaa75-d02b-413b-90bb-10e70c336f4c", + "Name": "W18x40", + "EdgeId": 142 + }, + "5afd924d-be55-4993-b38c-6c59a9cbe103": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5afd924d-be55-4993-b38c-6c59a9cbe103", + "Name": null + }, + "21ec8bb1-aa2d-4937-b29a-058dce56cfb6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "21ec8bb1-aa2d-4937-b29a-058dce56cfb6", + "Name": "W18x40", + "EdgeId": 143 + }, + "e3de19ac-0e78-4532-890e-79da208e913d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3de19ac-0e78-4532-890e-79da208e913d", + "Name": null + }, + "80e1290c-92e5-48fb-8e47-edbeee3b16de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80e1290c-92e5-48fb-8e47-edbeee3b16de", + "Name": "W18x40", + "EdgeId": 147 + }, + "803463fe-3412-4f16-85fd-ceb2b0221053": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "803463fe-3412-4f16-85fd-ceb2b0221053", + "Name": null + }, + "814eb173-0496-447e-81bb-53c70cc1aa50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "814eb173-0496-447e-81bb-53c70cc1aa50", + "Name": "W18x40", + "EdgeId": 148 + }, + "f789e063-60e9-4a44-9a96-855fe3cdbddc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f789e063-60e9-4a44-9a96-855fe3cdbddc", + "Name": null + }, + "153d24c2-0859-4b89-9558-d7ce786cbdf7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "153d24c2-0859-4b89-9558-d7ce786cbdf7", + "Name": "W18x40", + "EdgeId": 152 + }, + "834b6b1a-8de9-4150-9960-f92ab9f2fa0d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "834b6b1a-8de9-4150-9960-f92ab9f2fa0d", + "Name": null + }, + "7f634a6d-baf6-4dc6-9e1e-503a40faf078": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7f634a6d-baf6-4dc6-9e1e-503a40faf078", + "Name": "W18x40", + "EdgeId": 153 + }, + "b0b69429-0368-4cf4-856b-b83b9cbbddf1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0b69429-0368-4cf4-856b-b83b9cbbddf1", + "Name": null + }, + "cc9761fa-4a8f-4e87-9ae4-3b48443ead31": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cc9761fa-4a8f-4e87-9ae4-3b48443ead31", + "Name": "W18x40", + "EdgeId": 157, + "ExternalEdgeId": 157 + }, + "d238319f-e6d4-470b-9ade-342276086489": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d238319f-e6d4-470b-9ade-342276086489", + "Name": null + }, + "28a300c9-e8a8-454e-8463-ed2fb1223134": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28a300c9-e8a8-454e-8463-ed2fb1223134", + "Name": "W18x40", + "EdgeId": 158 + }, + "178f4487-4e72-4188-8a0b-374a55919070": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "178f4487-4e72-4188-8a0b-374a55919070", + "Name": null + }, + "c254d40c-2e91-4648-a29b-042a9c9fb997": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c254d40c-2e91-4648-a29b-042a9c9fb997", + "Name": "W18x40", + "EdgeId": 164, + "ExternalEdgeId": 164 + }, + "b1c8b4a4-46b5-4575-93c4-0c9e1a040d60": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1c8b4a4-46b5-4575-93c4-0c9e1a040d60", + "Name": null + }, + "3b109814-03b3-451d-b7c4-099f5fe75d2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3b109814-03b3-451d-b7c4-099f5fe75d2e", + "Name": "W18x40", + "EdgeId": 165 + }, + "2fa0f4d4-df43-4d21-bba6-cfa9b009546c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2fa0f4d4-df43-4d21-bba6-cfa9b009546c", + "Name": null + }, + "f27f1de6-931f-4841-b988-ef70321cd9e6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f27f1de6-931f-4841-b988-ef70321cd9e6", + "Name": "W18x40", + "EdgeId": 166 + }, + "cc2d6fa3-1261-4daf-aee8-6058ca30519b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc2d6fa3-1261-4daf-aee8-6058ca30519b", + "Name": null + }, + "1b5e2158-e374-41f0-9643-cd6884186c74": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1b5e2158-e374-41f0-9643-cd6884186c74", + "Name": "W18x40", + "EdgeId": 167, + "ExternalEdgeId": 167 + }, + "dd1c836e-0c4c-43d8-af7e-294c0c4b0aa5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd1c836e-0c4c-43d8-af7e-294c0c4b0aa5", + "Name": null + }, + "0267933d-f93c-4a68-834a-82f3b75a087f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0267933d-f93c-4a68-834a-82f3b75a087f", + "Name": "W18x40", + "EdgeId": 173 + }, + "fe8fc3d9-9375-427a-b41e-f51bc1c7c621": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe8fc3d9-9375-427a-b41e-f51bc1c7c621", + "Name": null + }, + "0312ecbf-c857-4483-9371-79c74eee2b68": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0312ecbf-c857-4483-9371-79c74eee2b68", + "Name": "W18x40", + "EdgeId": 174 + }, + "0b0d4c85-34ab-43f5-acc1-fdd5f5caba30": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b0d4c85-34ab-43f5-acc1-fdd5f5caba30", + "Name": null + }, + "42a61dc5-4ab6-4f71-9a76-51c5401cb920": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "42a61dc5-4ab6-4f71-9a76-51c5401cb920", + "Name": "W18x40", + "EdgeId": 178 + }, + "a4ff9b4a-2b07-44b4-9164-2365e10d455b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a4ff9b4a-2b07-44b4-9164-2365e10d455b", + "Name": null + }, + "ec21251a-bea5-487e-b1b3-68bbc46b72ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec21251a-bea5-487e-b1b3-68bbc46b72ef", + "Name": "W18x40", + "EdgeId": 179 + }, + "28ef286a-a38d-4af2-833a-0b589ea4919f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "28ef286a-a38d-4af2-833a-0b589ea4919f", + "Name": null + }, + "942f1fd1-4e02-410c-af7b-b50c1b651e34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "942f1fd1-4e02-410c-af7b-b50c1b651e34", + "Name": "W18x40", + "EdgeId": 183 + }, + "e35903a6-272e-49b5-b435-b06debdc5d45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e35903a6-272e-49b5-b435-b06debdc5d45", + "Name": null + }, + "8d9096ae-1c98-4c6a-acc4-c45b5ee912fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8d9096ae-1c98-4c6a-acc4-c45b5ee912fe", + "Name": "W18x40", + "EdgeId": 184 + }, + "212b18a1-d70b-4c38-a7e2-23280b28e092": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "212b18a1-d70b-4c38-a7e2-23280b28e092", + "Name": null + }, + "71ca6208-6333-470c-843c-9d19f925f5f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "71ca6208-6333-470c-843c-9d19f925f5f2", + "Name": "W18x40", + "EdgeId": 188, + "ExternalEdgeId": 188 + }, + "580c3b82-8c7f-4ecb-9211-4251e5e518ad": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "580c3b82-8c7f-4ecb-9211-4251e5e518ad", + "Name": null + }, + "27d03f63-12be-4317-b4d7-5959cd9167a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "27d03f63-12be-4317-b4d7-5959cd9167a8", + "Name": "W18x40", + "EdgeId": 189 + }, + "92ed1097-fbd6-4e08-b27b-f948674dcedd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "92ed1097-fbd6-4e08-b27b-f948674dcedd", + "Name": null + }, + "b5a2f412-ae2a-4599-937e-8db5c5e49059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b5a2f412-ae2a-4599-937e-8db5c5e49059", + "Name": "W18x40", + "EdgeId": 194 + }, + "2d2c997d-4597-404d-8ede-5ac742c52316": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d2c997d-4597-404d-8ede-5ac742c52316", + "Name": null + }, + "e42b18a8-d809-4ae5-a6ac-f6e960dbfa6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e42b18a8-d809-4ae5-a6ac-f6e960dbfa6f", + "Name": "W18x40", + "EdgeId": 195 + }, + "b5059e89-9afa-44e0-a2e0-60195ecd7759": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5059e89-9afa-44e0-a2e0-60195ecd7759", + "Name": null + }, + "28d5c4f5-4a70-4e61-bd27-ebd97a51a13e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28d5c4f5-4a70-4e61-bd27-ebd97a51a13e", + "Name": "W18x40", + "EdgeId": 196, + "ExternalEdgeId": 196 + }, + "3917c1f5-d035-4528-afb3-56b819596670": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3917c1f5-d035-4528-afb3-56b819596670", + "Name": null + }, + "c24e318a-1dd3-4029-8a0d-0bed4ad16a20": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c24e318a-1dd3-4029-8a0d-0bed4ad16a20", + "Name": "W18x40", + "EdgeId": 201 + }, + "305c2f31-a475-43e0-b8e8-f28fdc64c91a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "305c2f31-a475-43e0-b8e8-f28fdc64c91a", + "Name": null + }, + "a91f6a1c-c6bf-498f-87c7-824b80dd1029": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a91f6a1c-c6bf-498f-87c7-824b80dd1029", + "Name": "W18x40", + "EdgeId": 202 + }, + "9603393a-2a16-4fd0-8cee-458f2ff36694": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9603393a-2a16-4fd0-8cee-458f2ff36694", + "Name": null + }, + "938f81aa-f830-4892-9e3c-43fad84b3956": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "938f81aa-f830-4892-9e3c-43fad84b3956", + "Name": "W18x40", + "EdgeId": 206 + }, + "30edeeb3-df3d-438e-befd-4d154d7bb541": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30edeeb3-df3d-438e-befd-4d154d7bb541", + "Name": null + }, + "66263f74-855a-4d72-bc60-e40c1c303b75": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "66263f74-855a-4d72-bc60-e40c1c303b75", + "Name": "W18x40", + "EdgeId": 207 + }, + "0a085250-7e36-470a-9d9b-04b517d9dbaa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a085250-7e36-470a-9d9b-04b517d9dbaa", + "Name": null + }, + "78d96028-2809-4763-82c9-1b976ee4409c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "78d96028-2809-4763-82c9-1b976ee4409c", + "Name": "W18x40", + "EdgeId": 211 + }, + "64ce661d-3df1-485c-90ab-f633f935ff10": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64ce661d-3df1-485c-90ab-f633f935ff10", + "Name": null + }, + "46b02b69-c852-4a72-9ade-e334f2fd6bfb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "46b02b69-c852-4a72-9ade-e334f2fd6bfb", + "Name": "W18x40", + "EdgeId": 212 + }, + "e06995d7-3011-4b07-a0f0-9442f71d14f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e06995d7-3011-4b07-a0f0-9442f71d14f4", + "Name": null + }, + "0c9f542f-a91c-43a9-8c3e-9345bb876efa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0c9f542f-a91c-43a9-8c3e-9345bb876efa", + "Name": "W18x40", + "EdgeId": 216, + "ExternalEdgeId": 216 + }, + "b87e37b1-5692-4791-b43d-9337ed140548": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b87e37b1-5692-4791-b43d-9337ed140548", + "Name": null + }, + "7e8b900d-27bc-408a-81ae-53438247f059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e8b900d-27bc-408a-81ae-53438247f059", + "Name": "W18x40", + "EdgeId": 217 + }, + "52ec10a4-b2ab-4860-8c61-45c2c3352c4b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52ec10a4-b2ab-4860-8c61-45c2c3352c4b", + "Name": null + }, + "a997202a-5a3e-4e46-a8b9-03ba84857820": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a997202a-5a3e-4e46-a8b9-03ba84857820", + "Name": "W18x40", + "EdgeId": 222 + }, + "a1e3e2fa-a755-46d7-8da7-2b149275bdec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a1e3e2fa-a755-46d7-8da7-2b149275bdec", + "Name": null + }, + "172cf631-3712-4317-a993-91ba09e11d12": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "172cf631-3712-4317-a993-91ba09e11d12", + "Name": "W18x40", + "EdgeId": 223 + }, + "ad7da4a3-fa7e-49d2-8a31-25370b79a641": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ad7da4a3-fa7e-49d2-8a31-25370b79a641", + "Name": null + }, + "eb795953-2568-465f-9b74-f1078a8e68e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb795953-2568-465f-9b74-f1078a8e68e7", + "Name": "W18x40", + "EdgeId": 224, + "ExternalEdgeId": 224 + }, + "83c2a9b0-4ff9-44c8-9387-a1b53bd19876": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83c2a9b0-4ff9-44c8-9387-a1b53bd19876", + "Name": null + }, + "e89c308d-769d-49fe-9cb3-4e71364adf86": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e89c308d-769d-49fe-9cb3-4e71364adf86", + "Name": "W18x40", + "EdgeId": 229 + }, + "38923d51-2d66-429c-8df6-c17dcf977aec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38923d51-2d66-429c-8df6-c17dcf977aec", + "Name": null + }, + "a6ef0dfa-7138-4619-92dc-f7216e254d21": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a6ef0dfa-7138-4619-92dc-f7216e254d21", + "Name": "W18x40", + "EdgeId": 230 + }, + "3981bba0-275d-409b-be8a-21b147c63b24": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3981bba0-275d-409b-be8a-21b147c63b24", + "Name": null + }, + "c4c352fe-29ce-4226-b0ff-87fe9181f7a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c4c352fe-29ce-4226-b0ff-87fe9181f7a8", + "Name": "W18x40", + "EdgeId": 234 + }, + "792d35ba-505b-4717-ae30-0574541c8eee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "792d35ba-505b-4717-ae30-0574541c8eee", + "Name": null + }, + "54ea5cfa-826d-4678-966a-9a49a295c13f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "54ea5cfa-826d-4678-966a-9a49a295c13f", + "Name": "W18x40", + "EdgeId": 235 + }, + "10a378f9-7aec-40eb-87e5-011b689abdb5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10a378f9-7aec-40eb-87e5-011b689abdb5", + "Name": null + }, + "fd86a24e-118a-47df-9b62-6b8cc5319f4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fd86a24e-118a-47df-9b62-6b8cc5319f4a", + "Name": "W18x40", + "EdgeId": 239 + }, + "fc90d40e-84e6-4702-a2a8-c755dd966525": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc90d40e-84e6-4702-a2a8-c755dd966525", + "Name": null + }, + "1ca61af4-3939-4a30-8225-dcea7b7de391": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1ca61af4-3939-4a30-8225-dcea7b7de391", + "Name": "W18x40", + "EdgeId": 240 + }, + "acc0b12a-4dac-4bae-bffd-24899bbcee12": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "acc0b12a-4dac-4bae-bffd-24899bbcee12", + "Name": null + }, + "8dace4b8-440b-48db-9aae-37eb8d311e2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8dace4b8-440b-48db-9aae-37eb8d311e2e", + "Name": "W18x40", + "EdgeId": 244, + "ExternalEdgeId": 244 + }, + "cb9ae6b6-1e46-4736-ae26-768d4c7ec0be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cb9ae6b6-1e46-4736-ae26-768d4c7ec0be", + "Name": null + }, + "ef986c15-2ac9-46fa-a63f-84e8897dae3b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ef986c15-2ac9-46fa-a63f-84e8897dae3b", + "Name": "W18x40", + "EdgeId": 245 + }, + "72477917-2055-44a6-9eaf-ff2c6fc52f17": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72477917-2055-44a6-9eaf-ff2c6fc52f17", + "Name": null + }, + "e056abb1-ed90-4b92-8fea-04471d0dad59": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e056abb1-ed90-4b92-8fea-04471d0dad59", + "Name": "W18x40", + "EdgeId": 250 + }, + "5c2a64a9-de66-4b9b-b9ca-205fa60436c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c2a64a9-de66-4b9b-b9ca-205fa60436c5", + "Name": null + }, + "41323531-d1a4-4aed-9c52-4f4b59259096": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "41323531-d1a4-4aed-9c52-4f4b59259096", + "Name": "W18x40", + "EdgeId": 251 + }, + "21304e88-f0df-43e1-99c1-6909c611ac69": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21304e88-f0df-43e1-99c1-6909c611ac69", + "Name": null + }, + "cbdc7041-d7bf-429d-a991-529ebd23ceb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cbdc7041-d7bf-429d-a991-529ebd23ceb7", + "Name": "W18x40", + "EdgeId": 252, + "ExternalEdgeId": 252 + }, + "4c8b2de0-0200-44a0-944e-dbb34527d3bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4c8b2de0-0200-44a0-944e-dbb34527d3bf", + "Name": null + }, + "4ceaa300-8022-4e39-a0bb-f5cefa889087": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4ceaa300-8022-4e39-a0bb-f5cefa889087", + "Name": "W18x40", + "EdgeId": 257 + }, + "ee66ca6c-6d45-491e-9df6-69b88afae611": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee66ca6c-6d45-491e-9df6-69b88afae611", + "Name": null + }, + "aebf6dbe-40f4-41f6-8f7b-41321d57115c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "aebf6dbe-40f4-41f6-8f7b-41321d57115c", + "Name": "W18x40", + "EdgeId": 258 + }, + "083b5588-5e6b-4f02-aa82-6cff6f88b1e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "083b5588-5e6b-4f02-aa82-6cff6f88b1e9", + "Name": null + }, + "31e5df48-79ef-42ce-a9e4-8d957267c117": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "31e5df48-79ef-42ce-a9e4-8d957267c117", + "Name": "W18x40", + "EdgeId": 262 + }, + "219ed329-0bc5-4c99-862b-f2de6df0322c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "219ed329-0bc5-4c99-862b-f2de6df0322c", + "Name": null + }, + "da1239f7-b819-4ab1-a324-af5463852f4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "da1239f7-b819-4ab1-a324-af5463852f4e", + "Name": "W18x40", + "EdgeId": 263 + }, + "ef757a8f-64a3-42ee-852d-bf403aa6a580": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef757a8f-64a3-42ee-852d-bf403aa6a580", + "Name": null + }, + "ccc3f409-ead5-4f79-8dbc-a02d8516b5ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ccc3f409-ead5-4f79-8dbc-a02d8516b5ff", + "Name": "W18x40", + "EdgeId": 267 + }, + "4ce11a50-452e-48b1-b02d-a9f5d1dc4da3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ce11a50-452e-48b1-b02d-a9f5d1dc4da3", + "Name": null + }, + "8572b7ba-86a0-4ee8-92d4-0f62896efd4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8572b7ba-86a0-4ee8-92d4-0f62896efd4a", + "Name": "W18x40", + "EdgeId": 268 + }, + "8f9fb229-5944-4913-bac2-297075383a87": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8f9fb229-5944-4913-bac2-297075383a87", + "Name": null + }, + "4fd42bbe-5a7d-4e8e-abf4-ee176c2088bd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4fd42bbe-5a7d-4e8e-abf4-ee176c2088bd", + "Name": "W18x40", + "EdgeId": 272, + "ExternalEdgeId": 272 + }, + "da0cd287-2462-42fe-93ca-db4662722c92": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da0cd287-2462-42fe-93ca-db4662722c92", + "Name": null + }, + "bccdd461-d584-4927-8b16-e92e6a8b2430": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bccdd461-d584-4927-8b16-e92e6a8b2430", + "Name": "W18x40", + "EdgeId": 273 + }, + "0cc56e04-7f6a-416e-8df6-2805b839072f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0cc56e04-7f6a-416e-8df6-2805b839072f", + "Name": null + }, + "9bf42062-7eb8-4246-858d-7f96ba9dd798": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9bf42062-7eb8-4246-858d-7f96ba9dd798", + "Name": "W18x40", + "EdgeId": 278 + }, + "58a4a2d1-a820-41d0-a640-3bf442ca65d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "58a4a2d1-a820-41d0-a640-3bf442ca65d3", + "Name": null + }, + "cce71879-c29e-499b-bbe3-3345e901b7c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "cce71879-c29e-499b-bbe3-3345e901b7c9", + "Name": "W18x40", + "EdgeId": 279 + }, + "f4ac9691-fe5b-45bf-be64-9c4b7682136e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f4ac9691-fe5b-45bf-be64-9c4b7682136e", + "Name": null + }, + "509bdce4-fd50-43f5-ae44-981200acfbf1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "509bdce4-fd50-43f5-ae44-981200acfbf1", + "Name": "W18x40", + "EdgeId": 280, + "ExternalEdgeId": 280 + }, + "06e8e416-c7c7-4383-bda7-5dfde39a7a4b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "06e8e416-c7c7-4383-bda7-5dfde39a7a4b", + "Name": null + }, + "af4de305-e791-4466-b972-ea5a4f91c3bd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "af4de305-e791-4466-b972-ea5a4f91c3bd", + "Name": "W18x40", + "EdgeId": 285 + }, + "34075005-73c4-4e09-bebb-3288e90c2077": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "34075005-73c4-4e09-bebb-3288e90c2077", + "Name": null + }, + "7b9bf020-4f02-4de5-a71e-115d274ca524": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7b9bf020-4f02-4de5-a71e-115d274ca524", + "Name": "W18x40", + "EdgeId": 286 + }, + "95578b76-df01-422f-aaaf-0294be5e4ff6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95578b76-df01-422f-aaaf-0294be5e4ff6", + "Name": null + }, + "b1f7bd78-ff3e-44ea-a40a-163ff4b56750": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b1f7bd78-ff3e-44ea-a40a-163ff4b56750", + "Name": "W18x40", + "EdgeId": 290 + }, + "cf712197-8635-46d9-a053-67892cf1a895": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf712197-8635-46d9-a053-67892cf1a895", + "Name": null + }, + "40241f81-75fa-475c-b862-c0585825657e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "40241f81-75fa-475c-b862-c0585825657e", + "Name": "W18x40", + "EdgeId": 291 + }, + "cad36578-ac43-44e6-a79d-f39dda06c8ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cad36578-ac43-44e6-a79d-f39dda06c8ed", + "Name": null + }, + "dc296252-72e6-4f46-b78a-24e132cd9e15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dc296252-72e6-4f46-b78a-24e132cd9e15", + "Name": "W18x40", + "EdgeId": 295 + }, + "6325c132-549d-455f-915f-46ed65eab9b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6325c132-549d-455f-915f-46ed65eab9b4", + "Name": null + }, + "d8a1a5b1-5cde-4f8a-ac7d-1c243e95dcce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d8a1a5b1-5cde-4f8a-ac7d-1c243e95dcce", + "Name": "W18x40", + "EdgeId": 296 + }, + "e3b51de8-ade1-4f4e-b571-9c6ff749da4e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3b51de8-ade1-4f4e-b571-9c6ff749da4e", + "Name": null + }, + "9ab58337-1dcd-4ff7-817b-401ed68a61ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9ab58337-1dcd-4ff7-817b-401ed68a61ef", + "Name": "W18x40", + "EdgeId": 300, + "ExternalEdgeId": 300 + }, + "af38a673-6719-4914-91a6-1fff4f946153": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "af38a673-6719-4914-91a6-1fff4f946153", + "Name": null + }, + "baa14628-227b-4931-8af4-81dffebd47f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "baa14628-227b-4931-8af4-81dffebd47f7", + "Name": "W18x40", + "EdgeId": 301 + }, + "970364de-abf3-436e-898f-c45e74433d64": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "970364de-abf3-436e-898f-c45e74433d64", + "Name": null + }, + "4f5b621b-7f1b-4ea3-b29a-2ad73e0160fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4f5b621b-7f1b-4ea3-b29a-2ad73e0160fd", + "Name": "W18x40", + "EdgeId": 306 + }, + "4a1c8a62-ea42-414e-940f-5bf779aff334": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a1c8a62-ea42-414e-940f-5bf779aff334", + "Name": null + }, + "dae33c7d-cfe7-4acb-a455-c3f1451d1378": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dae33c7d-cfe7-4acb-a455-c3f1451d1378", + "Name": "W18x40", + "EdgeId": 307, + "ExternalEdgeId": 307 + }, + "005b342f-75ba-441c-b00f-dc8f11db1b3b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "005b342f-75ba-441c-b00f-dc8f11db1b3b", + "Name": null + }, + "d7ac1548-7650-472a-8741-bad52be9afd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d7ac1548-7650-472a-8741-bad52be9afd9", + "Name": "W18x40", + "EdgeId": 308, + "ExternalEdgeId": 308 + }, + "950de28f-aff7-44ed-b2b9-7e7668f518d8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "950de28f-aff7-44ed-b2b9-7e7668f518d8", + "Name": null + }, + "d72e0bf9-4229-438e-9047-1d816f068c4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d72e0bf9-4229-438e-9047-1d816f068c4e", + "Name": "W18x40", + "EdgeId": 313 + }, + "8a1d8841-6ea7-4d6f-a42f-bea0473987aa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8a1d8841-6ea7-4d6f-a42f-bea0473987aa", + "Name": null + }, + "eeb9e196-db05-4d71-84b0-bcebf07b6063": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eeb9e196-db05-4d71-84b0-bcebf07b6063", + "Name": "W18x40", + "EdgeId": 314, + "ExternalEdgeId": 314 + }, + "e8134d32-05b1-42ab-8599-a6ef0f201ee8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8134d32-05b1-42ab-8599-a6ef0f201ee8", + "Name": null + }, + "f4486d31-63dd-4d86-bf93-21122cd0fd7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f4486d31-63dd-4d86-bf93-21122cd0fd7d", + "Name": "W18x40", + "EdgeId": 318 + }, + "6b1e787c-a045-410d-8d10-2aea8ffb8f81": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6b1e787c-a045-410d-8d10-2aea8ffb8f81", + "Name": null + }, + "b105cc2e-6e0a-43bb-b37c-62d76c1f707a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b105cc2e-6e0a-43bb-b37c-62d76c1f707a", + "Name": "W18x40", + "EdgeId": 319, + "ExternalEdgeId": 319 + }, + "005413af-e9d7-4fdc-b916-ac01234b64d5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "005413af-e9d7-4fdc-b916-ac01234b64d5", + "Name": null + }, + "ff827db3-a27a-432f-af3d-3d3479b8d84d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ff827db3-a27a-432f-af3d-3d3479b8d84d", + "Name": "W18x40", + "EdgeId": 323 + }, + "a425b9c2-21ad-4e34-9d73-4edbbea686fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a425b9c2-21ad-4e34-9d73-4edbbea686fc", + "Name": null + }, + "f72b2c92-63be-4d8a-b1aa-7dd8569b7445": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f72b2c92-63be-4d8a-b1aa-7dd8569b7445", + "Name": "W18x40", + "EdgeId": 324, + "ExternalEdgeId": 324 + }, + "dc8b16a4-6045-42ad-9046-29b7f7211e92": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc8b16a4-6045-42ad-9046-29b7f7211e92", + "Name": null + }, + "a592d121-7ed6-4df3-b357-3b3952cebe69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a592d121-7ed6-4df3-b357-3b3952cebe69", + "Name": "W18x40", + "EdgeId": 328, + "ExternalEdgeId": 328 + }, + "ad8cc820-fddc-4b23-a9a6-1c6eb18b0413": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ad8cc820-fddc-4b23-a9a6-1c6eb18b0413", + "Name": null + }, + "ae3b6a32-2682-4dce-a010-edf6c92760ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ae3b6a32-2682-4dce-a010-edf6c92760ee", + "Name": "W18x40", + "EdgeId": 329, + "ExternalEdgeId": 329 + }, + "53da9573-c7ba-42e4-a746-5c36dfa5bbe5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53da9573-c7ba-42e4-a746-5c36dfa5bbe5", + "Name": null + }, + "0e54563f-2fc4-4d9d-9369-32f6c2ea0b49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0e54563f-2fc4-4d9d-9369-32f6c2ea0b49", + "Name": "W18x40", + "EdgeId": 331, + "ExternalEdgeId": 331 + }, + "382530bd-989e-4f59-a332-a6c78c466768": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "382530bd-989e-4f59-a332-a6c78c466768", + "Name": null + }, + "195a46b1-7b5f-4d19-9527-c1f581a96fab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "195a46b1-7b5f-4d19-9527-c1f581a96fab", + "Name": "W18x40", + "EdgeId": 332 + }, + "02a57abe-d470-4d9f-aeeb-faa2c9c3bcf4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02a57abe-d470-4d9f-aeeb-faa2c9c3bcf4", + "Name": null + }, + "673f2af9-52df-4335-9457-1b8ecf1aa4a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "673f2af9-52df-4335-9457-1b8ecf1aa4a0", + "Name": "W18x40", + "EdgeId": 333 + }, + "42b6e906-313d-4eb8-b831-ac9753a803cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "42b6e906-313d-4eb8-b831-ac9753a803cf", + "Name": null + }, + "76e6154e-9902-42e5-bd4e-d4a909f8aa79": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "76e6154e-9902-42e5-bd4e-d4a909f8aa79", + "Name": "W18x40", + "EdgeId": 334, + "ExternalEdgeId": 334 + }, + "7d9660d4-43b2-482e-82b4-292d8e2d001c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d9660d4-43b2-482e-82b4-292d8e2d001c", + "Name": null + }, + "292e1a1d-9b9b-4921-b15a-dfac213efee1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "292e1a1d-9b9b-4921-b15a-dfac213efee1", + "Name": "W18x40", + "EdgeId": 339, + "ExternalEdgeId": 339 + }, + "db1e7492-dd35-4398-8549-1c5bf5d84797": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "db1e7492-dd35-4398-8549-1c5bf5d84797", + "Name": null + }, + "bb07065a-6c3d-4545-90fa-b3c8cb1989ca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "bb07065a-6c3d-4545-90fa-b3c8cb1989ca", + "Name": "W18x40", + "EdgeId": 340 + }, + "0b731827-dafb-4223-bac7-9f0a03eaaf64": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b731827-dafb-4223-bac7-9f0a03eaaf64", + "Name": null + }, + "f24f08a3-0b9d-4cc7-8b93-0ea27a62253a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f24f08a3-0b9d-4cc7-8b93-0ea27a62253a", + "Name": "W18x40", + "EdgeId": 341 + }, + "b4f95fe4-098d-4fb0-908c-ebef6344d3cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4f95fe4-098d-4fb0-908c-ebef6344d3cd", + "Name": null + }, + "141c3c4a-94b1-4152-9ca8-7b82030d1fdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "141c3c4a-94b1-4152-9ca8-7b82030d1fdf", + "Name": "W18x40", + "EdgeId": 344, + "ExternalEdgeId": 344 + }, + "91a3462d-81f0-4d87-b12a-e9f41614b325": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91a3462d-81f0-4d87-b12a-e9f41614b325", + "Name": null + }, + "3edeb499-9df5-4571-871d-5fc61baca0bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3edeb499-9df5-4571-871d-5fc61baca0bb", + "Name": "W18x40", + "EdgeId": 345, + "ExternalEdgeId": 345 + }, + "7645f093-55c5-49bb-a377-3a26c95241c3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7645f093-55c5-49bb-a377-3a26c95241c3", + "Name": null + }, + "3de06577-6368-4655-93fb-7a6b9d6c25dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3de06577-6368-4655-93fb-7a6b9d6c25dc", + "Name": "W18x40", + "EdgeId": 346 + }, + "3519218e-ac4c-4ff6-90b6-460873da9d10": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3519218e-ac4c-4ff6-90b6-460873da9d10", + "Name": null + }, + "718acb3a-bda7-40c4-89ca-367e62ad9e52": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "718acb3a-bda7-40c4-89ca-367e62ad9e52", + "Name": "W18x40", + "EdgeId": 349 + }, + "0f07889b-470d-4e67-b431-395d9daa9eb8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0f07889b-470d-4e67-b431-395d9daa9eb8", + "Name": null + }, + "b3568703-34ff-4a0a-ab20-178ad643a787": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b3568703-34ff-4a0a-ab20-178ad643a787", + "Name": "W18x40", + "EdgeId": 350 + }, + "1965e954-cdc4-4710-8fc6-5eb5759dd77d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1965e954-cdc4-4710-8fc6-5eb5759dd77d", + "Name": null + }, + "5c0751c6-7dd3-494b-aae2-9f6c6934c3fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5c0751c6-7dd3-494b-aae2-9f6c6934c3fe", + "Name": "W18x40", + "EdgeId": 351, + "ExternalEdgeId": 351 + }, + "740529b9-4663-427e-b1fa-eff316b90ff7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 4.5 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "740529b9-4663-427e-b1fa-eff316b90ff7", + "Name": null + }, + "749fabbe-482f-4e31-a4b3-7f2f85f9c37b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "749fabbe-482f-4e31-a4b3-7f2f85f9c37b", + "Name": "W18x40", + "EdgeId": 355, + "ExternalEdgeId": 355 + }, + "da7e086b-2aa4-4474-8de1-d8bde6afbc51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da7e086b-2aa4-4474-8de1-d8bde6afbc51", + "Name": null + }, + "ac2a1b89-4369-4e52-87d0-741afb304b76": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ac2a1b89-4369-4e52-87d0-741afb304b76", + "Name": "W18x40", + "EdgeId": 356 + }, + "248fc446-6a8c-4ec4-883c-c15ab42c7f7d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "248fc446-6a8c-4ec4-883c-c15ab42c7f7d", + "Name": null + }, + "17420ccd-0b5c-4f6f-b6d0-8fdeab1bcbbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "17420ccd-0b5c-4f6f-b6d0-8fdeab1bcbbf", + "Name": "W18x40", + "EdgeId": 357 + }, + "b60594d5-586c-4f05-bdd6-91860777b981": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b60594d5-586c-4f05-bdd6-91860777b981", + "Name": null + }, + "c2af512a-b65d-401a-b950-f1e57e453322": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2af512a-b65d-401a-b950-f1e57e453322", + "Name": "W18x40", + "EdgeId": 359 + }, + "95bf01d5-a35a-497b-aff4-c1c95111424f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95bf01d5-a35a-497b-aff4-c1c95111424f", + "Name": null + }, + "51d23319-3e28-4f76-aa8a-493a172e7f14": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "51d23319-3e28-4f76-aa8a-493a172e7f14", + "Name": "W18x40", + "EdgeId": 360 + }, + "ee0f0a9a-4aa2-4eb8-93e5-52adbad8c5fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee0f0a9a-4aa2-4eb8-93e5-52adbad8c5fa", + "Name": null + }, + "acc61123-96b8-425b-8592-58d53bc446c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "acc61123-96b8-425b-8592-58d53bc446c1", + "Name": "W18x40", + "EdgeId": 362, + "ExternalEdgeId": 362 + }, + "436d63dd-5762-4a4f-afe2-d0bd34ec818b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "436d63dd-5762-4a4f-afe2-d0bd34ec818b", + "Name": null + }, + "c2359198-8052-48f7-9379-fd30309e7840": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2359198-8052-48f7-9379-fd30309e7840", + "Name": "W18x40", + "EdgeId": 363 + }, + "7cbf1076-18af-442a-aa94-658b30e1a17a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7cbf1076-18af-442a-aa94-658b30e1a17a", + "Name": null + }, + "32fa9586-f0b8-46c9-b7e1-fdf07c33742b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "32fa9586-f0b8-46c9-b7e1-fdf07c33742b", + "Name": "W18x40", + "EdgeId": 365 + }, + "00bf53c7-2df6-4343-b648-4497d55e6c46": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "00bf53c7-2df6-4343-b648-4497d55e6c46", + "Name": null + }, + "40757812-7faf-4b05-acd8-c6d9bb4ea8f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "40757812-7faf-4b05-acd8-c6d9bb4ea8f9", + "Name": "W18x40", + "EdgeId": 366 + }, + "b187c97c-12f6-4cbc-8258-9077a872f047": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b187c97c-12f6-4cbc-8258-9077a872f047", + "Name": null + }, + "a61b2830-3e47-47c4-bd3c-8c042ddf65ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a61b2830-3e47-47c4-bd3c-8c042ddf65ef", + "Name": "W18x40", + "EdgeId": 367, + "ExternalEdgeId": 367 + }, + "72221334-cbd7-49fd-95dc-eeb96145c890": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72221334-cbd7-49fd-95dc-eeb96145c890", + "Name": null + }, + "c800dae5-a69b-4eb6-93e9-770e672f7eb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c800dae5-a69b-4eb6-93e9-770e672f7eb8", + "Name": "W18x40", + "EdgeId": 370 + }, + "159daeac-5141-4ab4-bc8d-e7d365f9ec83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "159daeac-5141-4ab4-bc8d-e7d365f9ec83", + "Name": null + }, + "b4014d37-f1a2-49c1-ada7-8c0f030d5830": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b4014d37-f1a2-49c1-ada7-8c0f030d5830", + "Name": "W18x40", + "EdgeId": 371 + }, + "8738f1fc-f06c-4c19-8d9c-dedf0d07f4e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8738f1fc-f06c-4c19-8d9c-dedf0d07f4e4", + "Name": null + }, + "656ed2a6-9138-4e30-853a-3c6c40eafa99": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "656ed2a6-9138-4e30-853a-3c6c40eafa99", + "Name": "W18x40", + "EdgeId": 373 + }, + "1b65f783-6996-4655-ad9d-e1e48a1d6867": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b65f783-6996-4655-ad9d-e1e48a1d6867", + "Name": null + }, + "dab2bc72-f1a0-4400-964c-6b23013d5bf2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dab2bc72-f1a0-4400-964c-6b23013d5bf2", + "Name": "W18x40", + "EdgeId": 374 + }, + "75af2fca-942c-4e6b-be8f-6c31e1e4e474": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "75af2fca-942c-4e6b-be8f-6c31e1e4e474", + "Name": null + }, + "d2abbea9-a0d8-4786-a45b-462010cf62a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d2abbea9-a0d8-4786-a45b-462010cf62a2", + "Name": "W18x40", + "EdgeId": 376, + "ExternalEdgeId": 376 + }, + "402ad856-dc8d-4bff-88bd-ca1f8e452dd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "402ad856-dc8d-4bff-88bd-ca1f8e452dd3", + "Name": null + }, + "40bcc871-c45b-4ae9-b403-fa0dcf71781e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "40bcc871-c45b-4ae9-b403-fa0dcf71781e", + "Name": "W18x40", + "EdgeId": 377 + }, + "dfd51255-c9e9-45c0-b842-2efd6c54d75b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dfd51255-c9e9-45c0-b842-2efd6c54d75b", + "Name": null + }, + "7b25fcba-3cdf-404e-b2c7-52adb2f843f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7b25fcba-3cdf-404e-b2c7-52adb2f843f2", + "Name": "W18x40", + "EdgeId": 379 + }, + "c5eb6f00-5098-43ee-ba90-76fb7c1530e8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5eb6f00-5098-43ee-ba90-76fb7c1530e8", + "Name": null + }, + "e0d46986-35b9-4396-a0ff-d69e5b378932": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e0d46986-35b9-4396-a0ff-d69e5b378932", + "Name": "W18x40", + "EdgeId": 380 + }, + "1c32c468-a24a-466b-9003-b64055e11f3c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c32c468-a24a-466b-9003-b64055e11f3c", + "Name": null + }, + "fa7471a7-7703-4446-ad4f-37431975557f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa7471a7-7703-4446-ad4f-37431975557f", + "Name": "W18x40", + "EdgeId": 381, + "ExternalEdgeId": 381 + }, + "c5747bbb-afce-4c64-bca1-821500537422": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5747bbb-afce-4c64-bca1-821500537422", + "Name": null + }, + "451d339c-1696-4e1b-8be7-7cfc352a3ba5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "451d339c-1696-4e1b-8be7-7cfc352a3ba5", + "Name": "W18x40", + "EdgeId": 384 + }, + "f8fb7ada-b5bb-4658-9b54-e4fe304c6652": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8fb7ada-b5bb-4658-9b54-e4fe304c6652", + "Name": null + }, + "33715d15-e80c-463d-8b31-fbedafa243fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "33715d15-e80c-463d-8b31-fbedafa243fd", + "Name": "W18x40", + "EdgeId": 385 + }, + "0814bde4-623d-404f-992e-26bab4883fa4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0814bde4-623d-404f-992e-26bab4883fa4", + "Name": null + }, + "ae178a39-4f27-45b7-8829-cdc742bdf6f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ae178a39-4f27-45b7-8829-cdc742bdf6f5", + "Name": "W18x40", + "EdgeId": 387 + }, + "5c32ba28-a744-48ee-af46-8a3287d3f45c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c32ba28-a744-48ee-af46-8a3287d3f45c", + "Name": null + }, + "9e7d58e0-2394-4a53-a737-139875c5dc7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9e7d58e0-2394-4a53-a737-139875c5dc7f", + "Name": "W18x40", + "EdgeId": 388 + }, + "64442de3-4d5f-4cad-8e05-33e5d1784cb3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64442de3-4d5f-4cad-8e05-33e5d1784cb3", + "Name": null + }, + "8df09f90-c4fc-4c2e-bddc-d4531599deae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8df09f90-c4fc-4c2e-bddc-d4531599deae", + "Name": "W18x40", + "EdgeId": 390, + "ExternalEdgeId": 390 + }, + "9e0d4b17-495b-41ac-8787-b65e05887465": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9e0d4b17-495b-41ac-8787-b65e05887465", + "Name": null + }, + "104c49c5-4a16-4492-a389-993e86a706c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "104c49c5-4a16-4492-a389-993e86a706c2", + "Name": "W18x40", + "EdgeId": 391 + }, + "f4dc01cd-0805-41bc-9fbd-aa675966eb16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f4dc01cd-0805-41bc-9fbd-aa675966eb16", + "Name": null + }, + "45819a07-0377-4f96-b35c-ebfb8b10dfb5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "45819a07-0377-4f96-b35c-ebfb8b10dfb5", + "Name": "W18x40", + "EdgeId": 393 + }, + "2eff71a1-49f2-4d4e-8f58-165535c16473": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2eff71a1-49f2-4d4e-8f58-165535c16473", + "Name": null + }, + "3b6ed46a-d0f6-4f32-9a08-f7f047aaa3f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3b6ed46a-d0f6-4f32-9a08-f7f047aaa3f2", + "Name": "W18x40", + "EdgeId": 394 + }, + "416847c1-4fcd-4931-94fd-55f44df7586c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "416847c1-4fcd-4931-94fd-55f44df7586c", + "Name": null + }, + "12a373e4-f160-464e-a0ef-18bb895f4635": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "12a373e4-f160-464e-a0ef-18bb895f4635", + "Name": "W18x40", + "EdgeId": 395, + "ExternalEdgeId": 395 + }, + "312c9e72-ecf9-47f5-aa9f-e7b35c198b36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 4.5 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "312c9e72-ecf9-47f5-aa9f-e7b35c198b36", + "Name": null + }, + "847c76f8-f248-408e-b962-a7e61eb8fd2d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "847c76f8-f248-408e-b962-a7e61eb8fd2d", + "Name": "W18x40", + "EdgeId": 399, + "ExternalEdgeId": 399 + }, + "8dafe523-5d01-45ef-b715-26bb1a00f4df": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8dafe523-5d01-45ef-b715-26bb1a00f4df", + "Name": null + }, + "a160a36b-01b6-4f2f-a3ec-165f2c05aa13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a160a36b-01b6-4f2f-a3ec-165f2c05aa13", + "Name": "W18x40", + "EdgeId": 400 + }, + "0577e476-df51-4fad-a3e5-ff33e6ec5588": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0577e476-df51-4fad-a3e5-ff33e6ec5588", + "Name": null + }, + "a8a8f2c0-0e1e-4627-b27a-8f8307805127": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a8a8f2c0-0e1e-4627-b27a-8f8307805127", + "Name": "W18x40", + "EdgeId": 401 + }, + "25ac06b9-8ef6-4732-8cd1-00d1b4a4fffa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25ac06b9-8ef6-4732-8cd1-00d1b4a4fffa", + "Name": null + }, + "9267a1a4-0447-45e1-aff0-20846e3d839b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9267a1a4-0447-45e1-aff0-20846e3d839b", + "Name": "W18x40", + "EdgeId": 403 + }, + "253f18ab-d786-49ef-9f5c-8598933a4ec7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "253f18ab-d786-49ef-9f5c-8598933a4ec7", + "Name": null + }, + "1cbc815e-0d8f-475f-ae7d-1e8a6d511faa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1cbc815e-0d8f-475f-ae7d-1e8a6d511faa", + "Name": "W18x40", + "EdgeId": 404 + }, + "ddf4b673-90a1-4013-b3bf-c3b1a0e2409b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ddf4b673-90a1-4013-b3bf-c3b1a0e2409b", + "Name": null + }, + "649a01ad-d0b4-4d53-9b99-632517b2172a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "649a01ad-d0b4-4d53-9b99-632517b2172a", + "Name": "W18x40", + "EdgeId": 406 + }, + "6d543297-c151-45b1-b188-6cd797ee2285": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d543297-c151-45b1-b188-6cd797ee2285", + "Name": null + }, + "713c9309-23f4-4527-90a8-5167233eba5c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "713c9309-23f4-4527-90a8-5167233eba5c", + "Name": "W18x40", + "EdgeId": 407 + }, + "9357660f-8eec-4acb-bd9d-be170e7658ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9357660f-8eec-4acb-bd9d-be170e7658ce", + "Name": null + }, + "2bb3c432-7ec0-4aad-957f-994c26cb24b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2bb3c432-7ec0-4aad-957f-994c26cb24b3", + "Name": "W18x40", + "EdgeId": 409, + "ExternalEdgeId": 409 + }, + "8ca2205f-8655-4456-9d57-c6146c5ed35a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8ca2205f-8655-4456-9d57-c6146c5ed35a", + "Name": null + }, + "3f056e54-a892-4e0b-b4b0-347b1765c30a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3f056e54-a892-4e0b-b4b0-347b1765c30a", + "Name": "W18x40", + "EdgeId": 410 + }, + "2c3e8f2f-95c7-465e-a1fc-8f6195d6a35f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2c3e8f2f-95c7-465e-a1fc-8f6195d6a35f", + "Name": null + }, + "8a459e9f-44b8-4307-b4c8-3ec45376516b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8a459e9f-44b8-4307-b4c8-3ec45376516b", + "Name": "W18x40", + "EdgeId": 412 + }, + "49929cc0-4add-46a7-8fac-9610355983c8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49929cc0-4add-46a7-8fac-9610355983c8", + "Name": null + }, + "7b18568a-91ad-4146-8471-65965440b805": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7b18568a-91ad-4146-8471-65965440b805", + "Name": "W18x40", + "EdgeId": 413 + }, + "008ef7fa-65f7-490e-a5a7-a2a4d111ab47": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "008ef7fa-65f7-490e-a5a7-a2a4d111ab47", + "Name": null + }, + "f7f33c38-10b7-406e-89de-63d6c5522a81": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f7f33c38-10b7-406e-89de-63d6c5522a81", + "Name": "W18x40", + "EdgeId": 414, + "ExternalEdgeId": 414 + }, + "30c29c96-54d1-416a-9b97-198c4c923db0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30c29c96-54d1-416a-9b97-198c4c923db0", + "Name": null + }, + "9fbc8044-2452-4ddd-b104-7b561f8bdf19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9fbc8044-2452-4ddd-b104-7b561f8bdf19", + "Name": "W18x40", + "EdgeId": 417 + }, + "d1b10d77-49c8-4642-a634-3bc4e02cde9b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1b10d77-49c8-4642-a634-3bc4e02cde9b", + "Name": null + }, + "7f61102a-dfe9-4113-82ec-f374eeeb3f90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7f61102a-dfe9-4113-82ec-f374eeeb3f90", + "Name": "W18x40", + "EdgeId": 418 + }, + "1084d9b9-dc29-4953-8a00-e4fc03b42647": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1084d9b9-dc29-4953-8a00-e4fc03b42647", + "Name": null + }, + "27d1ffe8-96c8-4c81-be51-e376ec06d25f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "27d1ffe8-96c8-4c81-be51-e376ec06d25f", + "Name": "W18x40", + "EdgeId": 420 + }, + "18b34de6-b22b-4897-9d96-15c4d1991d3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "18b34de6-b22b-4897-9d96-15c4d1991d3f", + "Name": null + }, + "6d18d66d-7a36-436c-b2cf-00cc993788db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6d18d66d-7a36-436c-b2cf-00cc993788db", + "Name": "W18x40", + "EdgeId": 421 + }, + "578f57d7-1433-46c5-814b-78ae38400cb2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "578f57d7-1433-46c5-814b-78ae38400cb2", + "Name": null + }, + "3b423e1c-a877-4221-a221-8c4dfbd0e187": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3b423e1c-a877-4221-a221-8c4dfbd0e187", + "Name": "W18x40", + "EdgeId": 423 + }, + "7ea52dc9-565a-4ff8-8963-d66911ec7f5e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ea52dc9-565a-4ff8-8963-d66911ec7f5e", + "Name": null + }, + "e6ea7cf7-8c0a-45f7-8b14-f2979589894b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e6ea7cf7-8c0a-45f7-8b14-f2979589894b", + "Name": "W18x40", + "EdgeId": 424 + }, + "4d41e8b9-b2a4-4796-8b22-96c260fef66d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d41e8b9-b2a4-4796-8b22-96c260fef66d", + "Name": null + }, + "e7831153-d604-4c44-a914-0b6918dc68af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e7831153-d604-4c44-a914-0b6918dc68af", + "Name": "W18x40", + "EdgeId": 426, + "ExternalEdgeId": 426 + }, + "7235648b-0f6f-4231-9e5d-7f9de2c81780": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7235648b-0f6f-4231-9e5d-7f9de2c81780", + "Name": null + }, + "5f714000-5e54-458d-bbe7-ffca726908a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5f714000-5e54-458d-bbe7-ffca726908a9", + "Name": "W18x40", + "EdgeId": 427 + }, + "56101f9b-8867-42fd-9816-526ae55b646a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "56101f9b-8867-42fd-9816-526ae55b646a", + "Name": null + }, + "73d82ef5-a6b2-46b2-a132-cc7dd324259a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "73d82ef5-a6b2-46b2-a132-cc7dd324259a", + "Name": "W18x40", + "EdgeId": 429, + "ExternalEdgeId": 429 + }, + "5dedbb9e-79d9-48f1-b723-a36aeac940d8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5dedbb9e-79d9-48f1-b723-a36aeac940d8", + "Name": null + }, + "e8004738-0626-4beb-8c08-00db5d95a624": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e8004738-0626-4beb-8c08-00db5d95a624", + "Name": "W18x40", + "EdgeId": 430 + }, + "e4323265-26da-4946-b144-f9eddee07379": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4323265-26da-4946-b144-f9eddee07379", + "Name": null + }, + "32408f50-cc83-4827-b93b-648ebad40097": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "32408f50-cc83-4827-b93b-648ebad40097", + "Name": "W18x40", + "EdgeId": 431 + }, + "a8284ffb-52e5-4a8f-8bd6-7973fb1e8588": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a8284ffb-52e5-4a8f-8bd6-7973fb1e8588", + "Name": null + }, + "f5ab5f57-1803-42d5-ab6d-e6ee86f62cbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f5ab5f57-1803-42d5-ab6d-e6ee86f62cbf", + "Name": "W18x40", + "EdgeId": 432, + "ExternalEdgeId": 432 + }, + "4007b698-78dc-4890-bebf-5692fdbbd43b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4007b698-78dc-4890-bebf-5692fdbbd43b", + "Name": null + }, + "a74c3554-0a61-4b0b-9120-993989ab26a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a74c3554-0a61-4b0b-9120-993989ab26a4", + "Name": "W18x40", + "EdgeId": 436 + }, + "73ba442c-a45a-439c-8dc8-5a0b2f4606d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73ba442c-a45a-439c-8dc8-5a0b2f4606d3", + "Name": null + }, + "2110c24d-f114-4bf8-b4dc-63d22bcfda09": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2110c24d-f114-4bf8-b4dc-63d22bcfda09", + "Name": "W18x40", + "EdgeId": 437 + }, + "195d04a7-372b-42bd-9725-ae7e8ccce118": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "195d04a7-372b-42bd-9725-ae7e8ccce118", + "Name": null + }, + "66b14883-7a7a-438f-8717-fd0904df8d27": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "66b14883-7a7a-438f-8717-fd0904df8d27", + "Name": "W18x40", + "EdgeId": 439 + }, + "29a5217f-850a-4143-97de-af8ec842764d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "29a5217f-850a-4143-97de-af8ec842764d", + "Name": null + }, + "2ea79f52-0eb6-4e89-9a95-7bd922a0e78e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2ea79f52-0eb6-4e89-9a95-7bd922a0e78e", + "Name": "W18x40", + "EdgeId": 440 + }, + "1824fdfa-4793-4e1b-8613-fcbc78c14c51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1824fdfa-4793-4e1b-8613-fcbc78c14c51", + "Name": null + }, + "ed751285-34d5-414a-85dd-58bdf461faf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ed751285-34d5-414a-85dd-58bdf461faf8", + "Name": "W18x40", + "EdgeId": 442 + }, + "8fcc4ba8-5084-469f-8415-db61f7a0c1b2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8fcc4ba8-5084-469f-8415-db61f7a0c1b2", + "Name": null + }, + "4083fd59-fa75-424a-bcf4-84af740ad572": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4083fd59-fa75-424a-bcf4-84af740ad572", + "Name": "W18x40", + "EdgeId": 443 + }, + "e51fd538-194e-4abb-b1f1-884bd6471568": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e51fd538-194e-4abb-b1f1-884bd6471568", + "Name": null + }, + "f0c83f7b-a5c3-473f-940a-c0ebd646916e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f0c83f7b-a5c3-473f-940a-c0ebd646916e", + "Name": "W18x40", + "EdgeId": 445, + "ExternalEdgeId": 445 + }, + "2cf14a56-d854-4c73-af24-f33793017b0c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2cf14a56-d854-4c73-af24-f33793017b0c", + "Name": null + }, + "46ed86de-64bb-4902-b188-98db4ee2e175": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "46ed86de-64bb-4902-b188-98db4ee2e175", + "Name": "W18x40", + "EdgeId": 446 + }, + "eadf1133-5eca-45d7-9c55-ec26a1018752": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eadf1133-5eca-45d7-9c55-ec26a1018752", + "Name": null + }, + "e1c5627c-fc71-4ef1-8d6f-6b4e573d0993": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e1c5627c-fc71-4ef1-8d6f-6b4e573d0993", + "Name": "W18x40", + "EdgeId": 448 + }, + "0d401603-857a-4692-8813-8a3b73af5578": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0d401603-857a-4692-8813-8a3b73af5578", + "Name": null + }, + "b79410e0-c167-41e1-8726-65dba97a33b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b79410e0-c167-41e1-8726-65dba97a33b3", + "Name": "W18x40", + "EdgeId": 449 + }, + "c9bc4f63-ee39-4ded-919e-2d44b9237177": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c9bc4f63-ee39-4ded-919e-2d44b9237177", + "Name": null + }, + "aa1588e4-2804-4100-a062-d5127b4dc8f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "aa1588e4-2804-4100-a062-d5127b4dc8f1", + "Name": "W18x40", + "EdgeId": 450, + "ExternalEdgeId": 450 + }, + "cd81d1f2-ecc9-4565-8c54-adb26184d4ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cd81d1f2-ecc9-4565-8c54-adb26184d4ff", + "Name": null + }, + "fff28568-1fe8-401e-9968-258e175b2e69": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fff28568-1fe8-401e-9968-258e175b2e69", + "Name": "W18x40", + "EdgeId": 453 + }, + "9978c910-dd89-4f77-b64d-23df3a81825b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9978c910-dd89-4f77-b64d-23df3a81825b", + "Name": null + }, + "ee17cc36-e38b-49f1-a74b-85754d3eaa4a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ee17cc36-e38b-49f1-a74b-85754d3eaa4a", + "Name": "W18x40", + "EdgeId": 454 + }, + "06ca1c3f-92b1-4a5b-bc4f-9c9f027f757b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "06ca1c3f-92b1-4a5b-bc4f-9c9f027f757b", + "Name": null + }, + "c98792b3-04a5-49f4-9915-2c94212b7fe7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c98792b3-04a5-49f4-9915-2c94212b7fe7", + "Name": "W18x40", + "EdgeId": 456 + }, + "5dd74521-1769-4163-9424-d980103ddbb0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5dd74521-1769-4163-9424-d980103ddbb0", + "Name": null + }, + "072f4e73-3da9-486f-90bc-0329df07512a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "072f4e73-3da9-486f-90bc-0329df07512a", + "Name": "W18x40", + "EdgeId": 457 + }, + "cfbc82bf-57b1-4d90-84fa-5e13b704a778": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfbc82bf-57b1-4d90-84fa-5e13b704a778", + "Name": null + }, + "a8003fbf-556a-4bb9-bdd9-63b0212fe18d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a8003fbf-556a-4bb9-bdd9-63b0212fe18d", + "Name": "W18x40", + "EdgeId": 459 + }, + "ef153aba-9d58-47bb-a1a4-2911b17de41f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef153aba-9d58-47bb-a1a4-2911b17de41f", + "Name": null + }, + "408ced1f-be08-4106-887a-62e256471875": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "408ced1f-be08-4106-887a-62e256471875", + "Name": "W18x40", + "EdgeId": 460 + }, + "edeef0c9-53c1-40e5-a952-f959d87ad14c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "edeef0c9-53c1-40e5-a952-f959d87ad14c", + "Name": null + }, + "202f4b4c-a6ce-4a09-abfd-4173f238376b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "202f4b4c-a6ce-4a09-abfd-4173f238376b", + "Name": "W18x40", + "EdgeId": 462, + "ExternalEdgeId": 462 + }, + "bddc1693-3599-46ae-8fac-3ec141bb8769": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bddc1693-3599-46ae-8fac-3ec141bb8769", + "Name": null + }, + "38322f4a-9058-46aa-a786-28846e770b10": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "38322f4a-9058-46aa-a786-28846e770b10", + "Name": "W18x40", + "EdgeId": 463 + }, + "e3e92db6-a2e5-406e-8c22-9bb781763552": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3e92db6-a2e5-406e-8c22-9bb781763552", + "Name": null + }, + "e19c675b-1e8b-4762-948d-31e27a5ce963": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e19c675b-1e8b-4762-948d-31e27a5ce963", + "Name": "W18x40", + "EdgeId": 465 + }, + "d07b6671-6ba0-488b-87d3-adbe1c0a7484": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d07b6671-6ba0-488b-87d3-adbe1c0a7484", + "Name": null + }, + "35333aed-6c8a-4b8a-b6d8-a8273f32dcb3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "35333aed-6c8a-4b8a-b6d8-a8273f32dcb3", + "Name": "W18x40", + "EdgeId": 466 + }, + "2d6c93c9-9d15-47f0-9f31-7845171aa504": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d6c93c9-9d15-47f0-9f31-7845171aa504", + "Name": null + }, + "2580066f-8237-4d91-937f-2372c6d7abe9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2580066f-8237-4d91-937f-2372c6d7abe9", + "Name": "W18x40", + "EdgeId": 467, + "ExternalEdgeId": 467 + }, + "94b0cf9d-a4d6-46ab-8f03-22871c3d919d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "94b0cf9d-a4d6-46ab-8f03-22871c3d919d", + "Name": null + }, + "5bd49134-a8e6-4cf7-aafa-769be27b6e8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5bd49134-a8e6-4cf7-aafa-769be27b6e8d", + "Name": "W18x40", + "EdgeId": 470 + }, + "9673e9b7-47c4-4fe7-9858-70aa7c7fcb21": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9673e9b7-47c4-4fe7-9858-70aa7c7fcb21", + "Name": null + }, + "f3da95cd-fd36-4904-ac2a-e22d74980eed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f3da95cd-fd36-4904-ac2a-e22d74980eed", + "Name": "W18x40", + "EdgeId": 471 + }, + "d7a6c2c8-e952-4723-9da2-f3a700a7352c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d7a6c2c8-e952-4723-9da2-f3a700a7352c", + "Name": null + }, + "781f9978-5ed2-487d-849e-e13f09067163": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "781f9978-5ed2-487d-849e-e13f09067163", + "Name": "W18x40", + "EdgeId": 473 + }, + "06b06cdd-6655-4f1b-b950-d62b64cdc5c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "06b06cdd-6655-4f1b-b950-d62b64cdc5c1", + "Name": null + }, + "c6dbc864-7a61-44c7-9d78-1540a133cbb9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c6dbc864-7a61-44c7-9d78-1540a133cbb9", + "Name": "W18x40", + "EdgeId": 474 + }, + "21ad6249-617e-4ab0-9ebb-e8046d05fd5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21ad6249-617e-4ab0-9ebb-e8046d05fd5a", + "Name": null + }, + "898c5207-cd7b-4b78-8662-4fcabf1b860b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "898c5207-cd7b-4b78-8662-4fcabf1b860b", + "Name": "W18x40", + "EdgeId": 476 + }, + "4e226bf1-de18-4c4c-bcfe-04c032592a0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e226bf1-de18-4c4c-bcfe-04c032592a0a", + "Name": null + }, + "c028ef97-ecfa-4670-8b41-80f0d0a92318": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c028ef97-ecfa-4670-8b41-80f0d0a92318", + "Name": "W18x40", + "EdgeId": 477 + }, + "344aaf41-0de7-43b2-9220-48b619e7e23e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "344aaf41-0de7-43b2-9220-48b619e7e23e", + "Name": null + }, + "ec832f5f-50c4-440e-9bfb-9d9b9738fa02": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ec832f5f-50c4-440e-9bfb-9d9b9738fa02", + "Name": "W18x40", + "EdgeId": 479, + "ExternalEdgeId": 479 + }, + "3e915036-6d9b-4e7a-b9f6-b64a8581a075": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3e915036-6d9b-4e7a-b9f6-b64a8581a075", + "Name": null + }, + "b5888ddd-b9ef-4e23-9534-565cafcb157d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b5888ddd-b9ef-4e23-9534-565cafcb157d", + "Name": "W18x40", + "EdgeId": 480 + }, + "83b916ff-734b-4d7b-9f6f-9606284c4189": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83b916ff-734b-4d7b-9f6f-9606284c4189", + "Name": null + }, + "51c40da0-79ed-4900-a96f-cf620f4870ac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "51c40da0-79ed-4900-a96f-cf620f4870ac", + "Name": "W18x40", + "EdgeId": 482 + }, + "88d5337b-e54c-477f-884e-8101e3cae098": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "88d5337b-e54c-477f-884e-8101e3cae098", + "Name": null + }, + "4213249f-7d5b-4f8c-ae84-9f5ad218a3b1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4213249f-7d5b-4f8c-ae84-9f5ad218a3b1", + "Name": "W18x40", + "EdgeId": 483 + }, + "54c567fc-0b1a-46e4-a803-88d69edc6489": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "54c567fc-0b1a-46e4-a803-88d69edc6489", + "Name": null + }, + "12ad9ce2-4321-4264-a566-07768ba4e2c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "12ad9ce2-4321-4264-a566-07768ba4e2c1", + "Name": "W18x40", + "EdgeId": 484, + "ExternalEdgeId": 484 + }, + "cd019d14-61a4-45d4-9620-465183fae753": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cd019d14-61a4-45d4-9620-465183fae753", + "Name": null + }, + "c8dde09f-beea-4648-8823-300f7bbaa4eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c8dde09f-beea-4648-8823-300f7bbaa4eb", + "Name": "W18x40", + "EdgeId": 487 + }, + "091509da-b7d5-4719-8777-ac41c1b4ae6f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "091509da-b7d5-4719-8777-ac41c1b4ae6f", + "Name": null + }, + "cb1771b1-8be6-4ae0-9ca9-641f72c0ec21": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cb1771b1-8be6-4ae0-9ca9-641f72c0ec21", + "Name": "W18x40", + "EdgeId": 488 + }, + "6bad82ac-248a-41f4-8c14-b4d8593d498a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6bad82ac-248a-41f4-8c14-b4d8593d498a", + "Name": null + }, + "3cd2302f-863f-4789-b78c-864c4504c151": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3cd2302f-863f-4789-b78c-864c4504c151", + "Name": "W18x40", + "EdgeId": 490 + }, + "407c9a72-8c14-4915-97ba-f5043fd4b307": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "407c9a72-8c14-4915-97ba-f5043fd4b307", + "Name": null + }, + "d49e6c12-100f-4f98-a8d3-0f869b94934e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d49e6c12-100f-4f98-a8d3-0f869b94934e", + "Name": "W18x40", + "EdgeId": 491 + }, + "dc3c545d-c603-4230-98f3-e632009d19cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc3c545d-c603-4230-98f3-e632009d19cd", + "Name": null + }, + "63ae07e2-98ce-4baa-a154-63fca89ad3f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "63ae07e2-98ce-4baa-a154-63fca89ad3f8", + "Name": "W18x40", + "EdgeId": 493 + }, + "f871cfc6-b8a0-49f6-8e69-a7d8a9d8f3cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f871cfc6-b8a0-49f6-8e69-a7d8a9d8f3cf", + "Name": null + }, + "e18772cd-c699-41f3-8af6-efbab1c35001": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e18772cd-c699-41f3-8af6-efbab1c35001", + "Name": "W18x40", + "EdgeId": 494 + }, + "134a0fe3-d9ed-4fcb-b0b9-45c1d32f1ca4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "134a0fe3-d9ed-4fcb-b0b9-45c1d32f1ca4", + "Name": null + }, + "8ff37956-7786-4ce0-96b8-8c6570207400": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8ff37956-7786-4ce0-96b8-8c6570207400", + "Name": "W18x40", + "EdgeId": 496, + "ExternalEdgeId": 496 + }, + "7fec4a62-3fcb-49c6-9213-83efaeb037a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7fec4a62-3fcb-49c6-9213-83efaeb037a3", + "Name": null + }, + "0864ec9b-91aa-4b7f-8815-45325fc29f2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0864ec9b-91aa-4b7f-8815-45325fc29f2a", + "Name": "W18x40", + "EdgeId": 497 + }, + "f4593ac0-13c3-4977-b06f-935f4954cfb8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f4593ac0-13c3-4977-b06f-935f4954cfb8", + "Name": null + }, + "24133a3b-98ad-4df5-a8b1-b2ba54cfec4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "24133a3b-98ad-4df5-a8b1-b2ba54cfec4e", + "Name": "W18x40", + "EdgeId": 499 + }, + "b5a5e7a6-294c-4f53-9acf-6625b08d6c16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5a5e7a6-294c-4f53-9acf-6625b08d6c16", + "Name": null + }, + "e48a76ca-de62-4c0a-9eb3-3a3171c525f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e48a76ca-de62-4c0a-9eb3-3a3171c525f7", + "Name": "W18x40", + "EdgeId": 500 + }, + "042604eb-4a63-4775-9b3e-c972f2826472": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "042604eb-4a63-4775-9b3e-c972f2826472", + "Name": null + }, + "ea16284c-c2b8-4010-9cf2-72c882acc2f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ea16284c-c2b8-4010-9cf2-72c882acc2f3", + "Name": "W18x40", + "EdgeId": 501, + "ExternalEdgeId": 501 + }, + "2b77f4af-f61a-4d56-84b6-26f42bc05c36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b77f4af-f61a-4d56-84b6-26f42bc05c36", + "Name": null + }, + "35539d96-d549-4c0c-a473-254181c0f522": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "35539d96-d549-4c0c-a473-254181c0f522", + "Name": "W18x40", + "EdgeId": 504 + }, + "21357ccc-2127-4f97-908f-4f3192d3dc53": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21357ccc-2127-4f97-908f-4f3192d3dc53", + "Name": null + }, + "5b9182eb-9dd8-4f91-99f0-84a49cdbde12": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5b9182eb-9dd8-4f91-99f0-84a49cdbde12", + "Name": "W18x40", + "EdgeId": 505 + }, + "9f9aed96-f99d-4ab6-9084-57d8f9056ecb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f9aed96-f99d-4ab6-9084-57d8f9056ecb", + "Name": null + }, + "0cfb36e1-67cc-47b3-97c0-f43c1cfb38a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0cfb36e1-67cc-47b3-97c0-f43c1cfb38a0", + "Name": "W18x40", + "EdgeId": 507 + }, + "ce81b307-6508-4089-9325-9c1258910861": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ce81b307-6508-4089-9325-9c1258910861", + "Name": null + }, + "fa15ba16-d9d4-4e0c-b6c0-a15393bbf965": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa15ba16-d9d4-4e0c-b6c0-a15393bbf965", + "Name": "W18x40", + "EdgeId": 508 + }, + "3916623a-8af1-47b3-94fd-6cf921adb0d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3916623a-8af1-47b3-94fd-6cf921adb0d0", + "Name": null + }, + "1c7fff3d-db80-4626-bf22-e3490fa22e5e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1c7fff3d-db80-4626-bf22-e3490fa22e5e", + "Name": "W18x40", + "EdgeId": 510 + }, + "30efc5a2-57d2-47e5-bb15-956d56f7d0f8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30efc5a2-57d2-47e5-bb15-956d56f7d0f8", + "Name": null + }, + "7b2471a0-6ddf-4c44-8621-674fff7db443": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7b2471a0-6ddf-4c44-8621-674fff7db443", + "Name": "W18x40", + "EdgeId": 511 + }, + "78c0a8a3-c448-414a-b071-ff83bfc9950c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "78c0a8a3-c448-414a-b071-ff83bfc9950c", + "Name": null + }, + "fa03b414-d8bb-49cb-bff2-6f12bbff989d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa03b414-d8bb-49cb-bff2-6f12bbff989d", + "Name": "W18x40", + "EdgeId": 513, + "ExternalEdgeId": 513 + }, + "716c77e2-9bb4-4fd2-a9e3-91cbb2ee1582": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "716c77e2-9bb4-4fd2-a9e3-91cbb2ee1582", + "Name": null + }, + "5fb29c1c-1de2-42e9-8fa0-22843ac23f97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5fb29c1c-1de2-42e9-8fa0-22843ac23f97", + "Name": "W18x40", + "EdgeId": 514 + }, + "23008b41-5a5c-4bc3-bdea-0fe8a1f0fe93": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23008b41-5a5c-4bc3-bdea-0fe8a1f0fe93", + "Name": null + }, + "786e1ae8-4b5c-41f1-bf7d-2605505edd95": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "786e1ae8-4b5c-41f1-bf7d-2605505edd95", + "Name": "W18x40", + "EdgeId": 516 + }, + "1477736d-1342-4704-a8a1-1cae631da591": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1477736d-1342-4704-a8a1-1cae631da591", + "Name": null + }, + "dcbb564e-b680-41d3-a03c-4b4b7331f018": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dcbb564e-b680-41d3-a03c-4b4b7331f018", + "Name": "W18x40", + "EdgeId": 517, + "ExternalEdgeId": 517 + }, + "50fcfc58-7b38-4936-bef9-402960d869cb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "50fcfc58-7b38-4936-bef9-402960d869cb", + "Name": null + }, + "7a499bf1-09e7-4c46-88b9-9ee39f48dfb5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7a499bf1-09e7-4c46-88b9-9ee39f48dfb5", + "Name": "W18x40", + "EdgeId": 518, + "ExternalEdgeId": 518 + }, + "6e3484f9-2666-4ddb-8991-52481c425075": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e3484f9-2666-4ddb-8991-52481c425075", + "Name": null + }, + "a91312c2-1538-46bb-9fcb-67610f58662b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a91312c2-1538-46bb-9fcb-67610f58662b", + "Name": "W18x40", + "EdgeId": 521 + }, + "363d564e-15ee-404e-992d-757c898f3c58": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "363d564e-15ee-404e-992d-757c898f3c58", + "Name": null + }, + "f8cff8e0-7525-49ef-a226-c844fcf92da8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f8cff8e0-7525-49ef-a226-c844fcf92da8", + "Name": "W18x40", + "EdgeId": 522, + "ExternalEdgeId": 522 + }, + "9f9f8a52-f753-4bef-8f60-e9577263d57d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f9f8a52-f753-4bef-8f60-e9577263d57d", + "Name": null + }, + "01386b9d-711d-45a3-9cdb-a64d2d9ef76b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "01386b9d-711d-45a3-9cdb-a64d2d9ef76b", + "Name": "W18x40", + "EdgeId": 524 + }, + "66d53930-aaac-45ae-9a6a-811bf8ada88d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "66d53930-aaac-45ae-9a6a-811bf8ada88d", + "Name": null + }, + "4d999ee2-79be-4e87-9ee5-303dd62ee13a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4d999ee2-79be-4e87-9ee5-303dd62ee13a", + "Name": "W18x40", + "EdgeId": 525, + "ExternalEdgeId": 525 + }, + "881990a9-c500-4dc6-a9ee-768a38cc6ddf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "881990a9-c500-4dc6-a9ee-768a38cc6ddf", + "Name": null + }, + "65b564be-5588-4955-834f-99c5532759b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "65b564be-5588-4955-834f-99c5532759b9", + "Name": "W18x40", + "EdgeId": 527 + }, + "1d4514bd-1943-48d0-b1f4-ea4dd6905f95": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1d4514bd-1943-48d0-b1f4-ea4dd6905f95", + "Name": null + }, + "cf5f8d4b-791d-48ba-9630-67652ad9333d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cf5f8d4b-791d-48ba-9630-67652ad9333d", + "Name": "W18x40", + "EdgeId": 528, + "ExternalEdgeId": 528 + }, + "2c3b4e05-70f1-496f-b415-71a5783f4c2f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2c3b4e05-70f1-496f-b415-71a5783f4c2f", + "Name": null + }, + "2ba9ddbc-d2c4-4659-8567-09c4564d5705": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2ba9ddbc-d2c4-4659-8567-09c4564d5705", + "Name": "W18x40", + "EdgeId": 530, + "ExternalEdgeId": 530 + }, + "1cc1cd68-4ef8-4d29-9d15-36a5464b483a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1cc1cd68-4ef8-4d29-9d15-36a5464b483a", + "Name": null + }, + "3d7ba69a-bce3-41f4-a9f2-230aaea63481": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "3d7ba69a-bce3-41f4-a9f2-230aaea63481", + "Name": "W18x40", + "EdgeId": 531, + "ExternalEdgeId": 531 + }, + "8613ad7e-d740-41cf-997b-a381e7de7eec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8613ad7e-d740-41cf-997b-a381e7de7eec", + "Name": null + }, + "82709de5-2093-458e-9b1a-bf8f09b499f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "82709de5-2093-458e-9b1a-bf8f09b499f3", + "Name": "W18x40", + "EdgeId": 533, + "ExternalEdgeId": 533 + }, + "6d98902a-e135-4064-8535-dfecaba53d8d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d98902a-e135-4064-8535-dfecaba53d8d", + "Name": null + }, + "732896dc-6029-4516-b565-d888f81fdb55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "732896dc-6029-4516-b565-d888f81fdb55", + "Name": "W18x40", + "EdgeId": 534 + }, + "e026282a-23cc-4d9d-94ba-5c4434ab22fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e026282a-23cc-4d9d-94ba-5c4434ab22fc", + "Name": null + }, + "531a3451-a5de-4441-b5e3-0aa303ab18c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "531a3451-a5de-4441-b5e3-0aa303ab18c4", + "Name": "W18x40", + "EdgeId": 535 + }, + "df0903f7-b1e5-4d10-b88d-966e28ff3c39": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df0903f7-b1e5-4d10-b88d-966e28ff3c39", + "Name": null + }, + "dfba7895-9944-49af-99b9-12735d7dac29": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "dfba7895-9944-49af-99b9-12735d7dac29", + "Name": "W18x40", + "EdgeId": 536, + "ExternalEdgeId": 536 + }, + "f3809848-30d4-45a8-b2df-ea6b9eebc03e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f3809848-30d4-45a8-b2df-ea6b9eebc03e", + "Name": null + }, + "6da1a03b-f3ce-412d-8484-2aa7a29e1872": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6da1a03b-f3ce-412d-8484-2aa7a29e1872", + "Name": "W18x40", + "EdgeId": 541, + "ExternalEdgeId": 541 + }, + "2126646f-4b86-4108-8ecc-2225934277c9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2126646f-4b86-4108-8ecc-2225934277c9", + "Name": null + }, + "0d9f7576-3e6b-4547-b7b4-19a2373142b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0d9f7576-3e6b-4547-b7b4-19a2373142b9", + "Name": "W18x40", + "EdgeId": 542 + }, + "44dc0ab1-c628-43e8-9341-5895e14481f8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44dc0ab1-c628-43e8-9341-5895e14481f8", + "Name": null + }, + "36309f39-2557-46c6-91e4-d10f1bed4595": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "36309f39-2557-46c6-91e4-d10f1bed4595", + "Name": "W18x40", + "EdgeId": 543 + }, + "6fb7cada-40a5-4868-bf0e-9a472581bcc6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6fb7cada-40a5-4868-bf0e-9a472581bcc6", + "Name": null + }, + "77c2d152-c901-4a73-844e-1759d5dc9add": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "77c2d152-c901-4a73-844e-1759d5dc9add", + "Name": "W18x40", + "EdgeId": 546, + "ExternalEdgeId": 546 + }, + "e6ce235e-5bdf-4047-8259-52641e61fc5b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6ce235e-5bdf-4047-8259-52641e61fc5b", + "Name": null + }, + "aaba0f83-47fd-4085-a5d5-b09583bdd0d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "aaba0f83-47fd-4085-a5d5-b09583bdd0d6", + "Name": "W18x40", + "EdgeId": 547, + "ExternalEdgeId": 547 + }, + "e34cd9b7-913a-4ca6-8917-96cfd57abcf2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e34cd9b7-913a-4ca6-8917-96cfd57abcf2", + "Name": null + }, + "553d02eb-e5a8-4e1e-856f-8ac87d14ae03": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "553d02eb-e5a8-4e1e-856f-8ac87d14ae03", + "Name": "W18x40", + "EdgeId": 548 + }, + "b5864596-d19a-47e6-9735-ccc266d3dafe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5864596-d19a-47e6-9735-ccc266d3dafe", + "Name": null + }, + "ef4fc27e-f345-4cfb-9905-fce410f57cd4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ef4fc27e-f345-4cfb-9905-fce410f57cd4", + "Name": "W18x40", + "EdgeId": 551 + }, + "7e4b8d91-7179-480a-9357-72ff32f91015": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e4b8d91-7179-480a-9357-72ff32f91015", + "Name": null + }, + "440c0fb1-907a-4b70-b03d-33d3f8b3ad43": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "440c0fb1-907a-4b70-b03d-33d3f8b3ad43", + "Name": "W18x40", + "EdgeId": 552 + }, + "4d104296-008e-4bfb-93b6-8be080f77e15": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d104296-008e-4bfb-93b6-8be080f77e15", + "Name": null + }, + "b7d5d464-f8cd-4643-83c9-100af647f3e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b7d5d464-f8cd-4643-83c9-100af647f3e1", + "Name": "W18x40", + "EdgeId": 553, + "ExternalEdgeId": 553 + }, + "159f6e96-82cd-4825-a48e-dd6566c370ec": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 8.35 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "159f6e96-82cd-4825-a48e-dd6566c370ec", + "Name": null + }, + "bf4e21aa-36d6-4319-90d2-5782f1f92c55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bf4e21aa-36d6-4319-90d2-5782f1f92c55", + "Name": "W18x40", + "EdgeId": 557, + "ExternalEdgeId": 557 + }, + "8cfed69e-0e43-4388-860d-aa71121e6044": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8cfed69e-0e43-4388-860d-aa71121e6044", + "Name": null + }, + "30381bd3-9e57-456f-861c-2bf567df1fbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "30381bd3-9e57-456f-861c-2bf567df1fbb", + "Name": "W18x40", + "EdgeId": 558 + }, + "ae148857-66ec-469b-90f6-00728af88075": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae148857-66ec-469b-90f6-00728af88075", + "Name": null + }, + "ae9b234a-15df-4841-a6f5-56d479728ba4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ae9b234a-15df-4841-a6f5-56d479728ba4", + "Name": "W18x40", + "EdgeId": 559 + }, + "f040c36d-4668-4a29-93a2-fd43a2e108ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f040c36d-4668-4a29-93a2-fd43a2e108ff", + "Name": null + }, + "c27b6bdf-486b-4eae-9318-8e0cdb2240d2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c27b6bdf-486b-4eae-9318-8e0cdb2240d2", + "Name": "W18x40", + "EdgeId": 561 + }, + "45e5953a-6668-4da1-a880-015d7774fa29": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "45e5953a-6668-4da1-a880-015d7774fa29", + "Name": null + }, + "9cdae8d5-38db-4c6a-b6fc-b16bafe93936": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9cdae8d5-38db-4c6a-b6fc-b16bafe93936", + "Name": "W18x40", + "EdgeId": 562 + }, + "5a52281c-f6ae-441e-bb7c-6b2458845a68": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a52281c-f6ae-441e-bb7c-6b2458845a68", + "Name": null + }, + "cbffc2b6-d5bd-408d-80c6-bc302d4e2ec2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cbffc2b6-d5bd-408d-80c6-bc302d4e2ec2", + "Name": "W18x40", + "EdgeId": 564, + "ExternalEdgeId": 564 + }, + "faa27509-b0a8-4807-994e-970d95778a66": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "faa27509-b0a8-4807-994e-970d95778a66", + "Name": null + }, + "d45af803-8b10-4bbf-80ce-987d8634c059": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d45af803-8b10-4bbf-80ce-987d8634c059", + "Name": "W18x40", + "EdgeId": 565 + }, + "5ee3ed80-b8d1-4db3-83d8-c567b68ff4d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5ee3ed80-b8d1-4db3-83d8-c567b68ff4d9", + "Name": null + }, + "18251fd4-4c52-4057-9d41-0a7d1ba8403a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "18251fd4-4c52-4057-9d41-0a7d1ba8403a", + "Name": "W18x40", + "EdgeId": 567 + }, + "13619d49-7821-4ce6-9bf9-b6158ba7147d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "13619d49-7821-4ce6-9bf9-b6158ba7147d", + "Name": null + }, + "2646a5ea-75f3-4afe-8776-a34d3cba01b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2646a5ea-75f3-4afe-8776-a34d3cba01b9", + "Name": "W18x40", + "EdgeId": 568 + }, + "08286746-8261-43b9-b1d4-add93b0442b8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "08286746-8261-43b9-b1d4-add93b0442b8", + "Name": null + }, + "e99f1d37-12b3-4b77-aaeb-c0514863ceb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e99f1d37-12b3-4b77-aaeb-c0514863ceb8", + "Name": "W18x40", + "EdgeId": 569, + "ExternalEdgeId": 569 + }, + "7fc26bbb-689f-48cf-9694-f9a5d20bb297": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7fc26bbb-689f-48cf-9694-f9a5d20bb297", + "Name": null + }, + "11dcb1b5-c7ad-4955-a308-680dea537863": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "11dcb1b5-c7ad-4955-a308-680dea537863", + "Name": "W18x40", + "EdgeId": 572 + }, + "e48e653f-9cae-404f-8781-a38cba71622d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e48e653f-9cae-404f-8781-a38cba71622d", + "Name": null + }, + "60f6edbf-099b-4403-b538-fd86f4a94318": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "60f6edbf-099b-4403-b538-fd86f4a94318", + "Name": "W18x40", + "EdgeId": 573 + }, + "e5c8b139-92b6-4522-bc54-a0e58c4da197": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5c8b139-92b6-4522-bc54-a0e58c4da197", + "Name": null + }, + "2b8db37d-b668-4583-8713-c8fb4f01e2a7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2b8db37d-b668-4583-8713-c8fb4f01e2a7", + "Name": "W18x40", + "EdgeId": 575 + }, + "81e09bb2-cc85-4668-8a92-d16ab3dbb658": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "81e09bb2-cc85-4668-8a92-d16ab3dbb658", + "Name": null + }, + "5f562ec8-560f-4f50-9a8d-02c1a9ee9129": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5f562ec8-560f-4f50-9a8d-02c1a9ee9129", + "Name": "W18x40", + "EdgeId": 576 + }, + "b67b9ecd-f0bd-414f-bb6f-faa4582132a1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b67b9ecd-f0bd-414f-bb6f-faa4582132a1", + "Name": null + }, + "b86d4b15-fade-4abd-92f9-beda551ec426": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b86d4b15-fade-4abd-92f9-beda551ec426", + "Name": "W18x40", + "EdgeId": 578, + "ExternalEdgeId": 578 + }, + "facd80c3-d842-4c86-8557-33393436f4f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "facd80c3-d842-4c86-8557-33393436f4f1", + "Name": null + }, + "a768dd55-59da-49e7-8f55-326e2bae23b2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a768dd55-59da-49e7-8f55-326e2bae23b2", + "Name": "W18x40", + "EdgeId": 579 + }, + "87d71f27-cec5-48c6-be6f-0fe77e64b67a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87d71f27-cec5-48c6-be6f-0fe77e64b67a", + "Name": null + }, + "b3a10a02-d1b6-47eb-a34f-a80ed7de65e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b3a10a02-d1b6-47eb-a34f-a80ed7de65e8", + "Name": "W18x40", + "EdgeId": 581 + }, + "32c08391-736b-48b8-a108-94c861adcf80": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32c08391-736b-48b8-a108-94c861adcf80", + "Name": null + }, + "40815228-0652-4a31-8667-2ad82257949f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "40815228-0652-4a31-8667-2ad82257949f", + "Name": "W18x40", + "EdgeId": 582 + }, + "1ed54863-c7e7-4e55-ab4e-7478d51f99d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ed54863-c7e7-4e55-ab4e-7478d51f99d7", + "Name": null + }, + "cdaf6ec3-2eab-4656-bd6d-4c2f0c9dd196": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cdaf6ec3-2eab-4656-bd6d-4c2f0c9dd196", + "Name": "W18x40", + "EdgeId": 583, + "ExternalEdgeId": 583 + }, + "6595382e-b658-40f8-8d1f-e02731fce3b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6595382e-b658-40f8-8d1f-e02731fce3b0", + "Name": null + }, + "d08eaf1f-fdb0-4cd9-bc05-a4461fe773a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d08eaf1f-fdb0-4cd9-bc05-a4461fe773a8", + "Name": "W18x40", + "EdgeId": 586 + }, + "c1f1347b-b979-4744-b514-0d41c7705bbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c1f1347b-b979-4744-b514-0d41c7705bbd", + "Name": null + }, + "50f1b3e2-ae23-4fc3-b661-a216a7e4cbe5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "50f1b3e2-ae23-4fc3-b661-a216a7e4cbe5", + "Name": "W18x40", + "EdgeId": 587 + }, + "9564ff58-bd64-4b45-ba6a-0788332140e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9564ff58-bd64-4b45-ba6a-0788332140e9", + "Name": null + }, + "d8a38080-0444-4ee4-8216-05ba26e27146": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d8a38080-0444-4ee4-8216-05ba26e27146", + "Name": "W18x40", + "EdgeId": 589 + }, + "9fa86edd-b765-44e1-be26-306e501b9f58": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fa86edd-b765-44e1-be26-306e501b9f58", + "Name": null + }, + "57bc1d9b-b00a-40c9-8723-e6fc6d208f18": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "57bc1d9b-b00a-40c9-8723-e6fc6d208f18", + "Name": "W18x40", + "EdgeId": 590 + }, + "6e6de7ef-42cf-473d-90d5-adcfbbe260c4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e6de7ef-42cf-473d-90d5-adcfbbe260c4", + "Name": null + }, + "8cc1458c-393e-49dc-9324-dc9d1822744e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8cc1458c-393e-49dc-9324-dc9d1822744e", + "Name": "W18x40", + "EdgeId": 592, + "ExternalEdgeId": 592 + }, + "5826ef4b-f0a3-406d-931f-d439b158936c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5826ef4b-f0a3-406d-931f-d439b158936c", + "Name": null + }, + "936fe620-b84d-4c04-bb11-d1f35ce79776": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "936fe620-b84d-4c04-bb11-d1f35ce79776", + "Name": "W18x40", + "EdgeId": 593 + }, + "088af1c1-ecd6-41ca-9be4-2d964a97a977": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "088af1c1-ecd6-41ca-9be4-2d964a97a977", + "Name": null + }, + "efc11817-9104-4a7a-9f5b-33ad621e0417": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "efc11817-9104-4a7a-9f5b-33ad621e0417", + "Name": "W18x40", + "EdgeId": 595 + }, + "3c89d32b-5a44-4c7f-af26-228e77df13cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c89d32b-5a44-4c7f-af26-228e77df13cd", + "Name": null + }, + "ba888f8b-b24f-4d6e-a97e-e67451855487": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ba888f8b-b24f-4d6e-a97e-e67451855487", + "Name": "W18x40", + "EdgeId": 596 + }, + "23f1c4df-0ef7-4474-b9dc-3fbd78b40649": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23f1c4df-0ef7-4474-b9dc-3fbd78b40649", + "Name": null + }, + "ca2b2483-283e-4669-96aa-2c1bd17af9a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ca2b2483-283e-4669-96aa-2c1bd17af9a4", + "Name": "W18x40", + "EdgeId": 597, + "ExternalEdgeId": 597 + }, + "193c5f89-e69d-45a3-9d1b-c97a2ce7daaf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 8.35 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "193c5f89-e69d-45a3-9d1b-c97a2ce7daaf", + "Name": null + }, + "c6d445c1-5f48-4421-a286-821bba3d7a76": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c6d445c1-5f48-4421-a286-821bba3d7a76", + "Name": "W18x40", + "EdgeId": 601, + "ExternalEdgeId": 601 + }, + "0867c95f-7168-4b23-b340-21813bb6c0da": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0867c95f-7168-4b23-b340-21813bb6c0da", + "Name": null + }, + "16834ca5-faff-47f1-9cdd-a870ad74ba83": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "16834ca5-faff-47f1-9cdd-a870ad74ba83", + "Name": "W18x40", + "EdgeId": 602 + }, + "b88259ce-9134-469a-8a4e-6a8326867f0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b88259ce-9134-469a-8a4e-6a8326867f0b", + "Name": null + }, + "7dcbcbe4-7829-40ef-addc-6d1cac014c05": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "7dcbcbe4-7829-40ef-addc-6d1cac014c05", + "Name": "W18x40", + "EdgeId": 603 + }, + "d7df921b-beba-4d8d-8010-47bb6ab3a559": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d7df921b-beba-4d8d-8010-47bb6ab3a559", + "Name": null + }, + "62e320d4-80ef-4844-ae6e-9e7820cae6fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "62e320d4-80ef-4844-ae6e-9e7820cae6fd", + "Name": "W18x40", + "EdgeId": 605 + }, + "91588d9a-0e75-43ab-8b87-f40c7bd0e9ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91588d9a-0e75-43ab-8b87-f40c7bd0e9ba", + "Name": null + }, + "789ce616-a358-4da0-abd1-c2cd96d96c77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "789ce616-a358-4da0-abd1-c2cd96d96c77", + "Name": "W18x40", + "EdgeId": 606 + }, + "f0d1faad-5527-4b7b-8b69-93478f3c3a39": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f0d1faad-5527-4b7b-8b69-93478f3c3a39", + "Name": null + }, + "c0cd3c93-d2ed-40b2-87e8-bae9075fb034": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c0cd3c93-d2ed-40b2-87e8-bae9075fb034", + "Name": "W18x40", + "EdgeId": 608 + }, + "72d1ea92-99b3-43e3-b2b0-39195d5e6784": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72d1ea92-99b3-43e3-b2b0-39195d5e6784", + "Name": null + }, + "d68c905f-3144-4f37-b3f7-e8fcf9ad0580": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d68c905f-3144-4f37-b3f7-e8fcf9ad0580", + "Name": "W18x40", + "EdgeId": 609 + }, + "ec69dbe0-24cc-4c69-9a17-6370b74fe341": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec69dbe0-24cc-4c69-9a17-6370b74fe341", + "Name": null + }, + "57445ce6-80b5-4057-b74f-a3312f7f6c7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "57445ce6-80b5-4057-b74f-a3312f7f6c7f", + "Name": "W18x40", + "EdgeId": 611, + "ExternalEdgeId": 611 + }, + "92b60307-d3a3-4367-b801-dfd01e369b13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "92b60307-d3a3-4367-b801-dfd01e369b13", + "Name": null + }, + "5cbc2d16-2196-4845-a278-6cbec774f77d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5cbc2d16-2196-4845-a278-6cbec774f77d", + "Name": "W18x40", + "EdgeId": 612 + }, + "212043e5-070b-4769-a2e7-ad8b6f72fc30": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "212043e5-070b-4769-a2e7-ad8b6f72fc30", + "Name": null + }, + "d5ade6f8-a253-4e2b-8e67-2bebef4e43c2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d5ade6f8-a253-4e2b-8e67-2bebef4e43c2", + "Name": "W18x40", + "EdgeId": 614 + }, + "923ccd38-bb60-48d9-a326-5adedfdf4e91": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "923ccd38-bb60-48d9-a326-5adedfdf4e91", + "Name": null + }, + "a05fe6ac-71a8-490f-bdbf-24afdabfa1bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a05fe6ac-71a8-490f-bdbf-24afdabfa1bb", + "Name": "W18x40", + "EdgeId": 615 + }, + "047231a8-2c6a-4505-bb2e-49b604e0a16d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "047231a8-2c6a-4505-bb2e-49b604e0a16d", + "Name": null + }, + "974201ba-8ba2-4c4b-91ab-0d88f3fb53fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "974201ba-8ba2-4c4b-91ab-0d88f3fb53fd", + "Name": "W18x40", + "EdgeId": 616, + "ExternalEdgeId": 616 + }, + "adafce07-2c95-4901-b4d5-739a9cf47bbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "adafce07-2c95-4901-b4d5-739a9cf47bbd", + "Name": null + }, + "d0c8759a-9c91-4f22-a1cc-b94d5c45abab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d0c8759a-9c91-4f22-a1cc-b94d5c45abab", + "Name": "W18x40", + "EdgeId": 619 + }, + "669ef044-3557-47cf-bf23-0a17b92724bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "669ef044-3557-47cf-bf23-0a17b92724bf", + "Name": null + }, + "f464c76d-6a27-4b91-bdd4-21f37a9df2e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f464c76d-6a27-4b91-bdd4-21f37a9df2e0", + "Name": "W18x40", + "EdgeId": 620 + }, + "33c9dd82-8239-46cd-9709-5ed6c52dd653": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33c9dd82-8239-46cd-9709-5ed6c52dd653", + "Name": null + }, + "4904ebb7-77bc-4b67-bb5a-054ebd7231ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4904ebb7-77bc-4b67-bb5a-054ebd7231ad", + "Name": "W18x40", + "EdgeId": 622 + }, + "fa1518ea-7c05-426c-9d7b-1781e4a01034": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa1518ea-7c05-426c-9d7b-1781e4a01034", + "Name": null + }, + "0e48fd48-ef21-4f02-a90d-d51b139cb09e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0e48fd48-ef21-4f02-a90d-d51b139cb09e", + "Name": "W18x40", + "EdgeId": 623 + }, + "ae2d3589-0442-4ad8-89d3-36864fd25b4f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae2d3589-0442-4ad8-89d3-36864fd25b4f", + "Name": null + }, + "8fdb757a-bfb8-41fe-9848-0ba0d8f15b02": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8fdb757a-bfb8-41fe-9848-0ba0d8f15b02", + "Name": "W18x40", + "EdgeId": 625 + }, + "9e4b89f6-e940-48e8-9065-d1b6bd17348b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9e4b89f6-e940-48e8-9065-d1b6bd17348b", + "Name": null + }, + "55f24018-a730-4851-8806-4474071fbf7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "55f24018-a730-4851-8806-4474071fbf7d", + "Name": "W18x40", + "EdgeId": 626 + }, + "01716952-2b3c-4567-9606-e5eed9fa1b04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "01716952-2b3c-4567-9606-e5eed9fa1b04", + "Name": null + }, + "496e4a9e-1e09-4265-b237-93d553c94cf7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "496e4a9e-1e09-4265-b237-93d553c94cf7", + "Name": "W18x40", + "EdgeId": 628, + "ExternalEdgeId": 628 + }, + "c5940f3c-4157-477a-81ab-aa0f8a74dbd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5940f3c-4157-477a-81ab-aa0f8a74dbd3", + "Name": null + }, + "598893a7-a401-4411-bff3-55d7a1c0857d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "598893a7-a401-4411-bff3-55d7a1c0857d", + "Name": "W18x40", + "EdgeId": 629 + }, + "4bd68415-f16a-45ba-b1d4-3f0aef241629": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4bd68415-f16a-45ba-b1d4-3f0aef241629", + "Name": null + }, + "8b81275f-4d44-45af-81fa-003c41bf7c90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8b81275f-4d44-45af-81fa-003c41bf7c90", + "Name": "W18x40", + "EdgeId": 631, + "ExternalEdgeId": 631 + }, + "c4c646be-fd29-48c8-9d34-f765107b31dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c4c646be-fd29-48c8-9d34-f765107b31dd", + "Name": null + }, + "41a95020-fe80-44bd-85fb-4993379dd1d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "41a95020-fe80-44bd-85fb-4993379dd1d1", + "Name": "W18x40", + "EdgeId": 632 + }, + "55736b40-1d0d-4476-8001-980e135f6ed3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55736b40-1d0d-4476-8001-980e135f6ed3", + "Name": null + }, + "f0103a92-4216-4c66-ad52-37ec0db58e40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f0103a92-4216-4c66-ad52-37ec0db58e40", + "Name": "W18x40", + "EdgeId": 633 + }, + "11e5cb44-d8bf-4f79-ae9f-973342842153": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11e5cb44-d8bf-4f79-ae9f-973342842153", + "Name": null + }, + "856924b0-f6b9-4705-a5bc-d6f422a242ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "856924b0-f6b9-4705-a5bc-d6f422a242ed", + "Name": "W18x40", + "EdgeId": 634, + "ExternalEdgeId": 634 + }, + "b65785e2-56b7-478c-85bc-70d32d8c5bd0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b65785e2-56b7-478c-85bc-70d32d8c5bd0", + "Name": null + }, + "90c18d70-2de7-470d-b4c7-3134dde7c081": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "90c18d70-2de7-470d-b4c7-3134dde7c081", + "Name": "W18x40", + "EdgeId": 638 + }, + "37a187ef-32f4-4a48-9a18-5a68c9d45e91": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "37a187ef-32f4-4a48-9a18-5a68c9d45e91", + "Name": null + }, + "0efdd0d4-69a6-4010-97e5-549d788097f0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0efdd0d4-69a6-4010-97e5-549d788097f0", + "Name": "W18x40", + "EdgeId": 639 + }, + "0c74bb05-47ec-48ad-96d4-d8c6b8186425": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c74bb05-47ec-48ad-96d4-d8c6b8186425", + "Name": null + }, + "0d72ef8e-341f-42db-8070-9aa2d1906935": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0d72ef8e-341f-42db-8070-9aa2d1906935", + "Name": "W18x40", + "EdgeId": 641 + }, + "8570b9a5-a1ff-45f2-abed-9c3f5825b645": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8570b9a5-a1ff-45f2-abed-9c3f5825b645", + "Name": null + }, + "c3af9d39-5435-4e99-a49b-f46543ebc474": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c3af9d39-5435-4e99-a49b-f46543ebc474", + "Name": "W18x40", + "EdgeId": 642 + }, + "ece1ff08-e34f-4073-8b78-faa59c3a95ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ece1ff08-e34f-4073-8b78-faa59c3a95ff", + "Name": null + }, + "731fe8f4-16ab-45ad-bd79-dfdbc86da032": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "731fe8f4-16ab-45ad-bd79-dfdbc86da032", + "Name": "W18x40", + "EdgeId": 644 + }, + "e3e7c14c-5616-4a17-9bcf-8f752f1da869": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3e7c14c-5616-4a17-9bcf-8f752f1da869", + "Name": null + }, + "70df52ce-0402-4727-99f1-00ad5d1a13cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "70df52ce-0402-4727-99f1-00ad5d1a13cd", + "Name": "W18x40", + "EdgeId": 645 + }, + "e667196c-8e07-4865-afcc-1053169ea9ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e667196c-8e07-4865-afcc-1053169ea9ff", + "Name": null + }, + "94c6fbc3-b8c2-48ac-af52-df631ee1b3d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "94c6fbc3-b8c2-48ac-af52-df631ee1b3d3", + "Name": "W18x40", + "EdgeId": 647, + "ExternalEdgeId": 647 + }, + "5fdbaa73-0bad-440f-95ee-dc89c177c392": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5fdbaa73-0bad-440f-95ee-dc89c177c392", + "Name": null + }, + "a2e652c1-52c7-400d-9862-ea1d79a02daa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a2e652c1-52c7-400d-9862-ea1d79a02daa", + "Name": "W18x40", + "EdgeId": 648 + }, + "23179f5b-0691-4e38-8d02-31e1391821e5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23179f5b-0691-4e38-8d02-31e1391821e5", + "Name": null + }, + "1639e74f-1ab2-4284-af23-7b2920053694": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1639e74f-1ab2-4284-af23-7b2920053694", + "Name": "W18x40", + "EdgeId": 650 + }, + "213981cb-b6a4-4067-a1d6-6d2feaa0a5f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "213981cb-b6a4-4067-a1d6-6d2feaa0a5f1", + "Name": null + }, + "1cfef996-38bf-423a-b89c-a22527bd808b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1cfef996-38bf-423a-b89c-a22527bd808b", + "Name": "W18x40", + "EdgeId": 651 + }, + "7c45c886-b9ee-4d53-af0c-d27717a1fefb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c45c886-b9ee-4d53-af0c-d27717a1fefb", + "Name": null + }, + "438608be-71bd-4916-aac3-b792fa314e6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "438608be-71bd-4916-aac3-b792fa314e6b", + "Name": "W18x40", + "EdgeId": 652, + "ExternalEdgeId": 652 + }, + "df61e984-0c0e-473a-80a4-00cdfbe01db4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df61e984-0c0e-473a-80a4-00cdfbe01db4", + "Name": null + }, + "9c7a13ff-626a-44c2-b8de-c11e1d574557": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9c7a13ff-626a-44c2-b8de-c11e1d574557", + "Name": "W18x40", + "EdgeId": 655 + }, + "7f9d113c-148b-466d-b559-8687bfb89acf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7f9d113c-148b-466d-b559-8687bfb89acf", + "Name": null + }, + "68503447-8ffd-483b-b7d9-5f04308eb45a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "68503447-8ffd-483b-b7d9-5f04308eb45a", + "Name": "W18x40", + "EdgeId": 656 + }, + "4a77d3ad-f7fa-4aef-863d-baa1e3949a5d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a77d3ad-f7fa-4aef-863d-baa1e3949a5d", + "Name": null + }, + "17556f05-3714-4782-aeea-e29a3ce38da8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "17556f05-3714-4782-aeea-e29a3ce38da8", + "Name": "W18x40", + "EdgeId": 658 + }, + "1146f832-cda6-45a1-8aac-01bef1491ecb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1146f832-cda6-45a1-8aac-01bef1491ecb", + "Name": null + }, + "4b0cb37f-2669-44d9-be31-f4c129261170": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4b0cb37f-2669-44d9-be31-f4c129261170", + "Name": "W18x40", + "EdgeId": 659 + }, + "713828b8-d8c6-4f5a-8cd5-af664d42e099": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "713828b8-d8c6-4f5a-8cd5-af664d42e099", + "Name": null + }, + "2171e22b-7f6b-434c-bb02-8de29fe8c897": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2171e22b-7f6b-434c-bb02-8de29fe8c897", + "Name": "W18x40", + "EdgeId": 661 + }, + "a86c1578-00d6-4e88-998e-5202e2e809ea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a86c1578-00d6-4e88-998e-5202e2e809ea", + "Name": null + }, + "3ee749a3-05d9-4fe5-a1a2-4f0544780b5b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3ee749a3-05d9-4fe5-a1a2-4f0544780b5b", + "Name": "W18x40", + "EdgeId": 662 + }, + "02668896-213e-42e1-91e4-d792f781a20b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02668896-213e-42e1-91e4-d792f781a20b", + "Name": null + }, + "02337205-a9b8-45df-851a-a72e39765d5c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "02337205-a9b8-45df-851a-a72e39765d5c", + "Name": "W18x40", + "EdgeId": 664, + "ExternalEdgeId": 664 + }, + "c861af71-4204-4f3d-9c09-99aa28512a32": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c861af71-4204-4f3d-9c09-99aa28512a32", + "Name": null + }, + "5d55ba06-766f-4ab3-8f6f-f55fc5ec65a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5d55ba06-766f-4ab3-8f6f-f55fc5ec65a4", + "Name": "W18x40", + "EdgeId": 665 + }, + "44319f82-bcac-43bd-a36e-c7b59709c4a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44319f82-bcac-43bd-a36e-c7b59709c4a3", + "Name": null + }, + "e78eddf3-3116-4cfc-8f48-96ce1a55ad3e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e78eddf3-3116-4cfc-8f48-96ce1a55ad3e", + "Name": "W18x40", + "EdgeId": 667 + }, + "5272dd16-7d31-4c50-a8a9-7df801128e9b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5272dd16-7d31-4c50-a8a9-7df801128e9b", + "Name": null + }, + "a1d867fe-f5cd-4693-84df-2aa6efb42666": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a1d867fe-f5cd-4693-84df-2aa6efb42666", + "Name": "W18x40", + "EdgeId": 668 + }, + "f00e3222-b4c6-45cf-83cb-3d5004fe9972": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f00e3222-b4c6-45cf-83cb-3d5004fe9972", + "Name": null + }, + "d7f63a4a-bc14-4e51-b500-e205a0df7438": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d7f63a4a-bc14-4e51-b500-e205a0df7438", + "Name": "W18x40", + "EdgeId": 669, + "ExternalEdgeId": 669 + }, + "188b0ee1-01af-4945-bf1e-9345ac5b8c2d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "188b0ee1-01af-4945-bf1e-9345ac5b8c2d", + "Name": null + }, + "0f12bef3-0263-4aa0-9fb6-ff0b36cc2a42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0f12bef3-0263-4aa0-9fb6-ff0b36cc2a42", + "Name": "W18x40", + "EdgeId": 672 + }, + "d82797e6-1e45-4ba6-aad6-dfa0bdd288ae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d82797e6-1e45-4ba6-aad6-dfa0bdd288ae", + "Name": null + }, + "bb40d9d1-da82-4767-97f4-a04832c2511c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bb40d9d1-da82-4767-97f4-a04832c2511c", + "Name": "W18x40", + "EdgeId": 673 + }, + "38807bd4-8a0f-4c1f-8130-c7f1f68c4d73": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38807bd4-8a0f-4c1f-8130-c7f1f68c4d73", + "Name": null + }, + "0335932e-9777-479e-a61e-4c5920d7f26c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0335932e-9777-479e-a61e-4c5920d7f26c", + "Name": "W18x40", + "EdgeId": 675 + }, + "7ef946e6-9996-406d-a8d3-6204f670d74c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ef946e6-9996-406d-a8d3-6204f670d74c", + "Name": null + }, + "152b55c8-0f1a-4dc1-9b53-4d8e1aa8d63d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "152b55c8-0f1a-4dc1-9b53-4d8e1aa8d63d", + "Name": "W18x40", + "EdgeId": 676 + }, + "960ebc28-e19b-4d56-96c9-336d4ad4b9ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "960ebc28-e19b-4d56-96c9-336d4ad4b9ce", + "Name": null + }, + "2a4e78db-55eb-46bc-a92f-cbef56700e54": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2a4e78db-55eb-46bc-a92f-cbef56700e54", + "Name": "W18x40", + "EdgeId": 678 + }, + "197372bd-4243-418a-8bf0-24e9a047e7a7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "197372bd-4243-418a-8bf0-24e9a047e7a7", + "Name": null + }, + "7e466ee8-ba28-423a-b2e3-09e8befdd55e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "7e466ee8-ba28-423a-b2e3-09e8befdd55e", + "Name": "W18x40", + "EdgeId": 679 + }, + "621d7cba-486d-4c87-a89a-27bcf925dd34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "621d7cba-486d-4c87-a89a-27bcf925dd34", + "Name": null + }, + "097b411b-c31c-450e-ad41-631dfa5fd716": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "097b411b-c31c-450e-ad41-631dfa5fd716", + "Name": "W18x40", + "EdgeId": 681, + "ExternalEdgeId": 681 + }, + "2d72d68c-1cdd-4d53-8b12-efb29b1e4ca5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d72d68c-1cdd-4d53-8b12-efb29b1e4ca5", + "Name": null + }, + "afff9e36-4812-492f-9120-19adafd33b4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "afff9e36-4812-492f-9120-19adafd33b4b", + "Name": "W18x40", + "EdgeId": 682 + }, + "e8dc1d66-b730-41d4-830d-aea8a2e55a09": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8dc1d66-b730-41d4-830d-aea8a2e55a09", + "Name": null + }, + "b960de5c-c968-403a-899e-536ca8bd0c65": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b960de5c-c968-403a-899e-536ca8bd0c65", + "Name": "W18x40", + "EdgeId": 684 + }, + "4b74e2cf-f7e6-409c-90f5-8bcff539deae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4b74e2cf-f7e6-409c-90f5-8bcff539deae", + "Name": null + }, + "4427efa4-fd38-46ed-bf1a-ea530b6c2ee3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4427efa4-fd38-46ed-bf1a-ea530b6c2ee3", + "Name": "W18x40", + "EdgeId": 685 + }, + "6badb462-afef-4fc4-be4e-8fefe80c01e7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6badb462-afef-4fc4-be4e-8fefe80c01e7", + "Name": null + }, + "8ec52ca1-0b49-44c2-bee5-eee48b3cc5ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8ec52ca1-0b49-44c2-bee5-eee48b3cc5ce", + "Name": "W18x40", + "EdgeId": 686, + "ExternalEdgeId": 686 + }, + "b22adece-0233-417e-bbac-43ba6b7a441e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b22adece-0233-417e-bbac-43ba6b7a441e", + "Name": null + }, + "e720ef94-b7fe-4e9d-841b-1d206930b45a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e720ef94-b7fe-4e9d-841b-1d206930b45a", + "Name": "W18x40", + "EdgeId": 689 + }, + "fc2db445-77aa-4ed0-a6b4-de497f7de4e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc2db445-77aa-4ed0-a6b4-de497f7de4e6", + "Name": null + }, + "de9e670c-f9c5-41b0-81f2-94967ed7162b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "de9e670c-f9c5-41b0-81f2-94967ed7162b", + "Name": "W18x40", + "EdgeId": 690 + }, + "7b516efa-2836-4ef5-8440-31af77332211": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7b516efa-2836-4ef5-8440-31af77332211", + "Name": null + }, + "a549ab27-74da-453b-9236-622e0ad74f6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a549ab27-74da-453b-9236-622e0ad74f6b", + "Name": "W18x40", + "EdgeId": 692 + }, + "22dddca2-ae26-45be-9f6c-21972a573998": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22dddca2-ae26-45be-9f6c-21972a573998", + "Name": null + }, + "cc7761db-f00b-463c-81be-d0483014b063": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cc7761db-f00b-463c-81be-d0483014b063", + "Name": "W18x40", + "EdgeId": 693 + }, + "7d8c69fe-0433-459a-9d21-bccea609b225": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d8c69fe-0433-459a-9d21-bccea609b225", + "Name": null + }, + "6fc38163-b854-49a5-85b2-5be323c2850b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6fc38163-b854-49a5-85b2-5be323c2850b", + "Name": "W18x40", + "EdgeId": 695 + }, + "d6141e17-0070-4ce8-ad38-723e5e73c36b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d6141e17-0070-4ce8-ad38-723e5e73c36b", + "Name": null + }, + "2785888a-eff3-4efb-9ea1-a6b6c12744c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2785888a-eff3-4efb-9ea1-a6b6c12744c8", + "Name": "W18x40", + "EdgeId": 696 + }, + "93e1e0f0-0e8a-4aeb-867f-f258b61048d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "93e1e0f0-0e8a-4aeb-867f-f258b61048d3", + "Name": null + }, + "ee7099e6-33ba-4d25-9c9e-d1c67d9b8fa3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ee7099e6-33ba-4d25-9c9e-d1c67d9b8fa3", + "Name": "W18x40", + "EdgeId": 698, + "ExternalEdgeId": 698 + }, + "d56afa21-4686-4392-9274-961eb900858f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d56afa21-4686-4392-9274-961eb900858f", + "Name": null + }, + "f725689d-470c-4eac-9ea9-f8d4e907dbd0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f725689d-470c-4eac-9ea9-f8d4e907dbd0", + "Name": "W18x40", + "EdgeId": 699 + }, + "0dcf95a6-7244-4d90-8e2f-1c635c5354f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0dcf95a6-7244-4d90-8e2f-1c635c5354f4", + "Name": null + }, + "4e218c34-6142-46b4-bbd6-7a0ebb2390f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4e218c34-6142-46b4-bbd6-7a0ebb2390f9", + "Name": "W18x40", + "EdgeId": 701 + }, + "fd1748dd-e5a7-41d4-a2af-77c1ac721375": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fd1748dd-e5a7-41d4-a2af-77c1ac721375", + "Name": null + }, + "285764b0-4fdd-4bcc-bb17-f88af2757a42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "285764b0-4fdd-4bcc-bb17-f88af2757a42", + "Name": "W18x40", + "EdgeId": 702 + }, + "4f4a540e-97a9-4899-a62c-06b63d13cce0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f4a540e-97a9-4899-a62c-06b63d13cce0", + "Name": null + }, + "63f7a03e-fd12-4c62-b502-e04948630395": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "63f7a03e-fd12-4c62-b502-e04948630395", + "Name": "W18x40", + "EdgeId": 703, + "ExternalEdgeId": 703 + }, + "12339089-9808-45f7-aabc-06e5dde7d0b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12339089-9808-45f7-aabc-06e5dde7d0b4", + "Name": null + }, + "67e36fac-3eef-43ba-a1ef-bac68b1bb4b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "67e36fac-3eef-43ba-a1ef-bac68b1bb4b5", + "Name": "W18x40", + "EdgeId": 706 + }, + "0c580409-ad34-4524-ac77-877676bb2dae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c580409-ad34-4524-ac77-877676bb2dae", + "Name": null + }, + "6b051126-0250-4fd6-a927-201c7a207eb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6b051126-0250-4fd6-a927-201c7a207eb8", + "Name": "W18x40", + "EdgeId": 707 + }, + "461c624c-a959-491d-8cfb-0e6c814ff2cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "461c624c-a959-491d-8cfb-0e6c814ff2cf", + "Name": null + }, + "802833d2-eb2c-473e-9cd4-7a911ca9afbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "802833d2-eb2c-473e-9cd4-7a911ca9afbf", + "Name": "W18x40", + "EdgeId": 709 + }, + "f3e08c36-2f9e-4a22-9ab1-1d83b699b63d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f3e08c36-2f9e-4a22-9ab1-1d83b699b63d", + "Name": null + }, + "f67e7b9e-cc99-46d4-9795-9a06d9eedd52": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f67e7b9e-cc99-46d4-9795-9a06d9eedd52", + "Name": "W18x40", + "EdgeId": 710 + }, + "fe985664-3fff-40f0-8c2c-f2d16b72bd9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe985664-3fff-40f0-8c2c-f2d16b72bd9a", + "Name": null + }, + "6712b459-3ca2-43a8-a170-782ca04dffc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6712b459-3ca2-43a8-a170-782ca04dffc5", + "Name": "W18x40", + "EdgeId": 712 + }, + "424e571e-6182-4fec-95c0-aedd296a4548": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "424e571e-6182-4fec-95c0-aedd296a4548", + "Name": null + }, + "2bdf99f6-9504-4858-b0e2-512f07819cbf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2bdf99f6-9504-4858-b0e2-512f07819cbf", + "Name": "W18x40", + "EdgeId": 713 + }, + "1da82b37-17c2-47ea-87e9-e73438c62084": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1da82b37-17c2-47ea-87e9-e73438c62084", + "Name": null + }, + "c4213c32-b37a-495a-a76d-4ea63c0f5022": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c4213c32-b37a-495a-a76d-4ea63c0f5022", + "Name": "W18x40", + "EdgeId": 715, + "ExternalEdgeId": 715 + }, + "41b62742-7c1d-46e3-aa5b-fa3f84d66de7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41b62742-7c1d-46e3-aa5b-fa3f84d66de7", + "Name": null + }, + "86fc3b96-8b4b-4c2c-8847-e30f73f8626c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "86fc3b96-8b4b-4c2c-8847-e30f73f8626c", + "Name": "W18x40", + "EdgeId": 716 + }, + "1745e124-4060-4571-b15d-1936e374af86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1745e124-4060-4571-b15d-1936e374af86", + "Name": null + }, + "314674f9-2d4b-4679-ad3c-7c8f613a4077": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "314674f9-2d4b-4679-ad3c-7c8f613a4077", + "Name": "W18x40", + "EdgeId": 718 + }, + "9074c498-0d66-4e3f-8c1c-7342296a8eb8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9074c498-0d66-4e3f-8c1c-7342296a8eb8", + "Name": null + }, + "c1c09f5b-1a1f-47ad-a376-eb66a6786392": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c1c09f5b-1a1f-47ad-a376-eb66a6786392", + "Name": "W18x40", + "EdgeId": 719, + "ExternalEdgeId": 719 + }, + "bb98b3dd-8fce-43fe-b41f-89739b78be22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bb98b3dd-8fce-43fe-b41f-89739b78be22", + "Name": null + }, + "bf51ef59-9801-4933-8fbc-a96fb94acca1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bf51ef59-9801-4933-8fbc-a96fb94acca1", + "Name": "W18x40", + "EdgeId": 720, + "ExternalEdgeId": 720 + }, + "e414ac4b-ff52-48b9-981c-b3edddea0b7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e414ac4b-ff52-48b9-981c-b3edddea0b7a", + "Name": null + }, + "e08b3150-d842-4c01-89c8-5f3e046ca18a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e08b3150-d842-4c01-89c8-5f3e046ca18a", + "Name": "W18x40", + "EdgeId": 723 + }, + "dc69d71e-b19b-4ddf-9c15-58ef2734fc77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc69d71e-b19b-4ddf-9c15-58ef2734fc77", + "Name": null + }, + "6c43088a-9d54-4e00-a19d-b0b4528d3896": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6c43088a-9d54-4e00-a19d-b0b4528d3896", + "Name": "W18x40", + "EdgeId": 724, + "ExternalEdgeId": 724 + }, + "7daa4cd1-c930-42d1-9418-6241abbd842c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7daa4cd1-c930-42d1-9418-6241abbd842c", + "Name": null + }, + "92093ca5-b651-430c-828a-b577685d68dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "92093ca5-b651-430c-828a-b577685d68dd", + "Name": "W18x40", + "EdgeId": 726 + }, + "66096f54-35b0-4dfa-9514-4da037eaf739": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "66096f54-35b0-4dfa-9514-4da037eaf739", + "Name": null + }, + "3248ccd0-0d78-45c6-b1a2-9179e54da3a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3248ccd0-0d78-45c6-b1a2-9179e54da3a6", + "Name": "W18x40", + "EdgeId": 727, + "ExternalEdgeId": 727 + }, + "df1756c5-010c-4af7-822a-d4dc8fdf84a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df1756c5-010c-4af7-822a-d4dc8fdf84a2", + "Name": null + }, + "09db585f-b4d6-40c2-9764-e25865e034d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "09db585f-b4d6-40c2-9764-e25865e034d3", + "Name": "W18x40", + "EdgeId": 729 + }, + "5d9b9e6f-5951-4e22-bd0d-69aad03ddfc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5d9b9e6f-5951-4e22-bd0d-69aad03ddfc5", + "Name": null + }, + "0a7d1485-5017-42fb-ab83-49b8295b2f6a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0a7d1485-5017-42fb-ab83-49b8295b2f6a", + "Name": "W18x40", + "EdgeId": 730, + "ExternalEdgeId": 730 + }, + "b303bdd4-8e84-4523-b986-8d075f960771": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b303bdd4-8e84-4523-b986-8d075f960771", + "Name": null + }, + "6678d9fc-8d61-4903-9d80-156ad0014450": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6678d9fc-8d61-4903-9d80-156ad0014450", + "Name": "W18x40", + "EdgeId": 732, + "ExternalEdgeId": 732 + }, + "ca3b112d-8218-403c-9343-20a643d38435": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ca3b112d-8218-403c-9343-20a643d38435", + "Name": null + }, + "d5465768-3985-433d-a36f-90d52e2de837": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d5465768-3985-433d-a36f-90d52e2de837", + "Name": "W18x40", + "EdgeId": 733, + "ExternalEdgeId": 733 + }, + "12da39bf-4637-4864-bb1e-1c42ff40031a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12da39bf-4637-4864-bb1e-1c42ff40031a", + "Name": null + }, + "6278eb75-ee82-4711-82a4-551acd3604fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6278eb75-ee82-4711-82a4-551acd3604fb", + "Name": "W18x40", + "EdgeId": 735, + "ExternalEdgeId": 735 + }, + "5e31d40d-60d4-45ad-ab5c-44be440068b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e31d40d-60d4-45ad-ab5c-44be440068b4", + "Name": null + }, + "2828b295-3d8b-4bce-b93d-b7aeeb0f002c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2828b295-3d8b-4bce-b93d-b7aeeb0f002c", + "Name": "W18x40", + "EdgeId": 736 + }, + "52a5901a-2eb2-4776-9db5-fb22d30cd1ca": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52a5901a-2eb2-4776-9db5-fb22d30cd1ca", + "Name": null + }, + "14c6e7bc-e519-483a-ab5b-b8c7b0dc2a37": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "14c6e7bc-e519-483a-ab5b-b8c7b0dc2a37", + "Name": "W18x40", + "EdgeId": 737 + }, + "511f9f9c-1788-4f75-828d-49f9594082f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "511f9f9c-1788-4f75-828d-49f9594082f3", + "Name": null + }, + "172770b0-c1e4-49b2-989e-c8ab281b1da2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "172770b0-c1e4-49b2-989e-c8ab281b1da2", + "Name": "W18x40", + "EdgeId": 738, + "ExternalEdgeId": 738 + }, + "0e240d5c-4b42-4601-9340-dba9521eeb9f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e240d5c-4b42-4601-9340-dba9521eeb9f", + "Name": null + }, + "ab8905c5-4c44-4b33-8183-3575cb364226": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ab8905c5-4c44-4b33-8183-3575cb364226", + "Name": "W18x40", + "EdgeId": 751, + "ExternalEdgeId": 751 + }, + "7830efee-c59b-42ca-8c46-b0ff10bfdced": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7830efee-c59b-42ca-8c46-b0ff10bfdced", + "Name": null + }, + "e9f186fb-58c3-4a6b-a2f0-c1b4bf2cff82": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e9f186fb-58c3-4a6b-a2f0-c1b4bf2cff82", + "Name": "W18x40", + "EdgeId": 752 + }, + "4443adb2-bb80-406e-ad94-8f6bdab9076b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4443adb2-bb80-406e-ad94-8f6bdab9076b", + "Name": null + }, + "a82d229f-f699-48b7-8578-d42fab0f313f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a82d229f-f699-48b7-8578-d42fab0f313f", + "Name": "W18x40", + "EdgeId": 753 + }, + "9507fcbf-4b43-4b75-b340-217776be17f7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9507fcbf-4b43-4b75-b340-217776be17f7", + "Name": null + }, + "02179fe1-712e-47bd-a17e-4ff602253db1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "02179fe1-712e-47bd-a17e-4ff602253db1", + "Name": "W18x40", + "EdgeId": 761, + "ExternalEdgeId": 761 + }, + "d22a4302-0363-4b52-8886-fca1e1c95dc3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d22a4302-0363-4b52-8886-fca1e1c95dc3", + "Name": null + }, + "d9243ebf-3865-4b35-981f-c29eda40bb7a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d9243ebf-3865-4b35-981f-c29eda40bb7a", + "Name": "W18x40", + "EdgeId": 762, + "ExternalEdgeId": 762 + }, + "2047e28a-ee64-4672-877a-6cca26ba35bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2047e28a-ee64-4672-877a-6cca26ba35bf", + "Name": null + }, + "63a4be15-49ec-4b28-913e-0936b135b944": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "63a4be15-49ec-4b28-913e-0936b135b944", + "Name": "W18x40", + "EdgeId": 763 + }, + "25484848-c8da-48fa-a591-ce74cbfad519": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25484848-c8da-48fa-a591-ce74cbfad519", + "Name": null + }, + "d677110d-bd61-4a67-a0b2-ba16e43a1cc4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d677110d-bd61-4a67-a0b2-ba16e43a1cc4", + "Name": "W18x40", + "EdgeId": 771 + }, + "d030b8a9-e8bf-4669-8ca4-de79a9644c0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d030b8a9-e8bf-4669-8ca4-de79a9644c0a", + "Name": null + }, + "4fae3e42-b0ab-468a-8f0f-220eee32fe62": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4fae3e42-b0ab-468a-8f0f-220eee32fe62", + "Name": "W18x40", + "EdgeId": 772 + }, + "3bd386f8-e4e7-4af0-9074-5364afe58181": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3bd386f8-e4e7-4af0-9074-5364afe58181", + "Name": null + }, + "a2d324d5-d3f2-4f1a-adf1-4544f7ebb76d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a2d324d5-d3f2-4f1a-adf1-4544f7ebb76d", + "Name": "W18x40", + "EdgeId": 773, + "ExternalEdgeId": 773 + }, + "ddd8f4d5-84b4-477d-aab8-a580f63fe88f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 12.2 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ddd8f4d5-84b4-477d-aab8-a580f63fe88f", + "Name": null + }, + "6070f0bc-4975-416a-89cb-1ee11dfb4ff4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6070f0bc-4975-416a-89cb-1ee11dfb4ff4", + "Name": "W18x40", + "EdgeId": 783, + "ExternalEdgeId": 783 + }, + "af8a7abe-5366-4953-9590-4249df93344c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "af8a7abe-5366-4953-9590-4249df93344c", + "Name": null + }, + "08fed6cd-bdee-4114-a596-e023c67e6ca7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "08fed6cd-bdee-4114-a596-e023c67e6ca7", + "Name": "W18x40", + "EdgeId": 784 + }, + "04621c3b-5d98-417e-8c9b-001f150ed81e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04621c3b-5d98-417e-8c9b-001f150ed81e", + "Name": null + }, + "4aecf056-d65e-4b4a-af8c-5db3ac13082d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4aecf056-d65e-4b4a-af8c-5db3ac13082d", + "Name": "W18x40", + "EdgeId": 785 + }, + "562192f6-974a-49db-8985-ff5fdacb7f65": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "562192f6-974a-49db-8985-ff5fdacb7f65", + "Name": null + }, + "cb613018-a485-4790-921d-b536813b985f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "cb613018-a485-4790-921d-b536813b985f", + "Name": "W18x40", + "EdgeId": 791 + }, + "2e9aa2f3-926a-48f5-bb05-11f03eb4953c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e9aa2f3-926a-48f5-bb05-11f03eb4953c", + "Name": null + }, + "d5a2fecd-5102-4110-88b1-9c6b5c17f9b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d5a2fecd-5102-4110-88b1-9c6b5c17f9b9", + "Name": "W18x40", + "EdgeId": 792 + }, + "7e8a56aa-621f-4635-bfad-8d864dd6b724": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e8a56aa-621f-4635-bfad-8d864dd6b724", + "Name": null + }, + "525ca0d5-12ff-426a-b61d-a0cf9782416e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "525ca0d5-12ff-426a-b61d-a0cf9782416e", + "Name": "W18x40", + "EdgeId": 797, + "ExternalEdgeId": 797 + }, + "20d0c086-e029-4225-8892-4e47f629e4d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20d0c086-e029-4225-8892-4e47f629e4d0", + "Name": null + }, + "e408ea7f-f097-41cf-b61f-10dee50f3a17": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e408ea7f-f097-41cf-b61f-10dee50f3a17", + "Name": "W18x40", + "EdgeId": 798 + }, + "2940d88f-755b-4bda-ad10-e6269c4bc883": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2940d88f-755b-4bda-ad10-e6269c4bc883", + "Name": null + }, + "60732040-fcec-4636-a642-c9e7dc85fbb1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "60732040-fcec-4636-a642-c9e7dc85fbb1", + "Name": "W18x40", + "EdgeId": 803 + }, + "d49c71a8-f057-4c78-acd1-cb75e701e09e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d49c71a8-f057-4c78-acd1-cb75e701e09e", + "Name": null + }, + "57191743-eb24-4780-b427-bf4438a33760": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "57191743-eb24-4780-b427-bf4438a33760", + "Name": "W18x40", + "EdgeId": 804 + }, + "5bb53622-1219-4cf1-92cb-566522e7a5ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5bb53622-1219-4cf1-92cb-566522e7a5ce", + "Name": null + }, + "7bd1ab4c-482c-47d4-aedd-6aab66a8618c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7bd1ab4c-482c-47d4-aedd-6aab66a8618c", + "Name": "W18x40", + "EdgeId": 805, + "ExternalEdgeId": 805 + }, + "d43d26e5-df76-41c9-86fa-df0221c56d5f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d43d26e5-df76-41c9-86fa-df0221c56d5f", + "Name": null + }, + "e21df52a-aab0-4e93-96aa-63634c3ed924": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e21df52a-aab0-4e93-96aa-63634c3ed924", + "Name": "W18x40", + "EdgeId": 813 + }, + "7bd4f717-f725-4eb5-87a8-99d0470ffb73": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7bd4f717-f725-4eb5-87a8-99d0470ffb73", + "Name": null + }, + "795c0d71-630e-413b-ade7-fa1fdc2d6c48": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "795c0d71-630e-413b-ade7-fa1fdc2d6c48", + "Name": "W18x40", + "EdgeId": 814 + }, + "2266fcdf-ce58-4a4f-927a-050231eb7286": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2266fcdf-ce58-4a4f-927a-050231eb7286", + "Name": null + }, + "0650d3ac-fdc3-4935-8432-c01dc436ca09": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0650d3ac-fdc3-4935-8432-c01dc436ca09", + "Name": "W18x40", + "EdgeId": 819 + }, + "8fc1ab94-0d45-4a7c-aba9-27260378ad4a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8fc1ab94-0d45-4a7c-aba9-27260378ad4a", + "Name": null + }, + "7d025b16-4fdb-464a-89c5-bfad331a46b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7d025b16-4fdb-464a-89c5-bfad331a46b8", + "Name": "W18x40", + "EdgeId": 820 + }, + "39d90870-f39a-415f-9c8b-550e7fcd5332": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "39d90870-f39a-415f-9c8b-550e7fcd5332", + "Name": null + }, + "b8bd6171-1d3b-4eef-9c9a-dcd566d19782": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b8bd6171-1d3b-4eef-9c9a-dcd566d19782", + "Name": "W18x40", + "EdgeId": 825, + "ExternalEdgeId": 825 + }, + "6c1240fc-8715-47e5-ae08-5d969dcc943f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c1240fc-8715-47e5-ae08-5d969dcc943f", + "Name": null + }, + "0cfe8387-77e3-4bcb-93bb-8d3047e2ee56": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0cfe8387-77e3-4bcb-93bb-8d3047e2ee56", + "Name": "W18x40", + "EdgeId": 826 + }, + "2e44b8e7-bb85-460d-ba88-55c9db3acef9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e44b8e7-bb85-460d-ba88-55c9db3acef9", + "Name": null + }, + "66b8949a-79b7-48ff-ac04-e172e38b25c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "66b8949a-79b7-48ff-ac04-e172e38b25c4", + "Name": "W18x40", + "EdgeId": 831 + }, + "b2ee679a-0ac9-4bb3-9725-fa2b899a955d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b2ee679a-0ac9-4bb3-9725-fa2b899a955d", + "Name": null + }, + "77e1e159-d80f-4cfe-97a5-658569553785": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "77e1e159-d80f-4cfe-97a5-658569553785", + "Name": "W18x40", + "EdgeId": 832 + }, + "6623faa6-9f86-4b0d-b6f9-36062756577a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6623faa6-9f86-4b0d-b6f9-36062756577a", + "Name": null + }, + "353b4408-5054-41f6-9fbe-ce9213a963ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "353b4408-5054-41f6-9fbe-ce9213a963ec", + "Name": "W18x40", + "EdgeId": 833, + "ExternalEdgeId": 833 + }, + "d9122a01-28f8-4ca1-9698-537b71aaf575": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9122a01-28f8-4ca1-9698-537b71aaf575", + "Name": null + }, + "a3ded4ae-5988-4e14-9091-3984a5765d91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a3ded4ae-5988-4e14-9091-3984a5765d91", + "Name": "W18x40", + "EdgeId": 841 + }, + "72e3fe47-cc82-400a-ba3a-03d1b52d04b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72e3fe47-cc82-400a-ba3a-03d1b52d04b5", + "Name": null + }, + "ddb22953-fc40-4db0-84bf-87094f33a482": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ddb22953-fc40-4db0-84bf-87094f33a482", + "Name": "W18x40", + "EdgeId": 842 + }, + "1345f66e-d8a4-4e05-864b-e632845e9c2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1345f66e-d8a4-4e05-864b-e632845e9c2b", + "Name": null + }, + "1e292f0f-af50-4b4a-b4f0-ff35d23979a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1e292f0f-af50-4b4a-b4f0-ff35d23979a3", + "Name": "W18x40", + "EdgeId": 847 + }, + "07a4d9d4-6206-4407-a1ee-4ab956141201": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "07a4d9d4-6206-4407-a1ee-4ab956141201", + "Name": null + }, + "46aa6fa9-1a45-425d-bf58-5e2b5c944636": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "46aa6fa9-1a45-425d-bf58-5e2b5c944636", + "Name": "W18x40", + "EdgeId": 848 + }, + "80f1200e-0057-49e6-b25e-fb25e537e433": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80f1200e-0057-49e6-b25e-fb25e537e433", + "Name": null + }, + "c40d8899-5076-4b17-a890-5df23beb6e57": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c40d8899-5076-4b17-a890-5df23beb6e57", + "Name": "W18x40", + "EdgeId": 853, + "ExternalEdgeId": 853 + }, + "69ffbdcc-9c53-4ee8-a442-2fcc55b449af": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "69ffbdcc-9c53-4ee8-a442-2fcc55b449af", + "Name": null + }, + "da87b32a-cfea-46aa-8452-6ad7c83ea8f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "da87b32a-cfea-46aa-8452-6ad7c83ea8f3", + "Name": "W18x40", + "EdgeId": 854 + }, + "02443929-50ae-4bf0-8a5f-6217a21fa38b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02443929-50ae-4bf0-8a5f-6217a21fa38b", + "Name": null + }, + "53ce087d-b3d2-4865-b37b-0844e03d3e05": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "53ce087d-b3d2-4865-b37b-0844e03d3e05", + "Name": "W18x40", + "EdgeId": 859 + }, + "1ab6c488-1d06-4bba-9977-8bd646178cb0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ab6c488-1d06-4bba-9977-8bd646178cb0", + "Name": null + }, + "dedb3cfa-481a-4010-b82a-e1a7a93bfd8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "dedb3cfa-481a-4010-b82a-e1a7a93bfd8e", + "Name": "W18x40", + "EdgeId": 860 + }, + "ee727740-89eb-4290-b113-94dee3d030eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee727740-89eb-4290-b113-94dee3d030eb", + "Name": null + }, + "92442fb7-e836-4d9d-9e72-f022b7158515": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "92442fb7-e836-4d9d-9e72-f022b7158515", + "Name": "W18x40", + "EdgeId": 861, + "ExternalEdgeId": 861 + }, + "4b24b6f7-a6aa-4f9b-906d-5d0b6c389755": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 12.2 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4b24b6f7-a6aa-4f9b-906d-5d0b6c389755", + "Name": null + }, + "6de5caf2-d34f-4877-9014-4393b49f8e3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6de5caf2-d34f-4877-9014-4393b49f8e3a", + "Name": "W18x40", + "EdgeId": 871, + "ExternalEdgeId": 871 + }, + "1d3ce3a1-b4c2-4d21-acb6-f3a03d31b55b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1d3ce3a1-b4c2-4d21-acb6-f3a03d31b55b", + "Name": null + }, + "6ccb20e7-1f65-4483-8655-1ed1e178151d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6ccb20e7-1f65-4483-8655-1ed1e178151d", + "Name": "W18x40", + "EdgeId": 872 + }, + "6a3b4aa0-6f7f-4b03-b933-9611f334af51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a3b4aa0-6f7f-4b03-b933-9611f334af51", + "Name": null + }, + "b7b67984-e0c0-49db-a5d3-7e8c822b4810": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b7b67984-e0c0-49db-a5d3-7e8c822b4810", + "Name": "W18x40", + "EdgeId": 873 + }, + "0328129d-f77b-417e-b165-e9445e54280c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0328129d-f77b-417e-b165-e9445e54280c", + "Name": null + }, + "0cea2cc5-01f0-486b-aebe-cfebd88754db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0cea2cc5-01f0-486b-aebe-cfebd88754db", + "Name": "W18x40", + "EdgeId": 879 + }, + "acbcc01a-2cfc-4e40-9c6f-3e968ef5818d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "acbcc01a-2cfc-4e40-9c6f-3e968ef5818d", + "Name": null + }, + "4ed6dd27-071f-419c-945e-0a10b8505d2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4ed6dd27-071f-419c-945e-0a10b8505d2a", + "Name": "W18x40", + "EdgeId": 880 + }, + "0b003873-b0e1-4229-8b54-ee009ac85354": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b003873-b0e1-4229-8b54-ee009ac85354", + "Name": null + }, + "845a29d2-6b72-48bd-9100-19f761f009af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "845a29d2-6b72-48bd-9100-19f761f009af", + "Name": "W18x40", + "EdgeId": 885 + }, + "de308678-58ed-48d3-8fbc-fc0ccba87c0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "de308678-58ed-48d3-8fbc-fc0ccba87c0b", + "Name": null + }, + "b61e2aa8-2ae0-4ab6-b217-8c09d8147b97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b61e2aa8-2ae0-4ab6-b217-8c09d8147b97", + "Name": "W18x40", + "EdgeId": 886 + }, + "95c91f2f-6311-461a-b4ea-9af2f612c4e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95c91f2f-6311-461a-b4ea-9af2f612c4e4", + "Name": null + }, + "4ed5e031-168d-44d7-9508-5b96d3e00952": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4ed5e031-168d-44d7-9508-5b96d3e00952", + "Name": "W18x40", + "EdgeId": 891, + "ExternalEdgeId": 891 + }, + "a353f84c-8ac9-492a-993f-f903b6e8763f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a353f84c-8ac9-492a-993f-f903b6e8763f", + "Name": null + }, + "202f4412-041e-4af1-8f53-39f5ca607324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "202f4412-041e-4af1-8f53-39f5ca607324", + "Name": "W18x40", + "EdgeId": 892 + }, + "8a48b564-ac10-4860-8d2c-53697554f6fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8a48b564-ac10-4860-8d2c-53697554f6fa", + "Name": null + }, + "b022f0ef-e871-4e2d-9f82-e011e3f198aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b022f0ef-e871-4e2d-9f82-e011e3f198aa", + "Name": "W18x40", + "EdgeId": 897 + }, + "9c26bef7-4919-4401-a94a-a802f75c7b5f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c26bef7-4919-4401-a94a-a802f75c7b5f", + "Name": null + }, + "434f96fa-11fe-4fd6-873d-dc3cc619039c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "434f96fa-11fe-4fd6-873d-dc3cc619039c", + "Name": "W18x40", + "EdgeId": 898 + }, + "014b9d7d-b169-4ef4-951c-dbc1fe300a4f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "014b9d7d-b169-4ef4-951c-dbc1fe300a4f", + "Name": null + }, + "97840780-9e87-43c7-a95c-9e18a2f32a16": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "97840780-9e87-43c7-a95c-9e18a2f32a16", + "Name": "W18x40", + "EdgeId": 899, + "ExternalEdgeId": 899 + }, + "d5b6ea80-71cf-4ff8-ad7b-fee3d363ad99": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d5b6ea80-71cf-4ff8-ad7b-fee3d363ad99", + "Name": null + }, + "7f37d961-7941-4f30-a73c-7e56e111305d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7f37d961-7941-4f30-a73c-7e56e111305d", + "Name": "W18x40", + "EdgeId": 907 + }, + "238bec02-62d5-4b95-924a-1ae428241d45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "238bec02-62d5-4b95-924a-1ae428241d45", + "Name": null + }, + "87f4d676-8b6d-4962-834d-ac53f051abab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "87f4d676-8b6d-4962-834d-ac53f051abab", + "Name": "W18x40", + "EdgeId": 908 + }, + "b0546e5a-e494-4ff6-a336-b24d9f9a94c7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0546e5a-e494-4ff6-a336-b24d9f9a94c7", + "Name": null + }, + "b85323f7-1b7e-47c0-afdc-2fa219a807b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b85323f7-1b7e-47c0-afdc-2fa219a807b4", + "Name": "W18x40", + "EdgeId": 913 + }, + "3367a3b0-c696-4e0c-a5d3-9f5403edb042": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3367a3b0-c696-4e0c-a5d3-9f5403edb042", + "Name": null + }, + "be7ad5a2-0596-49e5-9dd2-03b5f3480b1e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "be7ad5a2-0596-49e5-9dd2-03b5f3480b1e", + "Name": "W18x40", + "EdgeId": 914 + }, + "04cc2833-d566-4f56-b028-b15d614dbbd7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04cc2833-d566-4f56-b028-b15d614dbbd7", + "Name": null + }, + "72f08611-40a3-44ff-bd59-ba61a6995784": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "72f08611-40a3-44ff-bd59-ba61a6995784", + "Name": "W18x40", + "EdgeId": 919 + }, + "6007d404-e4e2-4146-a7b0-54aed9170f57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6007d404-e4e2-4146-a7b0-54aed9170f57", + "Name": null + }, + "af146aef-0199-4145-98aa-d4bfc4c21b40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "af146aef-0199-4145-98aa-d4bfc4c21b40", + "Name": "W18x40", + "EdgeId": 920 + }, + "f2d204dd-e4f0-4833-9068-86b553633cbf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2d204dd-e4f0-4833-9068-86b553633cbf", + "Name": null + }, + "8485bda3-641d-41a5-a8ec-2284d3f2e0e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8485bda3-641d-41a5-a8ec-2284d3f2e0e0", + "Name": "W18x40", + "EdgeId": 925, + "ExternalEdgeId": 925 + }, + "4486f5c8-a4ce-4761-93e7-f5ef6fc1f642": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4486f5c8-a4ce-4761-93e7-f5ef6fc1f642", + "Name": null + }, + "326e18c0-0c54-4b0e-9d9a-645a15db3c9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "326e18c0-0c54-4b0e-9d9a-645a15db3c9a", + "Name": "W18x40", + "EdgeId": 926 + }, + "1aef58bf-2c31-4ab8-9a5a-5f4feac4c023": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1aef58bf-2c31-4ab8-9a5a-5f4feac4c023", + "Name": null + }, + "e0887725-f83d-4055-943b-67a28ffed050": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e0887725-f83d-4055-943b-67a28ffed050", + "Name": "W18x40", + "EdgeId": 931, + "ExternalEdgeId": 931 + }, + "224bbb6f-07da-49ec-93c3-e72644363d67": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "224bbb6f-07da-49ec-93c3-e72644363d67", + "Name": null + }, + "56bdf867-fa4d-4d37-b7bd-896a7df4849c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "56bdf867-fa4d-4d37-b7bd-896a7df4849c", + "Name": "W18x40", + "EdgeId": 932 + }, + "02e5a1d4-05cf-4be3-b2e4-4eeb60a784bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "02e5a1d4-05cf-4be3-b2e4-4eeb60a784bf", + "Name": null + }, + "5257ce25-325d-49b6-954d-172df4eebc17": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5257ce25-325d-49b6-954d-172df4eebc17", + "Name": "W18x40", + "EdgeId": 933 + }, + "47aead43-688c-49d1-abf9-0b0d840457df": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47aead43-688c-49d1-abf9-0b0d840457df", + "Name": null + }, + "a597527a-d8bc-4ed1-a56e-6c38a1e55aaf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a597527a-d8bc-4ed1-a56e-6c38a1e55aaf", + "Name": "W18x40", + "EdgeId": 934, + "ExternalEdgeId": 934 + }, + "b36a4080-9c01-4049-832a-84dc2005b912": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b36a4080-9c01-4049-832a-84dc2005b912", + "Name": null + }, + "3f396256-cb3f-4b89-8e36-f3d385163b72": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3f396256-cb3f-4b89-8e36-f3d385163b72", + "Name": "W18x40", + "EdgeId": 945 + }, + "e270a422-370f-48d9-8cf7-f2c1b518a851": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e270a422-370f-48d9-8cf7-f2c1b518a851", + "Name": null + }, + "cade78b7-d216-48df-b73b-3493856c9176": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "cade78b7-d216-48df-b73b-3493856c9176", + "Name": "W18x40", + "EdgeId": 946 + }, + "86907db9-a070-4ee0-972e-c7a5f5673fde": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "86907db9-a070-4ee0-972e-c7a5f5673fde", + "Name": null + }, + "9e25c8e3-ed7e-46af-85df-5c640338891a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9e25c8e3-ed7e-46af-85df-5c640338891a", + "Name": "W18x40", + "EdgeId": 951 + }, + "5b872b24-8232-4086-a6ac-a79a39b4abcb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b872b24-8232-4086-a6ac-a79a39b4abcb", + "Name": null + }, + "bb6d153d-c853-4e86-91c3-23b3e5059381": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bb6d153d-c853-4e86-91c3-23b3e5059381", + "Name": "W18x40", + "EdgeId": 952 + }, + "ca1933d4-2a1e-4783-81ed-574d4688a8b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ca1933d4-2a1e-4783-81ed-574d4688a8b6", + "Name": null + }, + "21897307-b491-478c-b951-48f35e9f4fae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "21897307-b491-478c-b951-48f35e9f4fae", + "Name": "W18x40", + "EdgeId": 957 + }, + "a69ad1ab-10e7-4f06-ac0f-809526d2fb82": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a69ad1ab-10e7-4f06-ac0f-809526d2fb82", + "Name": null + }, + "5cc9406f-3ea5-4a89-a3b3-41d089c4dcde": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5cc9406f-3ea5-4a89-a3b3-41d089c4dcde", + "Name": "W18x40", + "EdgeId": 958 + }, + "aad658cd-6d93-4496-9005-0a5add074f90": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aad658cd-6d93-4496-9005-0a5add074f90", + "Name": null + }, + "d92bd33c-4cd5-4f06-a895-d234dcec5d6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d92bd33c-4cd5-4f06-a895-d234dcec5d6b", + "Name": "W18x40", + "EdgeId": 963, + "ExternalEdgeId": 963 + }, + "19a31dcd-0000-461d-b2d4-2491119b7202": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "19a31dcd-0000-461d-b2d4-2491119b7202", + "Name": null + }, + "19788b97-b34b-45c0-93e2-009dbf63c25d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "19788b97-b34b-45c0-93e2-009dbf63c25d", + "Name": "W18x40", + "EdgeId": 964 + }, + "4fb6e98b-2334-4b35-bbf2-117c9d475f3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4fb6e98b-2334-4b35-bbf2-117c9d475f3f", + "Name": null + }, + "0064a6ca-833c-4a64-93ff-064c1d856491": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0064a6ca-833c-4a64-93ff-064c1d856491", + "Name": "W18x40", + "EdgeId": 969 + }, + "0c437276-905d-4145-a257-6ff53010845b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c437276-905d-4145-a257-6ff53010845b", + "Name": null + }, + "97e67332-44ff-4c68-9e17-4e8b5cb76537": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "97e67332-44ff-4c68-9e17-4e8b5cb76537", + "Name": "W18x40", + "EdgeId": 970 + }, + "2cf860e0-7abd-4125-9f9a-b3609f23259f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2cf860e0-7abd-4125-9f9a-b3609f23259f", + "Name": null + }, + "51a6e81f-9be7-44f4-84d4-fb10f4721dbe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "51a6e81f-9be7-44f4-84d4-fb10f4721dbe", + "Name": "W18x40", + "EdgeId": 971, + "ExternalEdgeId": 971 + }, + "33f4d2a1-3fbe-43db-9764-4d4d05461b1e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33f4d2a1-3fbe-43db-9764-4d4d05461b1e", + "Name": null + }, + "5d33760f-aed3-4335-a39f-614d74db1c8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5d33760f-aed3-4335-a39f-614d74db1c8e", + "Name": "W18x40", + "EdgeId": 979 + }, + "09ddf95b-5b1f-4689-8d6c-e9a745d216fe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09ddf95b-5b1f-4689-8d6c-e9a745d216fe", + "Name": null + }, + "841e1873-a5ce-4e5f-a4d3-a22fa20e0f77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "841e1873-a5ce-4e5f-a4d3-a22fa20e0f77", + "Name": "W18x40", + "EdgeId": 980 + }, + "d8cca4fd-3e92-42ff-9cbb-975de2d16cce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d8cca4fd-3e92-42ff-9cbb-975de2d16cce", + "Name": null + }, + "b30a3068-4e4b-4f1a-aac9-bbb0e0e2f8aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b30a3068-4e4b-4f1a-aac9-bbb0e0e2f8aa", + "Name": "W18x40", + "EdgeId": 985 + }, + "ec8a7ebb-ab99-4ecc-a245-780b55747dff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec8a7ebb-ab99-4ecc-a245-780b55747dff", + "Name": null + }, + "73887299-2003-476c-87aa-d8c5c9bf9c64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "73887299-2003-476c-87aa-d8c5c9bf9c64", + "Name": "W18x40", + "EdgeId": 986 + }, + "12864b4c-7915-4a5f-a6df-6e4322701cbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12864b4c-7915-4a5f-a6df-6e4322701cbd", + "Name": null + }, + "57a5c10e-df9b-4241-87a4-63a9ceae33ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "57a5c10e-df9b-4241-87a4-63a9ceae33ad", + "Name": "W18x40", + "EdgeId": 991 + }, + "bedf52ae-f9c0-47bc-8ccd-5e038fd511f6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bedf52ae-f9c0-47bc-8ccd-5e038fd511f6", + "Name": null + }, + "f06bcf45-d1aa-4c58-b44b-74d4d1b64815": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f06bcf45-d1aa-4c58-b44b-74d4d1b64815", + "Name": "W18x40", + "EdgeId": 992 + }, + "20ca2a12-e319-4251-ab17-46f027198811": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20ca2a12-e319-4251-ab17-46f027198811", + "Name": null + }, + "f7053a12-a73d-4c6a-a042-d1a79b695591": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f7053a12-a73d-4c6a-a042-d1a79b695591", + "Name": "W18x40", + "EdgeId": 997, + "ExternalEdgeId": 997 + }, + "63838ec7-5e20-428b-9400-e687d8e3e5d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63838ec7-5e20-428b-9400-e687d8e3e5d0", + "Name": null + }, + "25414101-4368-4632-98b5-f81152fd630e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "25414101-4368-4632-98b5-f81152fd630e", + "Name": "W18x40", + "EdgeId": 998 + }, + "122f88db-5dfe-4749-9652-248f605ff7bd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "122f88db-5dfe-4749-9652-248f605ff7bd", + "Name": null + }, + "90d23a15-350f-4f3a-b35c-c63aae5f1a78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "90d23a15-350f-4f3a-b35c-c63aae5f1a78", + "Name": "W18x40", + "EdgeId": 1003 + }, + "f505cdde-bc96-4bdb-b288-b361227c3db0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f505cdde-bc96-4bdb-b288-b361227c3db0", + "Name": null + }, + "0653fa17-dfaa-48c8-8238-00d9788555a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0653fa17-dfaa-48c8-8238-00d9788555a2", + "Name": "W18x40", + "EdgeId": 1004 + }, + "0e094db9-767a-4414-ba25-ab1b9e786b43": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e094db9-767a-4414-ba25-ab1b9e786b43", + "Name": null + }, + "b8a3d14d-3e3a-481e-aa41-698d92bfaa8a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b8a3d14d-3e3a-481e-aa41-698d92bfaa8a", + "Name": "W18x40", + "EdgeId": 1005, + "ExternalEdgeId": 1005 + }, + "2bdaff6f-830d-48d6-8a4d-42cdd73c0399": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2bdaff6f-830d-48d6-8a4d-42cdd73c0399", + "Name": null + }, + "b030f520-90b0-40a5-9f74-7fe0509ebbe4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b030f520-90b0-40a5-9f74-7fe0509ebbe4", + "Name": "W18x40", + "EdgeId": 1013 + }, + "8c10d6c6-284e-46cb-8e8e-b786e9e22b7d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8c10d6c6-284e-46cb-8e8e-b786e9e22b7d", + "Name": null + }, + "3299945c-a95d-421b-b727-272c5f30a116": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3299945c-a95d-421b-b727-272c5f30a116", + "Name": "W18x40", + "EdgeId": 1014 + }, + "b431ab58-6ead-439d-a469-cc5c6b130be6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b431ab58-6ead-439d-a469-cc5c6b130be6", + "Name": null + }, + "b3c1e6b6-c4a4-4ed0-a261-c5746181dccd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b3c1e6b6-c4a4-4ed0-a261-c5746181dccd", + "Name": "W18x40", + "EdgeId": 1019 + }, + "45101495-88be-44a7-9fbe-94e0136170e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "45101495-88be-44a7-9fbe-94e0136170e3", + "Name": null + }, + "b53e6cef-503e-4360-9fc0-cb10010a6768": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b53e6cef-503e-4360-9fc0-cb10010a6768", + "Name": "W18x40", + "EdgeId": 1020 + }, + "356238d6-5168-4196-9ba3-2c1e71b4e0e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "356238d6-5168-4196-9ba3-2c1e71b4e0e9", + "Name": null + }, + "13183004-63cc-4007-af24-e232118246b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "13183004-63cc-4007-af24-e232118246b5", + "Name": "W18x40", + "EdgeId": 1025 + }, + "7ed0fbee-305e-4949-aa54-c901c3b4646b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ed0fbee-305e-4949-aa54-c901c3b4646b", + "Name": null + }, + "f211b2d4-05ea-4999-86f0-8e52af6b3424": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f211b2d4-05ea-4999-86f0-8e52af6b3424", + "Name": "W18x40", + "EdgeId": 1026 + }, + "ada75c3f-6841-443e-9b1c-ee37bcf487ea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ada75c3f-6841-443e-9b1c-ee37bcf487ea", + "Name": null + }, + "0ca744f2-c1d8-421d-b1f9-6ed37218fc7f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0ca744f2-c1d8-421d-b1f9-6ed37218fc7f", + "Name": "W18x40", + "EdgeId": 1031, + "ExternalEdgeId": 1031 + }, + "e205c057-0bf7-4fe6-90fd-796ad945b239": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e205c057-0bf7-4fe6-90fd-796ad945b239", + "Name": null + }, + "ba3a81a6-17ad-4f21-b74e-5efa1af8c89a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ba3a81a6-17ad-4f21-b74e-5efa1af8c89a", + "Name": "W18x40", + "EdgeId": 1032 + }, + "9385c7de-30af-4209-baa0-6275e49b4014": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9385c7de-30af-4209-baa0-6275e49b4014", + "Name": null + }, + "8b60a443-dd33-457b-9f4b-af6e912995e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8b60a443-dd33-457b-9f4b-af6e912995e2", + "Name": "W18x40", + "EdgeId": 1037 + }, + "792048f0-8bc3-4371-b0e6-686075799980": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "792048f0-8bc3-4371-b0e6-686075799980", + "Name": null + }, + "07ab2d04-b671-4557-9787-0be69c71fdff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "07ab2d04-b671-4557-9787-0be69c71fdff", + "Name": "W18x40", + "EdgeId": 1038 + }, + "737aeea6-bc4f-4365-aed6-f0bc0da758b2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "737aeea6-bc4f-4365-aed6-f0bc0da758b2", + "Name": null + }, + "4cae0f49-a7b4-4233-a84d-2a65aa402ab2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4cae0f49-a7b4-4233-a84d-2a65aa402ab2", + "Name": "W18x40", + "EdgeId": 1039, + "ExternalEdgeId": 1039 + }, + "9c526e10-ee01-4583-b79a-041158e88eb2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c526e10-ee01-4583-b79a-041158e88eb2", + "Name": null + }, + "842db928-cb4e-4841-ba4e-e54a53e0c300": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "842db928-cb4e-4841-ba4e-e54a53e0c300", + "Name": "W18x40", + "EdgeId": 1047 + }, + "f20d1831-8a72-4e0a-94cc-39ea0a44ddfb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f20d1831-8a72-4e0a-94cc-39ea0a44ddfb", + "Name": null + }, + "7feba37c-ef3a-4fd4-b23c-7fd8b03a3d70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7feba37c-ef3a-4fd4-b23c-7fd8b03a3d70", + "Name": "W18x40", + "EdgeId": 1048 + }, + "4ef0579c-1165-4b8c-b54c-24a7a5f9b210": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ef0579c-1165-4b8c-b54c-24a7a5f9b210", + "Name": null + }, + "c259c496-7702-44f8-8f86-5b622316afe3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c259c496-7702-44f8-8f86-5b622316afe3", + "Name": "W18x40", + "EdgeId": 1053 + }, + "1e832f87-1838-4842-9287-546747bcb1d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1e832f87-1838-4842-9287-546747bcb1d0", + "Name": null + }, + "ad05947a-43fb-4b48-9e9a-4b1d6e67df6e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ad05947a-43fb-4b48-9e9a-4b1d6e67df6e", + "Name": "W18x40", + "EdgeId": 1054 + }, + "e2b6d25b-6e74-47b4-b902-b4edaf4d0a9c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e2b6d25b-6e74-47b4-b902-b4edaf4d0a9c", + "Name": null + }, + "fac774d4-8062-41ae-b582-c8f95063a717": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "fac774d4-8062-41ae-b582-c8f95063a717", + "Name": "W18x40", + "EdgeId": 1059 + }, + "99729961-09a4-4eed-8de8-cc8f33a2ea65": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "99729961-09a4-4eed-8de8-cc8f33a2ea65", + "Name": null + }, + "6ac34513-5421-44fc-b586-2a8940408c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6ac34513-5421-44fc-b586-2a8940408c70", + "Name": "W18x40", + "EdgeId": 1060 + }, + "1c0ff0bf-a658-4707-bf4e-257a8677bcd1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c0ff0bf-a658-4707-bf4e-257a8677bcd1", + "Name": null + }, + "6fe44760-40a1-4ee4-a425-ad47a2c4977a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6fe44760-40a1-4ee4-a425-ad47a2c4977a", + "Name": "W18x40", + "EdgeId": 1065, + "ExternalEdgeId": 1065 + }, + "88707677-feaa-4195-aaf2-1459810c56d2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "88707677-feaa-4195-aaf2-1459810c56d2", + "Name": null + }, + "4581c9a3-4ad8-4632-b1c1-e547d19623c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4581c9a3-4ad8-4632-b1c1-e547d19623c7", + "Name": "W18x40", + "EdgeId": 1066 + }, + "334be1ae-722b-4936-8647-3a315193571b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "334be1ae-722b-4936-8647-3a315193571b", + "Name": null + }, + "c2b14c7e-2cda-44d5-8096-0ab4516bbad2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c2b14c7e-2cda-44d5-8096-0ab4516bbad2", + "Name": "W18x40", + "EdgeId": 1071 + }, + "ecf7ec55-4fb0-4a40-a222-1197b0e9ab97": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ecf7ec55-4fb0-4a40-a222-1197b0e9ab97", + "Name": null + }, + "68c6e619-9420-41bc-abfb-5332f7ff9176": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "68c6e619-9420-41bc-abfb-5332f7ff9176", + "Name": "W18x40", + "EdgeId": 1072 + }, + "122ec086-fc79-4c98-94bd-5e3928d4e6ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "122ec086-fc79-4c98-94bd-5e3928d4e6ff", + "Name": null + }, + "7e62bb88-aba9-42a3-b3f7-c57950b3f539": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7e62bb88-aba9-42a3-b3f7-c57950b3f539", + "Name": "W18x40", + "EdgeId": 1073, + "ExternalEdgeId": 1073 + }, + "69121062-d5c5-46b5-93fc-3a894c17da79": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "69121062-d5c5-46b5-93fc-3a894c17da79", + "Name": null + }, + "069e53f9-7101-47df-9ac0-7aba65d55112": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "069e53f9-7101-47df-9ac0-7aba65d55112", + "Name": "W18x40", + "EdgeId": 1081 + }, + "03cca63e-8eb4-43f0-ab09-4d0f0066eaeb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "03cca63e-8eb4-43f0-ab09-4d0f0066eaeb", + "Name": null + }, + "0146905f-d047-451c-a766-7da7adb8a634": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0146905f-d047-451c-a766-7da7adb8a634", + "Name": "W18x40", + "EdgeId": 1082 + }, + "26610b95-a6c1-43b9-b1b9-4e069a3662d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "26610b95-a6c1-43b9-b1b9-4e069a3662d9", + "Name": null + }, + "9c1ec1d1-3815-4d65-8520-acec9321895c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9c1ec1d1-3815-4d65-8520-acec9321895c", + "Name": "W18x40", + "EdgeId": 1087 + }, + "5e5c948f-8d93-4025-9bc3-d2e3e1f42df9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e5c948f-8d93-4025-9bc3-d2e3e1f42df9", + "Name": null + }, + "c165d5f3-38ba-4beb-ac9c-e7218d9ae4a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c165d5f3-38ba-4beb-ac9c-e7218d9ae4a5", + "Name": "W18x40", + "EdgeId": 1088 + }, + "e827e482-650d-4b1f-8599-1ab31e092d6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e827e482-650d-4b1f-8599-1ab31e092d6c", + "Name": null + }, + "1d9cf1d2-c33b-42f6-99bf-97e67b980f87": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1d9cf1d2-c33b-42f6-99bf-97e67b980f87", + "Name": "W18x40", + "EdgeId": 1093 + }, + "63e6b456-592e-4a89-bd27-a2d0a9fd7754": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63e6b456-592e-4a89-bd27-a2d0a9fd7754", + "Name": null + }, + "0ae2f756-987c-44a8-b108-5f1fb90b7ec4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0ae2f756-987c-44a8-b108-5f1fb90b7ec4", + "Name": "W18x40", + "EdgeId": 1094 + }, + "5e98b592-3177-4431-bd26-ce3eaef766c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e98b592-3177-4431-bd26-ce3eaef766c1", + "Name": null + }, + "2c488f87-15c2-4601-a52e-313f85d3b074": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2c488f87-15c2-4601-a52e-313f85d3b074", + "Name": "W18x40", + "EdgeId": 1099, + "ExternalEdgeId": 1099 + }, + "686cf60d-a032-4763-9880-e161132bc47f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "686cf60d-a032-4763-9880-e161132bc47f", + "Name": null + }, + "ba8620a3-8f7d-4eed-a751-034fe965a15d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ba8620a3-8f7d-4eed-a751-034fe965a15d", + "Name": "W18x40", + "EdgeId": 1100 + }, + "e2f50129-1b6b-4820-89a6-1fea563e9190": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e2f50129-1b6b-4820-89a6-1fea563e9190", + "Name": null + }, + "c4504696-bf38-4e1d-8052-7a36144a107b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c4504696-bf38-4e1d-8052-7a36144a107b", + "Name": "W18x40", + "EdgeId": 1105 + }, + "c0975bdd-0fa5-4f9a-9d01-a639c21d71e1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0975bdd-0fa5-4f9a-9d01-a639c21d71e1", + "Name": null + }, + "f04bd75e-2a0e-4d3d-ae8e-4916576b0c32": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f04bd75e-2a0e-4d3d-ae8e-4916576b0c32", + "Name": "W18x40", + "EdgeId": 1106, + "ExternalEdgeId": 1106 + }, + "68432f5b-933a-417f-bc7d-8ede14e900b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "68432f5b-933a-417f-bc7d-8ede14e900b3", + "Name": null + }, + "1ed05372-58db-4b76-8e17-b198ba1a47f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1ed05372-58db-4b76-8e17-b198ba1a47f8", + "Name": "W18x40", + "EdgeId": 1107, + "ExternalEdgeId": 1107 + }, + "734caf1a-caed-49be-a580-985d2b31de86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "734caf1a-caed-49be-a580-985d2b31de86", + "Name": null + }, + "28ee7ea3-4d7b-4732-808c-aee4d80f4d29": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "28ee7ea3-4d7b-4732-808c-aee4d80f4d29", + "Name": "W18x40", + "EdgeId": 1115 + }, + "890ca6ff-89d9-46e3-b80e-135f22f863de": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "890ca6ff-89d9-46e3-b80e-135f22f863de", + "Name": null + }, + "2617c055-0f7c-496f-93b0-c56282d8dc89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2617c055-0f7c-496f-93b0-c56282d8dc89", + "Name": "W18x40", + "EdgeId": 1116, + "ExternalEdgeId": 1116 + }, + "0d7a00d2-fc67-4b0c-a444-f1cb107c93d1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0d7a00d2-fc67-4b0c-a444-f1cb107c93d1", + "Name": null + }, + "a04426ef-3811-4523-bb52-4fdc05146523": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a04426ef-3811-4523-bb52-4fdc05146523", + "Name": "W18x40", + "EdgeId": 1121 + }, + "4730ad2e-5e56-45a8-b370-3409a00c60e2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4730ad2e-5e56-45a8-b370-3409a00c60e2", + "Name": null + }, + "9ed94cac-a200-4fe9-a48d-8cda6f79d8b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9ed94cac-a200-4fe9-a48d-8cda6f79d8b9", + "Name": "W18x40", + "EdgeId": 1122, + "ExternalEdgeId": 1122 + }, + "33802575-64c8-4662-b003-e57a72c61d83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33802575-64c8-4662-b003-e57a72c61d83", + "Name": null + }, + "2ab1d6ef-a307-49aa-bb63-8ee84d8d0a20": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2ab1d6ef-a307-49aa-bb63-8ee84d8d0a20", + "Name": "W18x40", + "EdgeId": 1127 + }, + "357366fb-303b-4a27-954d-4b57371fa7ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "357366fb-303b-4a27-954d-4b57371fa7ab", + "Name": null + }, + "d32b8c0d-780f-47bf-a48b-175320edbcd4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d32b8c0d-780f-47bf-a48b-175320edbcd4", + "Name": "W18x40", + "EdgeId": 1128, + "ExternalEdgeId": 1128 + }, + "9ab272b5-8bd6-4999-a586-9cf9ca59b05b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ab272b5-8bd6-4999-a586-9cf9ca59b05b", + "Name": null + }, + "292516de-95d8-44b1-a523-02ae4900c662": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "292516de-95d8-44b1-a523-02ae4900c662", + "Name": "W18x40", + "EdgeId": 1133, + "ExternalEdgeId": 1133 + }, + "653c69cd-6178-457f-b9ef-8dae21dfeacd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "653c69cd-6178-457f-b9ef-8dae21dfeacd", + "Name": null + }, + "20991959-31f3-4543-a74e-6b2c1faae1b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "20991959-31f3-4543-a74e-6b2c1faae1b5", + "Name": "W18x40", + "EdgeId": 1134, + "ExternalEdgeId": 1134 + }, + "73b4469f-b20c-4663-9314-bfc38a1b686d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73b4469f-b20c-4663-9314-bfc38a1b686d", + "Name": null + }, + "2c7eb993-4cd4-4f20-8317-9f163c87afc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1f248147-be87-4d6a-922b-e7bf05d5f27e", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.7324, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2c7eb993-4cd4-4f20-8317-9f163c87afc5", + "Name": "W18x40", + "EdgeId": 743, + "ExternalEdgeId": 743 + }, + "8663cb0c-7427-4bd0-8cbc-cad30654bcc2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8663cb0c-7427-4bd0-8cbc-cad30654bcc2", + "Name": null + }, + "5756762a-2263-45b8-be4e-a2ad7639e4e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5756762a-2263-45b8-be4e-a2ad7639e4e4", + "Name": "W18x40", + "EdgeId": 744, + "ExternalEdgeId": 744 + }, + "73a74312-97bc-4cef-82de-e4c2a579f925": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73a74312-97bc-4cef-82de-e4c2a579f925", + "Name": null + }, + "b5b0811b-cb0b-4d76-8d5c-e01131948b0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c9699dd2-d040-4a2c-ad98-36443b0d037a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b5b0811b-cb0b-4d76-8d5c-e01131948b0a", + "Name": "W18x40", + "EdgeId": 745, + "ExternalEdgeId": 745 + }, + "7b6151cf-07db-4a66-95c5-ab33ba68b16e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 12.7324, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7b6151cf-07db-4a66-95c5-ab33ba68b16e", + "Name": null + }, + "0321b70d-cd9e-4fa7-9ac2-38ac0f08bab7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "442ea777-71e8-42e2-a88c-d741cce24ce5", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252291, + 0.8320502943378437, + 0.0, + 9.7324, + -0.8320502943378437, + 0.5547001962252291, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0321b70d-cd9e-4fa7-9ac2-38ac0f08bab7", + "Name": "W18x40", + "EdgeId": 746, + "ExternalEdgeId": 746 + }, + "d3d26f53-ed8c-4b28-9a8f-275ea2d5666f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.7324, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 12.7324, + "Y": -5.000000000000001, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d3d26f53-ed8c-4b28-9a8f-275ea2d5666f", + "Name": null + }, + "b043f409-ee4d-4888-a089-0bdd02a18c85": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b043f409-ee4d-4888-a089-0bdd02a18c85", + "Name": "W18x40", + "EdgeId": 756, + "ExternalEdgeId": 756 + }, + "38e3f2b7-efce-40ca-b287-764275ff732b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38e3f2b7-efce-40ca-b287-764275ff732b", + "Name": null + }, + "5132d139-53df-47fc-b4e0-01402b2ff457": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5132d139-53df-47fc-b4e0-01402b2ff457", + "Name": "W18x40", + "EdgeId": 757, + "ExternalEdgeId": 757 + }, + "cf827c03-1d40-48f8-81ed-cbd2a689b310": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf827c03-1d40-48f8-81ed-cbd2a689b310", + "Name": null + }, + "bce2b108-d4f7-480a-8ec5-f41e537e159c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bce2b108-d4f7-480a-8ec5-f41e537e159c", + "Name": "W18x40", + "EdgeId": 758, + "ExternalEdgeId": 758 + }, + "6ff41ea2-caa9-4a70-a098-1801a987e5f0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6ff41ea2-caa9-4a70-a098-1801a987e5f0", + "Name": null + }, + "38b34cb0-298c-4166-9d59-ded344b19df4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "38b34cb0-298c-4166-9d59-ded344b19df4", + "Name": "W18x40", + "EdgeId": 766, + "ExternalEdgeId": 766 + }, + "c0ef46fb-af19-43c0-aedb-14bcf36be031": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0ef46fb-af19-43c0-aedb-14bcf36be031", + "Name": null + }, + "d7c4da69-c1c2-4fbc-bd21-d4809a0ef5fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -0.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d7c4da69-c1c2-4fbc-bd21-d4809a0ef5fe", + "Name": "W18x40", + "EdgeId": 767, + "ExternalEdgeId": 767 + }, + "3ed175cb-b5d1-49db-94a7-b77b70556d25": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -0.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3ed175cb-b5d1-49db-94a7-b77b70556d25", + "Name": null + }, + "cb4583df-2059-49fb-a900-929869c892ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cb4583df-2059-49fb-a900-929869c892ee", + "Name": "W18x40", + "EdgeId": 768, + "ExternalEdgeId": 768 + }, + "828084ab-62c7-4ab4-b643-dbe6d0c1e89f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "828084ab-62c7-4ab4-b643-dbe6d0c1e89f", + "Name": null + }, + "71ae6296-8777-40f8-82d8-8ee0bd2b089f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e5972626-f896-4b80-b62f-fa93a8846507", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "71ae6296-8777-40f8-82d8-8ee0bd2b089f", + "Name": "W18x40", + "EdgeId": 777, + "ExternalEdgeId": 777 + }, + "7788f3e8-a530-4b70-b586-a3bf3b4aad13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7788f3e8-a530-4b70-b586-a3bf3b4aad13", + "Name": null + }, + "ee9be891-f9c8-4f9a-978a-97dc932ff571": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "49319ac3-7aa7-4cea-aa5e-8a40ef05e1ba", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ee9be891-f9c8-4f9a-978a-97dc932ff571", + "Name": "W18x40", + "EdgeId": 778, + "ExternalEdgeId": 778 + }, + "950cb672-8034-4cba-b1bc-2d775e62da27": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "950cb672-8034-4cba-b1bc-2d775e62da27", + "Name": null + }, + "2473e0ee-e5ae-488c-ba80-d6a29fd67dcb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "4dc79d1f-76cc-4eac-ba1d-90c0929442e9", + "Transform": { + "Matrix": { + "Components": [ + 0.5547391419896724, + 0.8320243291782772, + 0.0, + 16.0, + -0.8320243291782772, + 0.5547391419896724, + 0.0, + -9.9014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2473e0ee-e5ae-488c-ba80-d6a29fd67dcb", + "Name": "W18x40", + "EdgeId": 779, + "ExternalEdgeId": 779 + }, + "9c19123b-a9b1-485d-9566-dbdbd9216efb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -9.9014, + "Z": 20.0 + }, + "End": { + "X": 16.06574, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c19123b-a9b1-485d-9566-dbdbd9216efb", + "Name": null + }, + "bb40d15e-e079-4dc2-93de-e18ceceaecad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "39b28bf6-91db-4c72-b448-44bed8dc6bc0", + "Transform": { + "Matrix": { + "Components": [ + 0.554700196225229, + 0.8320502943378437, + 0.0, + 12.7324, + -0.8320502943378437, + 0.554700196225229, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bb40d15e-e079-4dc2-93de-e18ceceaecad", + "Name": "W18x40", + "EdgeId": 787, + "ExternalEdgeId": 787 + }, + "34a8d463-fc09-4115-a43c-0ee0b975aef4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.7324, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -9.9014, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "34a8d463-fc09-4115-a43c-0ee0b975aef4", + "Name": null + }, + "65981e7e-d5a1-4313-8676-b35279a176bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "65981e7e-d5a1-4313-8676-b35279a176bc", + "Name": "W18x40", + "EdgeId": 788, + "ExternalEdgeId": 788 + }, + "ac7e3056-82e6-4587-8fe7-735f65926c34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ac7e3056-82e6-4587-8fe7-735f65926c34", + "Name": null + }, + "41822c49-718f-43a8-a3ea-d357d91566aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "41822c49-718f-43a8-a3ea-d357d91566aa", + "Name": "W18x40", + "EdgeId": 789, + "ExternalEdgeId": 789 + }, + "243f6eeb-15f9-43e6-bd7a-6dfbfccde7d4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "243f6eeb-15f9-43e6-bd7a-6dfbfccde7d4", + "Name": null + }, + "e218b82a-f3fc-4467-b5ef-38a4da62bca2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e218b82a-f3fc-4467-b5ef-38a4da62bca2", + "Name": "W18x40", + "EdgeId": 794, + "ExternalEdgeId": 794 + }, + "6cbf7deb-dae4-41d0-8e8d-82c3260a2430": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6cbf7deb-dae4-41d0-8e8d-82c3260a2430", + "Name": null + }, + "da2dc2c2-0df2-42f2-b2d7-b929ad3d3d53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "da2dc2c2-0df2-42f2-b2d7-b929ad3d3d53", + "Name": "W18x40", + "EdgeId": 795, + "ExternalEdgeId": 795 + }, + "52aea727-371e-4797-b661-b7889feef359": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52aea727-371e-4797-b661-b7889feef359", + "Name": null + }, + "e20f78b6-c5f5-46c6-b47d-ebd49576e288": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e20f78b6-c5f5-46c6-b47d-ebd49576e288", + "Name": "W18x40", + "EdgeId": 800, + "ExternalEdgeId": 800 + }, + "44bff635-6507-4c63-afbb-56351081e556": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44bff635-6507-4c63-afbb-56351081e556", + "Name": null + }, + "3e33cffe-9621-4dd3-a2fa-97a6ee0c80ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3e33cffe-9621-4dd3-a2fa-97a6ee0c80ef", + "Name": "W18x40", + "EdgeId": 801, + "ExternalEdgeId": 801 + }, + "7ae1d603-4118-485e-969b-f0c500108f0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ae1d603-4118-485e-969b-f0c500108f0b", + "Name": null + }, + "f665b099-8d3f-4f2f-8efb-78684869ee9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f665b099-8d3f-4f2f-8efb-78684869ee9a", + "Name": "W18x40", + "EdgeId": 808, + "ExternalEdgeId": 808 + }, + "65656ef1-fabc-42a7-950b-3cbb77315098": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "65656ef1-fabc-42a7-950b-3cbb77315098", + "Name": null + }, + "62b1a0fd-51db-4848-bc63-a54b510683d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0b85760d-9483-48e4-99ef-f0158063192f", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "62b1a0fd-51db-4848-bc63-a54b510683d3", + "Name": "W18x40", + "EdgeId": 809, + "ExternalEdgeId": 809 + }, + "b78ebffa-56bc-4113-b30a-f8bf8ee25d50": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b78ebffa-56bc-4113-b30a-f8bf8ee25d50", + "Name": null + }, + "ff320985-20bc-4322-838c-a8268cbb31e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 16.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ff320985-20bc-4322-838c-a8268cbb31e7", + "Name": "W18x40", + "EdgeId": 810, + "ExternalEdgeId": 810 + }, + "d3883d30-ddc0-413b-be63-9138d286a076": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.06574, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 19.39906, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d3883d30-ddc0-413b-be63-9138d286a076", + "Name": null + }, + "4a518308-397c-4ffd-85d2-a0cf7fc869a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4a518308-397c-4ffd-85d2-a0cf7fc869a8", + "Name": "W18x40", + "EdgeId": 816, + "ExternalEdgeId": 816 + }, + "bfbd8a52-9670-4628-8ffd-15f8473f936f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bfbd8a52-9670-4628-8ffd-15f8473f936f", + "Name": null + }, + "4ccc9ba0-0d14-4a09-824f-17be83ece5fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4ccc9ba0-0d14-4a09-824f-17be83ece5fb", + "Name": "W18x40", + "EdgeId": 817, + "ExternalEdgeId": 817 + }, + "6e347141-937a-4777-9759-33424e9ff420": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6e347141-937a-4777-9759-33424e9ff420", + "Name": null + }, + "95814d6a-59f3-4dc7-b58f-11046e48fd77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "95814d6a-59f3-4dc7-b58f-11046e48fd77", + "Name": "W18x40", + "EdgeId": 822, + "ExternalEdgeId": 822 + }, + "89d6c147-b368-46ab-a23c-8ce956c9108d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "89d6c147-b368-46ab-a23c-8ce956c9108d", + "Name": null + }, + "5661d36f-32ca-4590-8f6e-8a7c093db3d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5661d36f-32ca-4590-8f6e-8a7c093db3d7", + "Name": "W18x40", + "EdgeId": 823, + "ExternalEdgeId": 823 + }, + "6ff4922b-1361-470e-bdde-889202ccfad9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6ff4922b-1361-470e-bdde-889202ccfad9", + "Name": null + }, + "ecf1ed6e-0aae-4cdd-9970-e6844cd79632": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ecf1ed6e-0aae-4cdd-9970-e6844cd79632", + "Name": "W18x40", + "EdgeId": 828, + "ExternalEdgeId": 828 + }, + "f6d9d95e-ed0a-46d3-aa9d-46fd12655481": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f6d9d95e-ed0a-46d3-aa9d-46fd12655481", + "Name": null + }, + "3adb9c36-6df2-46b9-beeb-cc9f9476a6a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3adb9c36-6df2-46b9-beeb-cc9f9476a6a1", + "Name": "W18x40", + "EdgeId": 829, + "ExternalEdgeId": 829 + }, + "721b5f74-a61a-479d-a3c4-80357ca13269": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "721b5f74-a61a-479d-a3c4-80357ca13269", + "Name": null + }, + "bedc85d6-d54d-4c4a-9eda-77a124c04fdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bedc85d6-d54d-4c4a-9eda-77a124c04fdf", + "Name": "W18x40", + "EdgeId": 836, + "ExternalEdgeId": 836 + }, + "6408316b-1e56-41e8-9d1d-e4dfb779b7bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6408316b-1e56-41e8-9d1d-e4dfb779b7bf", + "Name": null + }, + "a342edcf-f7fa-4ec7-9dc5-6e3179058dc9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "7cd6c7d4-992c-4217-9c1f-ac7c9170b25c", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a342edcf-f7fa-4ec7-9dc5-6e3179058dc9", + "Name": "W18x40", + "EdgeId": 837, + "ExternalEdgeId": 837 + }, + "a65c9b1a-22e6-496c-808f-637dc2dc29f0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a65c9b1a-22e6-496c-808f-637dc2dc29f0", + "Name": null + }, + "3b72397b-b999-4167-b563-85082306e283": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "f1f4efee-0d74-4a09-8341-e6127bd83748", + "Transform": { + "Matrix": { + "Components": [ + 0.5547009642709457, + 0.832049782306854, + 0.0, + 19.39906, + -0.832049782306854, + 0.5547009642709457, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3b72397b-b999-4167-b563-85082306e283", + "Name": "W18x40", + "EdgeId": 838, + "ExternalEdgeId": 838 + }, + "77d9f8aa-d428-4c21-93df-66a7c3cb4e7b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.39906, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 22.7324, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "77d9f8aa-d428-4c21-93df-66a7c3cb4e7b", + "Name": null + }, + "d0e7a827-0007-49c1-b7bd-19876abd9664": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d0e7a827-0007-49c1-b7bd-19876abd9664", + "Name": "W18x40", + "EdgeId": 844, + "ExternalEdgeId": 844 + }, + "a7c2923a-7f60-44ff-9140-ad25c85b6c02": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a7c2923a-7f60-44ff-9140-ad25c85b6c02", + "Name": null + }, + "0ce428b1-7ae5-48df-a70a-c208c6144f46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0ce428b1-7ae5-48df-a70a-c208c6144f46", + "Name": "W18x40", + "EdgeId": 845, + "ExternalEdgeId": 845 + }, + "60d0cc29-63f4-4bbb-8120-75671843a2f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "60d0cc29-63f4-4bbb-8120-75671843a2f9", + "Name": null + }, + "c3d4d65b-35a7-4b46-a6c6-ade3ce953ad6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c3d4d65b-35a7-4b46-a6c6-ade3ce953ad6", + "Name": "W18x40", + "EdgeId": 850, + "ExternalEdgeId": 850 + }, + "f52dc20f-c60e-49c6-bea8-f80bd1f74321": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f52dc20f-c60e-49c6-bea8-f80bd1f74321", + "Name": null + }, + "94246612-0f92-4187-8cd0-d6cd6415d402": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "94246612-0f92-4187-8cd0-d6cd6415d402", + "Name": "W18x40", + "EdgeId": 851, + "ExternalEdgeId": 851 + }, + "85975820-fc2b-4c25-ad99-5b4d3d8f1be5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "85975820-fc2b-4c25-ad99-5b4d3d8f1be5", + "Name": null + }, + "8c8b161d-d579-44e1-a9a1-3659d664ac19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8c8b161d-d579-44e1-a9a1-3659d664ac19", + "Name": "W18x40", + "EdgeId": 856, + "ExternalEdgeId": 856 + }, + "459d04bf-a8b5-4434-ace4-f0071301e4f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "459d04bf-a8b5-4434-ace4-f0071301e4f5", + "Name": null + }, + "0430ef17-e21e-44a8-88d3-9a4d4cafb4d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0430ef17-e21e-44a8-88d3-9a4d4cafb4d8", + "Name": "W18x40", + "EdgeId": 857, + "ExternalEdgeId": 857 + }, + "b5ad1334-5949-49d1-a1f9-585b5099a88d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b5ad1334-5949-49d1-a1f9-585b5099a88d", + "Name": null + }, + "30ffb01c-8106-450b-a0f5-217ee9a49c3c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d4da724b-0d2f-4bd3-acf2-5d3697adf278", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "30ffb01c-8106-450b-a0f5-217ee9a49c3c", + "Name": "W18x40", + "EdgeId": 865, + "ExternalEdgeId": 865 + }, + "444bcd1b-af72-442c-91fe-3fa51a086344": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "444bcd1b-af72-442c-91fe-3fa51a086344", + "Name": null + }, + "34ac1015-8fa2-458c-88b4-9c3a44a410ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b110d957-b9da-4137-9c21-3ec50b79b33e", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "34ac1015-8fa2-458c-88b4-9c3a44a410ad", + "Name": "W18x40", + "EdgeId": 866, + "ExternalEdgeId": 866 + }, + "63be612e-2c6c-45e3-a336-67f869575bdf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63be612e-2c6c-45e3-a336-67f869575bdf", + "Name": null + }, + "a17f5d18-cd51-4d21-8264-1bbde173aade": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e0c50391-a50c-417e-a648-1d8139e40aa4", + "Transform": { + "Matrix": { + "Components": [ + 0.5547010313116194, + 0.8320497376129783, + 0.0, + 23.0, + -0.8320497376129783, + 0.5547010313116194, + 0.0, + -20.4014, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a17f5d18-cd51-4d21-8264-1bbde173aade", + "Name": "W18x40", + "EdgeId": 867, + "ExternalEdgeId": 867 + }, + "e9284f9c-d88c-4bb6-8bdc-4ed852eb477a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -20.4014, + "Z": 20.0 + }, + "End": { + "X": 26.06574, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e9284f9c-d88c-4bb6-8bdc-4ed852eb477a", + "Name": null + }, + "693cdb0c-e4cd-4bb6-baf2-f3e754bcd5b0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "3bf2c337-826f-4c12-b4d9-a345602f7c71", + "Transform": { + "Matrix": { + "Components": [ + 0.5547001962252325, + 0.8320502943378414, + 0.0, + 22.7324, + -0.8320502943378414, + 0.5547001962252325, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "693cdb0c-e4cd-4bb6-baf2-f3e754bcd5b0", + "Name": "W18x40", + "EdgeId": 875, + "ExternalEdgeId": 875 + }, + "961c967d-6fe0-42eb-a8a0-12a8e4b83c17": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 22.7324, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -20.4014, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "961c967d-6fe0-42eb-a8a0-12a8e4b83c17", + "Name": null + }, + "5ccb4c9e-2a53-4d93-a600-e6bc4cbc0317": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5ccb4c9e-2a53-4d93-a600-e6bc4cbc0317", + "Name": "W18x40", + "EdgeId": 876, + "ExternalEdgeId": 876 + }, + "a2a24add-5406-4e8c-9719-b0c2b6fc564d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a2a24add-5406-4e8c-9719-b0c2b6fc564d", + "Name": null + }, + "66b9b86b-606c-48cb-aa7d-e3d991825009": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "66b9b86b-606c-48cb-aa7d-e3d991825009", + "Name": "W18x40", + "EdgeId": 877, + "ExternalEdgeId": 877 + }, + "10904fb9-2f15-44f2-a0bf-e0414d04cdb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10904fb9-2f15-44f2-a0bf-e0414d04cdb4", + "Name": null + }, + "36be7197-ee41-4c8f-8a36-421985abc6dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "36be7197-ee41-4c8f-8a36-421985abc6dd", + "Name": "W18x40", + "EdgeId": 882, + "ExternalEdgeId": 882 + }, + "e2806254-740d-4b80-9b03-2f18691629d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e2806254-740d-4b80-9b03-2f18691629d7", + "Name": null + }, + "28f31813-d4bf-4f0e-b249-1e2a82cf87fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "28f31813-d4bf-4f0e-b249-1e2a82cf87fd", + "Name": "W18x40", + "EdgeId": 883, + "ExternalEdgeId": 883 + }, + "b9aa9f70-f29e-496f-8fde-c5c3771b5a56": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9aa9f70-f29e-496f-8fde-c5c3771b5a56", + "Name": null + }, + "623831a9-1c60-4d67-a71c-2e3d6f4e502c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "623831a9-1c60-4d67-a71c-2e3d6f4e502c", + "Name": "W18x40", + "EdgeId": 888, + "ExternalEdgeId": 888 + }, + "05a16553-518c-45dd-a305-c7f6b9c04bb2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "05a16553-518c-45dd-a305-c7f6b9c04bb2", + "Name": null + }, + "92a9090a-4ba7-47c4-aff6-2417b3ba43a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "92a9090a-4ba7-47c4-aff6-2417b3ba43a6", + "Name": "W18x40", + "EdgeId": 889, + "ExternalEdgeId": 889 + }, + "62649b46-d79e-4a58-9d57-fa27f1a8214e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "62649b46-d79e-4a58-9d57-fa27f1a8214e", + "Name": null + }, + "92f8f5e9-f770-4ec5-851e-d485a3f0f77f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "92f8f5e9-f770-4ec5-851e-d485a3f0f77f", + "Name": "W18x40", + "EdgeId": 894, + "ExternalEdgeId": 894 + }, + "f271ffb4-48d9-4f9d-81ad-f02950f9dd13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f271ffb4-48d9-4f9d-81ad-f02950f9dd13", + "Name": null + }, + "b7cab596-9e32-4caf-a586-96421f96a748": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b7cab596-9e32-4caf-a586-96421f96a748", + "Name": "W18x40", + "EdgeId": 895, + "ExternalEdgeId": 895 + }, + "70c077ab-9d1d-40e1-8d5e-e06581dc9cbd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "70c077ab-9d1d-40e1-8d5e-e06581dc9cbd", + "Name": null + }, + "7566054d-9770-4a02-a74b-568fd5c011ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7566054d-9770-4a02-a74b-568fd5c011ab", + "Name": "W18x40", + "EdgeId": 902, + "ExternalEdgeId": 902 + }, + "6d949604-4db6-48a8-a715-238cc841e241": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d949604-4db6-48a8-a715-238cc841e241", + "Name": null + }, + "fcb071dd-e00b-4d80-8f28-d8b678c4e22c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "9b7bdf59-55a7-4daf-9c50-86da88398d8a", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fcb071dd-e00b-4d80-8f28-d8b678c4e22c", + "Name": "W18x40", + "EdgeId": 903, + "ExternalEdgeId": 903 + }, + "b4131bed-9735-4b2a-93a4-db8400dc7cf1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4131bed-9735-4b2a-93a4-db8400dc7cf1", + "Name": null + }, + "32993163-28bf-446d-bc41-e38dc63dcf63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2d8372e3-18d6-43f5-b8a6-ca8af44199e8", + "Transform": { + "Matrix": { + "Components": [ + 0.5546986601295418, + 0.8320513183995871, + 0.0, + 26.06574, + -0.8320513183995871, + 0.5546986601295418, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "32993163-28bf-446d-bc41-e38dc63dcf63", + "Name": "W18x40", + "EdgeId": 904, + "ExternalEdgeId": 904 + }, + "cebc0a4c-75a5-4f98-bc26-627264d2d24c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.06574, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 29.39906, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cebc0a4c-75a5-4f98-bc26-627264d2d24c", + "Name": null + }, + "714355d3-4abe-4fbd-9d7c-ca868550ca9d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "714355d3-4abe-4fbd-9d7c-ca868550ca9d", + "Name": "W18x40", + "EdgeId": 910, + "ExternalEdgeId": 910 + }, + "8837d5be-0438-4d00-a44f-d56165d5f86b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8837d5be-0438-4d00-a44f-d56165d5f86b", + "Name": null + }, + "0122a9d8-8a9c-44f4-9ed2-973ff1371324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0122a9d8-8a9c-44f4-9ed2-973ff1371324", + "Name": "W18x40", + "EdgeId": 911, + "ExternalEdgeId": 911 + }, + "368d544b-1bc0-4772-afaa-4fa96f0bf5d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "368d544b-1bc0-4772-afaa-4fa96f0bf5d6", + "Name": null + }, + "12b5ec13-41b5-4e8a-bd0c-f3685a74b648": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "12b5ec13-41b5-4e8a-bd0c-f3685a74b648", + "Name": "W18x40", + "EdgeId": 916, + "ExternalEdgeId": 916 + }, + "be1eea6c-5381-4a49-9607-4e47e5a12b78": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "be1eea6c-5381-4a49-9607-4e47e5a12b78", + "Name": null + }, + "ffd2e42e-eba8-4dae-9be3-4a08fd21717b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ffd2e42e-eba8-4dae-9be3-4a08fd21717b", + "Name": "W18x40", + "EdgeId": 917, + "ExternalEdgeId": 917 + }, + "d31d51e9-ce64-4226-a448-637d7c7aee90": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d31d51e9-ce64-4226-a448-637d7c7aee90", + "Name": null + }, + "e70f7a79-8204-45b6-b93e-c463fef45005": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e70f7a79-8204-45b6-b93e-c463fef45005", + "Name": "W18x40", + "EdgeId": 922, + "ExternalEdgeId": 922 + }, + "79ab0755-68bb-47da-8548-4b6c81777e0f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "79ab0755-68bb-47da-8548-4b6c81777e0f", + "Name": null + }, + "2674f30b-a4de-4f3d-820f-efd5a19ef366": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2674f30b-a4de-4f3d-820f-efd5a19ef366", + "Name": "W18x40", + "EdgeId": 923, + "ExternalEdgeId": 923 + }, + "14762112-2644-420c-bac2-15118c85b1c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14762112-2644-420c-bac2-15118c85b1c5", + "Name": null + }, + "5f898749-d865-43f3-94e6-f4dfe98ecb80": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5f898749-d865-43f3-94e6-f4dfe98ecb80", + "Name": "W18x40", + "EdgeId": 928, + "ExternalEdgeId": 928 + }, + "ac5a5eac-2ebe-4ed7-acda-a5906bc8c520": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ac5a5eac-2ebe-4ed7-acda-a5906bc8c520", + "Name": null + }, + "8ba3fc5e-c4f7-401b-a83a-8b3fef431bfc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8ba3fc5e-c4f7-401b-a83a-8b3fef431bfc", + "Name": "W18x40", + "EdgeId": 929, + "ExternalEdgeId": 929 + }, + "ef3034db-548f-410f-90cd-b9338048aede": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef3034db-548f-410f-90cd-b9338048aede", + "Name": null + }, + "53296270-fce1-41bd-9d78-3f9dbb774191": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "34bbf385-46d3-47bf-83a0-3a400bd05173", + "Transform": { + "Matrix": { + "Components": [ + 0.5547255602613056, + 0.8320333844220319, + 0.0, + 29.39906, + -0.8320333844220319, + 0.5547255602613056, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "53296270-fce1-41bd-9d78-3f9dbb774191", + "Name": "W18x40", + "EdgeId": 938, + "ExternalEdgeId": 938 + }, + "9f54c068-1b29-4670-8d39-d3bdf2135f77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.39906, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -30.1514, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f54c068-1b29-4670-8d39-d3bdf2135f77", + "Name": null + }, + "721061e9-d727-4962-8bfd-c5927f6ffdf3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "721061e9-d727-4962-8bfd-c5927f6ffdf3", + "Name": "W18x40", + "EdgeId": 939, + "ExternalEdgeId": 939 + }, + "7c86758a-223d-4005-8e05-a70915727041": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c86758a-223d-4005-8e05-a70915727041", + "Name": null + }, + "e24785cc-7120-4edb-8430-7a59883bfe30": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e24785cc-7120-4edb-8430-7a59883bfe30", + "Name": "W18x40", + "EdgeId": 940, + "ExternalEdgeId": 940 + }, + "2d2b99f4-b82b-4524-831d-5c24d3a1cddc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d2b99f4-b82b-4524-831d-5c24d3a1cddc", + "Name": null + }, + "fdfff1e4-2107-47fe-b6b4-00f44348b518": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2984e71a-f669-4201-8e3b-e26ab9529910", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -30.1514, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fdfff1e4-2107-47fe-b6b4-00f44348b518", + "Name": "W18x40", + "EdgeId": 941, + "ExternalEdgeId": 941 + }, + "fbb81037-5754-4d19-8cc3-2b070c916858": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -30.1514, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbb81037-5754-4d19-8cc3-2b070c916858", + "Name": null + }, + "c59fd964-46f1-47dd-b042-1357c366eeca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c59fd964-46f1-47dd-b042-1357c366eeca", + "Name": "W18x40", + "EdgeId": 948, + "ExternalEdgeId": 948 + }, + "e5fa3f8a-f2d9-4409-af93-183d7fef4b13": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5fa3f8a-f2d9-4409-af93-183d7fef4b13", + "Name": null + }, + "ac1a3fe0-2302-4749-906a-b07f147d4c48": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ac1a3fe0-2302-4749-906a-b07f147d4c48", + "Name": "W18x40", + "EdgeId": 949, + "ExternalEdgeId": 949 + }, + "ea6ffe64-4db0-4878-a2f1-5b42902c3472": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea6ffe64-4db0-4878-a2f1-5b42902c3472", + "Name": null + }, + "587341cb-ec42-431e-a66a-ec5f6a9ba78a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "587341cb-ec42-431e-a66a-ec5f6a9ba78a", + "Name": "W18x40", + "EdgeId": 954, + "ExternalEdgeId": 954 + }, + "487b1b5b-84c1-4cf2-b777-6ce3c2595f1e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "487b1b5b-84c1-4cf2-b777-6ce3c2595f1e", + "Name": null + }, + "b62c2d59-e03e-49de-a2b9-f9a4ca6bc863": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b62c2d59-e03e-49de-a2b9-f9a4ca6bc863", + "Name": "W18x40", + "EdgeId": 955, + "ExternalEdgeId": 955 + }, + "b64bff93-2329-42be-8d9c-c9a51a4d68be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b64bff93-2329-42be-8d9c-c9a51a4d68be", + "Name": null + }, + "654c062f-a3d5-4646-940b-d16b68e75ac7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "654c062f-a3d5-4646-940b-d16b68e75ac7", + "Name": "W18x40", + "EdgeId": 960, + "ExternalEdgeId": 960 + }, + "c64b40cd-45ea-4411-878c-f96656f3d512": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c64b40cd-45ea-4411-878c-f96656f3d512", + "Name": null + }, + "ae39f61f-1e45-4f2b-bb05-dff285aa5231": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ae39f61f-1e45-4f2b-bb05-dff285aa5231", + "Name": "W18x40", + "EdgeId": 961, + "ExternalEdgeId": 961 + }, + "8adba4b3-ce06-47f6-92f0-74792f86a334": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8adba4b3-ce06-47f6-92f0-74792f86a334", + "Name": null + }, + "9a32a250-7090-4ece-8064-e5d566ef045a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9a32a250-7090-4ece-8064-e5d566ef045a", + "Name": "W18x40", + "EdgeId": 966, + "ExternalEdgeId": 966 + }, + "6738b108-a109-45c5-b0cf-ea19feaeca6a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6738b108-a109-45c5-b0cf-ea19feaeca6a", + "Name": null + }, + "8a4d5797-fc3e-4e1c-a76d-f25a45aef2b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8a4d5797-fc3e-4e1c-a76d-f25a45aef2b9", + "Name": "W18x40", + "EdgeId": 967, + "ExternalEdgeId": 967 + }, + "5bb43beb-dedb-4d48-80b5-566a5035974c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5bb43beb-dedb-4d48-80b5-566a5035974c", + "Name": null + }, + "c1b9a3e3-87ea-4d35-9c10-dde0976a3a56": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c1b9a3e3-87ea-4d35-9c10-dde0976a3a56", + "Name": "W18x40", + "EdgeId": 974, + "ExternalEdgeId": 974 + }, + "d1b989fa-cdc4-4f82-a779-dffd764cab77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1b989fa-cdc4-4f82-a779-dffd764cab77", + "Name": null + }, + "8422fc73-f654-40be-92ef-b47bfa083722": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8422fc73-f654-40be-92ef-b47bfa083722", + "Name": "W18x40", + "EdgeId": 975, + "ExternalEdgeId": 975 + }, + "32847fe1-8fce-421e-978f-067f16b4cbe7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32847fe1-8fce-421e-978f-067f16b4cbe7", + "Name": null + }, + "a3aed147-8a79-4e25-90da-ceed483bfb0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a3aed147-8a79-4e25-90da-ceed483bfb0a", + "Name": "W18x40", + "EdgeId": 976, + "ExternalEdgeId": 976 + }, + "62eba8bb-7ed6-40b9-b40a-3aede2fe15cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "62eba8bb-7ed6-40b9-b40a-3aede2fe15cd", + "Name": null + }, + "1338175c-45d5-48f8-b3cd-5bfcce3a26be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1338175c-45d5-48f8-b3cd-5bfcce3a26be", + "Name": "W18x40", + "EdgeId": 982, + "ExternalEdgeId": 982 + }, + "83d5bbae-24a5-4ccb-bdf5-fefe56a4da96": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83d5bbae-24a5-4ccb-bdf5-fefe56a4da96", + "Name": null + }, + "5ba70cc0-1749-498a-ba7c-a113c849c0ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5ba70cc0-1749-498a-ba7c-a113c849c0ee", + "Name": "W18x40", + "EdgeId": 983, + "ExternalEdgeId": 983 + }, + "fda51021-19ea-47c2-89d8-bebefae64ef7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fda51021-19ea-47c2-89d8-bebefae64ef7", + "Name": null + }, + "aee751e8-23b3-43b6-ad64-46e454aa4e01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "aee751e8-23b3-43b6-ad64-46e454aa4e01", + "Name": "W18x40", + "EdgeId": 988, + "ExternalEdgeId": 988 + }, + "b3be5363-5298-4e00-9c9a-d29bd855b1ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b3be5363-5298-4e00-9c9a-d29bd855b1ba", + "Name": null + }, + "00cd6d38-81c0-4546-ae18-577def7829ac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "00cd6d38-81c0-4546-ae18-577def7829ac", + "Name": "W18x40", + "EdgeId": 989, + "ExternalEdgeId": 989 + }, + "6f10f44f-4bea-4415-97bc-75f6a29ead0f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6f10f44f-4bea-4415-97bc-75f6a29ead0f", + "Name": null + }, + "9331dc8b-e289-49b1-a173-ddb610239644": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9331dc8b-e289-49b1-a173-ddb610239644", + "Name": "W18x40", + "EdgeId": 994, + "ExternalEdgeId": 994 + }, + "5d25370a-d634-49b0-98e4-3c3a643493a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5d25370a-d634-49b0-98e4-3c3a643493a3", + "Name": null + }, + "d3303415-fd73-4c95-ba14-0d4a738f3710": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d3303415-fd73-4c95-ba14-0d4a738f3710", + "Name": "W18x40", + "EdgeId": 995, + "ExternalEdgeId": 995 + }, + "9ff47446-ad73-475c-bd69-29d9910f2eee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ff47446-ad73-475c-bd69-29d9910f2eee", + "Name": null + }, + "f7fd7ce1-e38d-4262-a535-65297ffec748": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f7fd7ce1-e38d-4262-a535-65297ffec748", + "Name": "W18x40", + "EdgeId": 1000, + "ExternalEdgeId": 1000 + }, + "afba6cb7-2cb7-45cd-94c4-89cb9febc67f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "afba6cb7-2cb7-45cd-94c4-89cb9febc67f", + "Name": null + }, + "3400de3a-be17-43a5-b35e-2e24a05a60d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3400de3a-be17-43a5-b35e-2e24a05a60d6", + "Name": "W18x40", + "EdgeId": 1001, + "ExternalEdgeId": 1001 + }, + "528c9834-f0e7-4420-9a89-e3e25eeb63c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "528c9834-f0e7-4420-9a89-e3e25eeb63c5", + "Name": null + }, + "ce9d7ceb-1e34-48d1-8dc3-e065820bf4ca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ce9d7ceb-1e34-48d1-8dc3-e065820bf4ca", + "Name": "W18x40", + "EdgeId": 1008, + "ExternalEdgeId": 1008 + }, + "7f1188b8-b857-498c-ac4f-0c0b0e7dfa5c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7f1188b8-b857-498c-ac4f-0c0b0e7dfa5c", + "Name": null + }, + "0a728c89-ee3d-4e8c-a333-f7fcf52c83ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0a728c89-ee3d-4e8c-a333-f7fcf52c83ef", + "Name": "W18x40", + "EdgeId": 1009, + "ExternalEdgeId": 1009 + }, + "e735e45f-1105-450c-8196-70eaf295de28": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e735e45f-1105-450c-8196-70eaf295de28", + "Name": null + }, + "01ad8d79-bdc1-4996-82c8-f12caffcca7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "01ad8d79-bdc1-4996-82c8-f12caffcca7c", + "Name": "W18x40", + "EdgeId": 1010, + "ExternalEdgeId": 1010 + }, + "74dbfe53-ed7c-45d0-84b2-4f8102e7a988": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "74dbfe53-ed7c-45d0-84b2-4f8102e7a988", + "Name": null + }, + "d3b77ff3-da08-4bfc-8455-67982cb68b91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d3b77ff3-da08-4bfc-8455-67982cb68b91", + "Name": "W18x40", + "EdgeId": 1016, + "ExternalEdgeId": 1016 + }, + "4f840cd7-cf6f-416e-b568-1ec54c879391": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f840cd7-cf6f-416e-b568-1ec54c879391", + "Name": null + }, + "4a67bc8d-d672-4e1d-b148-48c1161a338e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4a67bc8d-d672-4e1d-b148-48c1161a338e", + "Name": "W18x40", + "EdgeId": 1017, + "ExternalEdgeId": 1017 + }, + "5a84afaa-2916-4f0e-b296-a7b8457373a4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a84afaa-2916-4f0e-b296-a7b8457373a4", + "Name": null + }, + "6dbfb248-8bf5-4825-bf8e-dde9fe8087e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6dbfb248-8bf5-4825-bf8e-dde9fe8087e7", + "Name": "W18x40", + "EdgeId": 1022, + "ExternalEdgeId": 1022 + }, + "6d9bad59-e1f2-4cd0-a52b-3f4b6370bf6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d9bad59-e1f2-4cd0-a52b-3f4b6370bf6c", + "Name": null + }, + "430f0555-2259-4f0a-90bd-1955db210de8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "430f0555-2259-4f0a-90bd-1955db210de8", + "Name": "W18x40", + "EdgeId": 1023, + "ExternalEdgeId": 1023 + }, + "95048724-622a-431b-8caa-4a4c25b6fd77": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95048724-622a-431b-8caa-4a4c25b6fd77", + "Name": null + }, + "5b17eeb9-8f36-448f-a70a-0ee3cec4e307": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5b17eeb9-8f36-448f-a70a-0ee3cec4e307", + "Name": "W18x40", + "EdgeId": 1028, + "ExternalEdgeId": 1028 + }, + "d65f691e-d173-44ed-a5bd-97dbc3742fbb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d65f691e-d173-44ed-a5bd-97dbc3742fbb", + "Name": null + }, + "1855a12a-4644-41c5-8643-b41a84160976": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1855a12a-4644-41c5-8643-b41a84160976", + "Name": "W18x40", + "EdgeId": 1029, + "ExternalEdgeId": 1029 + }, + "0b1dcd83-8da1-403c-a45d-efffdf6ab4c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b1dcd83-8da1-403c-a45d-efffdf6ab4c6", + "Name": null + }, + "ca0c0fa4-ce88-43c4-ba38-94ba716a28f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ca0c0fa4-ce88-43c4-ba38-94ba716a28f8", + "Name": "W18x40", + "EdgeId": 1034, + "ExternalEdgeId": 1034 + }, + "6a6f15af-2700-4a08-8ba2-0fea76108621": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a6f15af-2700-4a08-8ba2-0fea76108621", + "Name": null + }, + "6eed850c-cf55-44c8-a524-2e118f502216": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6eed850c-cf55-44c8-a524-2e118f502216", + "Name": "W18x40", + "EdgeId": 1035, + "ExternalEdgeId": 1035 + }, + "ebcd5df0-0959-49b8-a4de-0930b927c256": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ebcd5df0-0959-49b8-a4de-0930b927c256", + "Name": null + }, + "214e40dc-9bab-4536-812a-99914eefee2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "214e40dc-9bab-4536-812a-99914eefee2a", + "Name": "W18x40", + "EdgeId": 1042, + "ExternalEdgeId": 1042 + }, + "5a554915-ef21-4142-ad3e-2b19ed3bbbc7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a554915-ef21-4142-ad3e-2b19ed3bbbc7", + "Name": null + }, + "8b12b4c9-d97b-4aa8-94d3-4f9cb50ff424": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8b12b4c9-d97b-4aa8-94d3-4f9cb50ff424", + "Name": "W18x40", + "EdgeId": 1043, + "ExternalEdgeId": 1043 + }, + "a8855d0e-8c83-4093-8b3a-45d565bf1d6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a8855d0e-8c83-4093-8b3a-45d565bf1d6c", + "Name": null + }, + "1ecdee24-569f-4399-b36f-fdff365f0d55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1ecdee24-569f-4399-b36f-fdff365f0d55", + "Name": "W18x40", + "EdgeId": 1044, + "ExternalEdgeId": 1044 + }, + "80570f75-78b0-4df7-9905-00fc6a6b763f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80570f75-78b0-4df7-9905-00fc6a6b763f", + "Name": null + }, + "23394662-b582-4370-86df-dd403bd134ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "23394662-b582-4370-86df-dd403bd134ba", + "Name": "W18x40", + "EdgeId": 1050, + "ExternalEdgeId": 1050 + }, + "18762e61-5387-4317-89c4-9be721f4510e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "18762e61-5387-4317-89c4-9be721f4510e", + "Name": null + }, + "14f2860a-81de-4a1c-9ec9-8035154a191c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "14f2860a-81de-4a1c-9ec9-8035154a191c", + "Name": "W18x40", + "EdgeId": 1051, + "ExternalEdgeId": 1051 + }, + "d74448c6-43ce-4b44-9bea-675ed2995fdf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d74448c6-43ce-4b44-9bea-675ed2995fdf", + "Name": null + }, + "aa1ccf4e-9039-4e6b-a62b-cba3f34f923e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "aa1ccf4e-9039-4e6b-a62b-cba3f34f923e", + "Name": "W18x40", + "EdgeId": 1056, + "ExternalEdgeId": 1056 + }, + "87d89d5e-8f0f-4736-a1e8-046736c22475": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87d89d5e-8f0f-4736-a1e8-046736c22475", + "Name": null + }, + "1064435f-bc3f-4ab5-86ef-9c4e2ce0d8cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1064435f-bc3f-4ab5-86ef-9c4e2ce0d8cc", + "Name": "W18x40", + "EdgeId": 1057, + "ExternalEdgeId": 1057 + }, + "97533c8f-5966-47ba-a0be-c64dd35738b1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97533c8f-5966-47ba-a0be-c64dd35738b1", + "Name": null + }, + "e4b7c94a-f81d-4917-a6e7-19154823c805": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e4b7c94a-f81d-4917-a6e7-19154823c805", + "Name": "W18x40", + "EdgeId": 1062, + "ExternalEdgeId": 1062 + }, + "09c4971b-e5cb-4215-b128-45eda3433813": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09c4971b-e5cb-4215-b128-45eda3433813", + "Name": null + }, + "beb1ef4e-cb97-4d05-b750-cae86722bfe5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "beb1ef4e-cb97-4d05-b750-cae86722bfe5", + "Name": "W18x40", + "EdgeId": 1063, + "ExternalEdgeId": 1063 + }, + "92acd662-e306-4d5b-bdf0-30e4ab652210": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "92acd662-e306-4d5b-bdf0-30e4ab652210", + "Name": null + }, + "1ec03e95-eb8c-4585-a2c5-02c45cd66b50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1ec03e95-eb8c-4585-a2c5-02c45cd66b50", + "Name": "W18x40", + "EdgeId": 1068, + "ExternalEdgeId": 1068 + }, + "802825c3-ed25-45e0-a04e-0e4d827e0541": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "802825c3-ed25-45e0-a04e-0e4d827e0541", + "Name": null + }, + "024831f0-b74c-40b9-978a-699fe12c616e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "024831f0-b74c-40b9-978a-699fe12c616e", + "Name": "W18x40", + "EdgeId": 1069, + "ExternalEdgeId": 1069 + }, + "c5e4d3cf-ca69-4e87-b412-11a742db9a8e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5e4d3cf-ca69-4e87-b412-11a742db9a8e", + "Name": null + }, + "187b44aa-cfc6-4aba-97d5-ec7dec3ae4ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "187b44aa-cfc6-4aba-97d5-ec7dec3ae4ef", + "Name": "W18x40", + "EdgeId": 1076, + "ExternalEdgeId": 1076 + }, + "611cbf05-1da3-485d-b6cb-654dc0c54555": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "611cbf05-1da3-485d-b6cb-654dc0c54555", + "Name": null + }, + "3d248dc6-5a3c-44c8-b2f4-d7de43d857b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3d248dc6-5a3c-44c8-b2f4-d7de43d857b3", + "Name": "W18x40", + "EdgeId": 1077, + "ExternalEdgeId": 1077 + }, + "b46db0c6-c3c2-4213-8a2a-16ad7eaad69d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b46db0c6-c3c2-4213-8a2a-16ad7eaad69d", + "Name": null + }, + "f34b4850-ffd7-47eb-be95-9792c25c0733": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f34b4850-ffd7-47eb-be95-9792c25c0733", + "Name": "W18x40", + "EdgeId": 1078, + "ExternalEdgeId": 1078 + }, + "032ed244-4c60-402a-957b-1bd82fdec910": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "032ed244-4c60-402a-957b-1bd82fdec910", + "Name": null + }, + "5810d885-305f-42dd-8513-1d3c2a737daa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5810d885-305f-42dd-8513-1d3c2a737daa", + "Name": "W18x40", + "EdgeId": 1084, + "ExternalEdgeId": 1084 + }, + "c612bae5-4240-4b8c-9278-4ca6e904550f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c612bae5-4240-4b8c-9278-4ca6e904550f", + "Name": null + }, + "5118949c-7cc2-4973-a00f-a94da863bd41": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5118949c-7cc2-4973-a00f-a94da863bd41", + "Name": "W18x40", + "EdgeId": 1085, + "ExternalEdgeId": 1085 + }, + "aa787c70-926c-4233-b06c-6f04c3833999": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aa787c70-926c-4233-b06c-6f04c3833999", + "Name": null + }, + "9028e06e-6a51-4b62-ac9e-13c69457c5de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9028e06e-6a51-4b62-ac9e-13c69457c5de", + "Name": "W18x40", + "EdgeId": 1090, + "ExternalEdgeId": 1090 + }, + "98865673-61d3-4a80-9466-6513a3ca88fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "98865673-61d3-4a80-9466-6513a3ca88fa", + "Name": null + }, + "f3b26343-1ddf-4fe1-bc4b-5fe71233bc63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f3b26343-1ddf-4fe1-bc4b-5fe71233bc63", + "Name": "W18x40", + "EdgeId": 1091, + "ExternalEdgeId": 1091 + }, + "744d0008-e4fa-4613-82c8-54d440a2b431": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "744d0008-e4fa-4613-82c8-54d440a2b431", + "Name": null + }, + "afed523c-ea8b-49b2-ac48-197fbcdf05cb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "afed523c-ea8b-49b2-ac48-197fbcdf05cb", + "Name": "W18x40", + "EdgeId": 1096, + "ExternalEdgeId": 1096 + }, + "f2d4b68b-7ff1-474e-b84e-376809fd6204": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2d4b68b-7ff1-474e-b84e-376809fd6204", + "Name": null + }, + "b7d778c8-bf39-4e50-886d-d96f51c232c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b7d778c8-bf39-4e50-886d-d96f51c232c4", + "Name": "W18x40", + "EdgeId": 1097, + "ExternalEdgeId": 1097 + }, + "1c58ef99-e6ef-4d3d-9f75-7e8c3f76216b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c58ef99-e6ef-4d3d-9f75-7e8c3f76216b", + "Name": null + }, + "523695b9-4db3-45d0-aa2b-9726ea2c687e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "29a3bfb0-f79a-4f73-a31e-bc9aa76abe02", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "523695b9-4db3-45d0-aa2b-9726ea2c687e", + "Name": "W18x40", + "EdgeId": 1102, + "ExternalEdgeId": 1102 + }, + "0e100606-1bfc-4a69-8a50-e464b1715fb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e100606-1bfc-4a69-8a50-e464b1715fb4", + "Name": null + }, + "f6e6d5fb-9011-4fce-856a-5531d17517e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f6e6d5fb-9011-4fce-856a-5531d17517e5", + "Name": "W18x40", + "EdgeId": 1103, + "ExternalEdgeId": 1103 + }, + "109f3366-a42b-4108-9e0e-4d092146ad2d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "109f3366-a42b-4108-9e0e-4d092146ad2d", + "Name": null + }, + "06a695f9-33db-4275-9ed6-6ab24f1b7d5d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 23.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "06a695f9-33db-4275-9ed6-6ab24f1b7d5d", + "Name": "W18x40", + "EdgeId": 1110, + "ExternalEdgeId": 1110 + }, + "1a598a52-c112-448d-ae36-6060d5c3b8db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 23.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1a598a52-c112-448d-ae36-6060d5c3b8db", + "Name": null + }, + "ff8d58ae-1250-40ef-9efc-9d8d93fe210f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "bbfc5b0f-cc29-4045-91bf-821e7813de86", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ff8d58ae-1250-40ef-9efc-9d8d93fe210f", + "Name": "W18x40", + "EdgeId": 1111, + "ExternalEdgeId": 1111 + }, + "b0cbb75b-ef17-431d-a588-38fcdd915df7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0cbb75b-ef17-431d-a588-38fcdd915df7", + "Name": null + }, + "4b655ede-2c4f-4872-9484-c3fe68376324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 29.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4b655ede-2c4f-4872-9484-c3fe68376324", + "Name": "W18x40", + "EdgeId": 1112, + "ExternalEdgeId": 1112 + }, + "95e50dbf-f04b-4409-b717-700a2779b620": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 29.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 29.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "95e50dbf-f04b-4409-b717-700a2779b620", + "Name": null + }, + "6d67d031-8d8a-4597-9f85-bfc610289575": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 16.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6d67d031-8d8a-4597-9f85-bfc610289575", + "Name": "W18x40", + "EdgeId": 1118, + "ExternalEdgeId": 1118 + }, + "5f46b3b3-4cf0-4256-b453-27b01cab9f67": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f46b3b3-4cf0-4256-b453-27b01cab9f67", + "Name": null + }, + "68faa333-8a54-4377-baf5-cc022c013146": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 23.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "68faa333-8a54-4377-baf5-cc022c013146", + "Name": "W18x40", + "EdgeId": 1119, + "ExternalEdgeId": 1119 + }, + "53326853-5982-4ac1-bdc5-e5cef8c3a686": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 16.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53326853-5982-4ac1-bdc5-e5cef8c3a686", + "Name": null + }, + "ddd81600-a8f0-4a72-a38c-fdb9b6fc4fd5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 9.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ddd81600-a8f0-4a72-a38c-fdb9b6fc4fd5", + "Name": "W18x40", + "EdgeId": 1124, + "ExternalEdgeId": 1124 + }, + "68e28ab2-00b2-4b63-a569-13f4a46a86a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "68e28ab2-00b2-4b63-a569-13f4a46a86a3", + "Name": null + }, + "2a3074b5-e468-4f65-a93d-f7f9365d9cad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 16.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2a3074b5-e468-4f65-a93d-f7f9365d9cad", + "Name": "W18x40", + "EdgeId": 1125, + "ExternalEdgeId": 1125 + }, + "aad7fa2a-9081-4561-a963-6c7c20eb1fa4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 9.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aad7fa2a-9081-4561-a963-6c7c20eb1fa4", + "Name": null + }, + "151fe9cb-c75b-4dab-aef0-d615cd614234": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 2.0, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "151fe9cb-c75b-4dab-aef0-d615cd614234", + "Name": "W18x40", + "EdgeId": 1130, + "ExternalEdgeId": 1130 + }, + "57a22834-7313-48d6-b5ca-2c0d99d484fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "57a22834-7313-48d6-b5ca-2c0d99d484fa", + "Name": null + }, + "ce5a878c-d590-4c85-a750-48063db872fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "edad7470-dae0-4697-a2aa-8adc95f4440a", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 9.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ce5a878c-d590-4c85-a750-48063db872fe", + "Name": "W18x40", + "EdgeId": 1131, + "ExternalEdgeId": 1131 + }, + "90a9a41e-5559-4818-b679-12b0944a5b2e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 2.0, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "90a9a41e-5559-4818-b679-12b0944a5b2e", + "Name": null + }, + "c1d16bc0-9bbe-4518-8c13-7c7a16d175c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e3cd3000-5e61-43c0-a010-a6757408d2ac", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + 1.0, + 0.0, + 0.5, + -1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c1d16bc0-9bbe-4518-8c13-7c7a16d175c8", + "Name": "W18x40", + "EdgeId": 1136, + "ExternalEdgeId": 1136 + }, + "1c60aea2-e24f-4661-b48e-f393be79fbd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c60aea2-e24f-4661-b48e-f393be79fbd3", + "Name": null + }, + "757ae4ce-eab0-4f33-90ec-f6bc52e2cfce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "1ac84bd4-786a-4888-b74f-bcfe8abc7fb2", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "757ae4ce-eab0-4f33-90ec-f6bc52e2cfce", + "Name": "W18x40", + "EdgeId": 1137, + "ExternalEdgeId": 1137 + }, + "2faa0294-dc44-4d7f-8825-7bb4a04bcdeb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -59.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2faa0294-dc44-4d7f-8825-7bb4a04bcdeb", + "Name": null + }, + "ba999146-e65c-442e-91e9-eb65608079b8": { + "discriminator": "Elements.Geometry.Profiles.WideFlangeProfile", + "d": 0.34797999999999996, + "tw": 0.022098, + "bf": 0.3175, + "tf": 0.035559999999999994, + "Perimeter": { + "discriminator": "Elements.Geometry.Polygon", + "Vertices": [ + { + "X": -0.15875, + "Y": -0.1254, + "Z": 0.0 + }, + { + "X": -0.15875, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": -0.011049, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": -0.011049, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": -0.15875, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": -0.15875, + "Y": -0.47337999999999997, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.47337999999999997, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": 0.011049, + "Y": -0.43782, + "Z": 0.0 + }, + { + "X": 0.011049, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.16096, + "Z": 0.0 + }, + { + "X": 0.15875, + "Y": -0.1254, + "Z": 0.0 + } + ] + }, + "Voids": [], + "Id": "ba999146-e65c-442e-91e9-eb65608079b8", + "Name": "W12x152" + }, + "0a4b6575-3b0a-47a0-834e-6e427af090ca": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.7324000000000002, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Name": "W12x152" + }, + "449114c8-aba4-45a1-ac2c-1deab031ba63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "449114c8-aba4-45a1-ac2c-1deab031ba63", + "Name": "W12x152", + "CellId": 1, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "84347875-374d-48bb-9ebc-b23333323928": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "84347875-374d-48bb-9ebc-b23333323928", + "Name": null + }, + "c30b6320-d3a9-4244-9b8e-ff895659beb0": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7324, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Name": "W12x152" + }, + "0901f2b3-e657-4fcd-bcea-51ba11feff7e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0901f2b3-e657-4fcd-bcea-51ba11feff7e", + "Name": "W12x152", + "CellId": 1, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "434e5170-a2e4-489d-af09-6e2f56c8ec34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 0.0 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "434e5170-a2e4-489d-af09-6e2f56c8ec34", + "Name": null + }, + "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Name": "W12x152" + }, + "9bed612f-e237-4382-a50e-8ca5bbcfdd23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9bed612f-e237-4382-a50e-8ca5bbcfdd23", + "Name": "W12x152", + "CellId": 2, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6479ba6c-d57a-4b59-a288-f25cb6652175": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6479ba6c-d57a-4b59-a288-f25cb6652175", + "Name": null + }, + "3d231d2f-006e-4afd-bdb7-bc4274237b15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3d231d2f-006e-4afd-bdb7-bc4274237b15", + "Name": "W12x152", + "CellId": 2, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a754a688-2691-4a44-90a2-e6b6be1f78ce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a754a688-2691-4a44-90a2-e6b6be1f78ce", + "Name": null + }, + "a9f4d907-24c1-4efc-9f62-773ee1029d41": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a9f4d907-24c1-4efc-9f62-773ee1029d41", + "Name": "W12x152", + "CellId": 2, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b4aa8881-1a7f-462e-b80e-b3e05a626a85": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4aa8881-1a7f-462e-b80e-b3e05a626a85", + "Name": null + }, + "671f5123-41bb-4c51-acf5-878316d496f4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.5, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "671f5123-41bb-4c51-acf5-878316d496f4", + "Name": "W12x152" + }, + "08c46ad5-a131-4196-8d2e-d01760fe677b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "08c46ad5-a131-4196-8d2e-d01760fe677b", + "Name": "W12x152", + "CellId": 3, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "58fa04fb-9784-434b-a2ef-a1ecec0dd2ef": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "58fa04fb-9784-434b-a2ef-a1ecec0dd2ef", + "Name": null + }, + "4e04d4c7-03f7-42ad-88c0-5ef8088bf0e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4e04d4c7-03f7-42ad-88c0-5ef8088bf0e1", + "Name": "W12x152", + "CellId": 3, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e33aff5e-7199-4d7d-b105-bf291daefb56": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e33aff5e-7199-4d7d-b105-bf291daefb56", + "Name": null + }, + "b835b073-27e7-4087-a023-3557ecf67ad3": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 5.0, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Name": "W12x152" + }, + "b363be0f-c937-438f-9a6e-9150f75e36a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "b363be0f-c937-438f-9a6e-9150f75e36a8", + "Name": "W12x152", + "CellId": 5, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ce741b06-e484-4ed0-92c0-7b9a0cf95480": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ce741b06-e484-4ed0-92c0-7b9a0cf95480", + "Name": null + }, + "907e56e7-f3df-4850-861c-b9c75d67e770": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "907e56e7-f3df-4850-861c-b9c75d67e770", + "Name": "W12x152", + "CellId": 5, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15b213ec-5c5b-41c3-aefe-d1c9d41c271a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15b213ec-5c5b-41c3-aefe-d1c9d41c271a", + "Name": null + }, + "d463367e-606b-478f-9829-18208e0b592e": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7235999999999994, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.7235999999999994, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d463367e-606b-478f-9829-18208e0b592e", + "Name": "W12x152" + }, + "81a8a73d-b5c5-4991-a557-2d6945472e50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "81a8a73d-b5c5-4991-a557-2d6945472e50", + "Name": "W12x152", + "CellId": 5, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a063db72-4c35-4e63-bb1d-2166750a058e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a063db72-4c35-4e63-bb1d-2166750a058e", + "Name": null + }, + "379c1421-dcff-429c-bbb2-600d8b5a79a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "379c1421-dcff-429c-bbb2-600d8b5a79a9", + "Name": "W12x152", + "CellId": 6, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "65bbc369-7924-40ff-afc9-a86a94605429": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "65bbc369-7924-40ff-afc9-a86a94605429", + "Name": null + }, + "6f8b4a01-2bb1-4f8a-a561-d55a9450046b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6f8b4a01-2bb1-4f8a-a561-d55a9450046b", + "Name": "W12x152", + "CellId": 6, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "52a037bc-05aa-4a65-940f-341b13c993bc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "52a037bc-05aa-4a65-940f-341b13c993bc", + "Name": null + }, + "d05f8c24-bddf-412e-927e-fe6aebe03ecf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d05f8c24-bddf-412e-927e-fe6aebe03ecf", + "Name": "W12x152", + "CellId": 6, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a01e0837-5d91-4ad8-95d7-deae343fc12b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a01e0837-5d91-4ad8-95d7-deae343fc12b", + "Name": null + }, + "486bb3f6-862d-4f65-be5b-b0c46c466f22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "486bb3f6-862d-4f65-be5b-b0c46c466f22", + "Name": "W12x152", + "CellId": 7, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5f3cf050-e289-4113-94f6-ccae99edfe6f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f3cf050-e289-4113-94f6-ccae99edfe6f", + "Name": null + }, + "a0983a2e-fbc2-4c0d-a13d-719e5daf6304": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a0983a2e-fbc2-4c0d-a13d-719e5daf6304", + "Name": "W12x152", + "CellId": 7, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "30784c32-148f-4d5c-a040-a6461d8eb8cc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30784c32-148f-4d5c-a040-a6461d8eb8cc", + "Name": null + }, + "e9998d1f-f37e-4ec1-9a37-d6129df9567b": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.1768466666666662, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.1768466666666662, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Name": "W12x152" + }, + "c81c4880-8791-458b-919f-e8e3bfec18f9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c81c4880-8791-458b-919f-e8e3bfec18f9", + "Name": "W12x152", + "CellId": 8, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "634805b1-e125-4c91-80f7-420458d80c1a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 0.0 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "634805b1-e125-4c91-80f7-420458d80c1a", + "Name": null + }, + "48a4ab2f-6f28-414c-be2a-e0687d5249cc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.287953333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.287953333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Name": "W12x152" + }, + "a94f957d-f83c-4f67-99a4-39ec8b978fdb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a94f957d-f83c-4f67-99a4-39ec8b978fdb", + "Name": "W12x152", + "CellId": 8, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b52a05c9-634e-4088-b781-2b0991333f4b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b52a05c9-634e-4088-b781-2b0991333f4b", + "Name": null + }, + "96407be9-dfa2-4201-aedb-5e9af21811b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "96407be9-dfa2-4201-aedb-5e9af21811b8", + "Name": "W12x152", + "CellId": 9, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fde535c1-34ef-49eb-a1b3-0f629e2a5b86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fde535c1-34ef-49eb-a1b3-0f629e2a5b86", + "Name": null + }, + "9afa8a8d-5341-4990-ae7a-483622d2e033": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9afa8a8d-5341-4990-ae7a-483622d2e033", + "Name": "W12x152", + "CellId": 9, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "31d042c1-e5f3-4109-b9d4-aa3842be5912": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "31d042c1-e5f3-4109-b9d4-aa3842be5912", + "Name": null + }, + "80a53a2a-673b-475d-a044-c29ff8124ce7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80a53a2a-673b-475d-a044-c29ff8124ce7", + "Name": "W12x152", + "CellId": 9, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "53d9fcb7-193b-43ec-bf15-8016f74cc06d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53d9fcb7-193b-43ec-bf15-8016f74cc06d", + "Name": null + }, + "1f0d4419-51cc-41b4-9b9f-c8acb9e9b125": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1f0d4419-51cc-41b4-9b9f-c8acb9e9b125", + "Name": "W12x152", + "CellId": 10, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c9c94ef-9560-4b0b-96ca-5533c3e417e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c9c94ef-9560-4b0b-96ca-5533c3e417e6", + "Name": null + }, + "223e8f48-53b0-420d-9566-e42927f37af0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "223e8f48-53b0-420d-9566-e42927f37af0", + "Name": "W12x152", + "CellId": 10, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "294fd0b7-9dcf-4976-8694-c2d11915cf50": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "294fd0b7-9dcf-4976-8694-c2d11915cf50", + "Name": null + }, + "e7c8d611-9bd0-449e-895f-41b4f189df9a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e7c8d611-9bd0-449e-895f-41b4f189df9a", + "Name": "W12x152", + "CellId": 10, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bf38e54e-58a5-4c93-8db0-d04ff1d2771f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bf38e54e-58a5-4c93-8db0-d04ff1d2771f", + "Name": null + }, + "072e735e-97cf-4835-abc3-37cfda558744": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "072e735e-97cf-4835-abc3-37cfda558744", + "Name": "W12x152", + "CellId": 11, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7613040a-6d75-42e2-8939-835b7786f804": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7613040a-6d75-42e2-8939-835b7786f804", + "Name": null + }, + "6452829f-e877-40a4-90b7-ca0cfd622257": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6452829f-e877-40a4-90b7-ca0cfd622257", + "Name": "W12x152", + "CellId": 11, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9dc97b70-3fc3-48f2-b69b-9c3b04287c3a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9dc97b70-3fc3-48f2-b69b-9c3b04287c3a", + "Name": null + }, + "55db97f8-49be-48d7-ae39-e4f3046bf020": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "55db97f8-49be-48d7-ae39-e4f3046bf020", + "Name": "W12x152", + "CellId": 12, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9fe0863f-78d5-4d02-bf09-54e101a052d4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fe0863f-78d5-4d02-bf09-54e101a052d4", + "Name": null + }, + "74b73145-d10e-494c-abfa-a1f4b4698f76": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "74b73145-d10e-494c-abfa-a1f4b4698f76", + "Name": "W12x152", + "CellId": 12, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "11170d2d-96d3-4bd4-8606-691d3fcb9ca9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11170d2d-96d3-4bd4-8606-691d3fcb9ca9", + "Name": null + }, + "a14957ee-e204-468a-8e80-821f5ea2eabc": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.5246449507100976, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.5246449507100976, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Name": "W12x152" + }, + "eb1ab162-e201-4584-9488-fb3f8f7f8e8a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb1ab162-e201-4584-9488-fb3f8f7f8e8a", + "Name": "W12x152", + "CellId": 12, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "35a21f74-63e3-4b51-935f-da6596ad2349": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "35a21f74-63e3-4b51-935f-da6596ad2349", + "Name": null + }, + "32a38780-bc18-494e-a490-85bf4fd5b42e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "32a38780-bc18-494e-a490-85bf4fd5b42e", + "Name": "W12x152", + "CellId": 13, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b0be2b8a-66fb-447a-b94e-edbe55badf43": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0be2b8a-66fb-447a-b94e-edbe55badf43", + "Name": null + }, + "0a190965-7886-4017-a503-6254f1ce54f8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0a190965-7886-4017-a503-6254f1ce54f8", + "Name": "W12x152", + "CellId": 13, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4646d504-8b54-4ce8-bb44-74e79029d746": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4646d504-8b54-4ce8-bb44-74e79029d746", + "Name": null + }, + "45807bf8-4758-46d0-8066-cbf9e1f2e20c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "45807bf8-4758-46d0-8066-cbf9e1f2e20c", + "Name": "W12x152", + "CellId": 13, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5f742c34-556a-4a25-a69e-bba30ef7bbcf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f742c34-556a-4a25-a69e-bba30ef7bbcf", + "Name": null + }, + "9d91550b-1cee-478a-9fe2-e68912aa699b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9d91550b-1cee-478a-9fe2-e68912aa699b", + "Name": "W12x152", + "CellId": 14, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc563825-c1d7-404f-85a9-cc4a1eb00218": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc563825-c1d7-404f-85a9-cc4a1eb00218", + "Name": null + }, + "53140030-acfc-4890-b228-8735aa9202ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "53140030-acfc-4890-b228-8735aa9202ec", + "Name": "W12x152", + "CellId": 14, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0bcd1f7f-852c-4738-8292-f30d29c6bf8e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0bcd1f7f-852c-4738-8292-f30d29c6bf8e", + "Name": null + }, + "537e2b30-223f-4bdb-82df-ad3e63cff89a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "537e2b30-223f-4bdb-82df-ad3e63cff89a", + "Name": "W12x152", + "CellId": 14, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fe87032c-8bc7-43b4-bdef-32ae4125b1fd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe87032c-8bc7-43b4-bdef-32ae4125b1fd", + "Name": null + }, + "6bb90384-e500-40b3-8cda-6dcf66b1e94e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6bb90384-e500-40b3-8cda-6dcf66b1e94e", + "Name": "W12x152", + "CellId": 15, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4c749511-44d6-4af3-9ab5-0d41047a43e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4c749511-44d6-4af3-9ab5-0d41047a43e6", + "Name": null + }, + "8ce4e6fa-3570-4962-a142-ab88971bfefd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8ce4e6fa-3570-4962-a142-ab88971bfefd", + "Name": "W12x152", + "CellId": 15, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8d727634-8a31-48dd-bbd9-2e3b15399bf9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8d727634-8a31-48dd-bbd9-2e3b15399bf9", + "Name": null + }, + "00428e4f-d368-4fa9-9b91-6b35a98db880": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.021913333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 1.021913333333334, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Name": "W12x152" + }, + "ef687703-9143-444e-b4f2-6fb7a2b587c6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ef687703-9143-444e-b4f2-6fb7a2b587c6", + "Name": "W12x152", + "CellId": 16, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "88421fcd-5d63-45ff-aa16-74c52bd313c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 0.0 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "88421fcd-5d63-45ff-aa16-74c52bd313c5", + "Name": null + }, + "2a51b0ec-7a36-4993-b509-32bf4c52b9b4": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.043826666666668, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.043826666666668, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Name": "W12x152" + }, + "41cbe9f7-e93a-4d2b-b79a-1be05425266a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "41cbe9f7-e93a-4d2b-b79a-1be05425266a", + "Name": "W12x152", + "CellId": 16, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "719b7363-b074-4045-9695-22f2ebe87ad8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 0.0 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "719b7363-b074-4045-9695-22f2ebe87ad8", + "Name": null + }, + "096908ac-1df9-4d07-9ac7-a8579865819d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "096908ac-1df9-4d07-9ac7-a8579865819d", + "Name": "W12x152", + "CellId": 17, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "713e84a5-f413-4098-81b8-b6e91f320a34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "713e84a5-f413-4098-81b8-b6e91f320a34", + "Name": null + }, + "7af7feb5-9f26-4d62-87f2-813f0b548bc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7af7feb5-9f26-4d62-87f2-813f0b548bc0", + "Name": "W12x152", + "CellId": 17, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0b367183-5431-4c29-a58c-561b71950836": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b367183-5431-4c29-a58c-561b71950836", + "Name": null + }, + "e382b529-e95d-44ca-acc6-4695c9e303ca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e382b529-e95d-44ca-acc6-4695c9e303ca", + "Name": "W12x152", + "CellId": 17, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "11db4bde-461c-41ee-8193-8281feefa892": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11db4bde-461c-41ee-8193-8281feefa892", + "Name": null + }, + "6ccd0013-a834-4d86-8b2d-84f9ecc9064c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6ccd0013-a834-4d86-8b2d-84f9ecc9064c", + "Name": "W12x152", + "CellId": 18, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "40f48473-8ee9-4897-a3df-83de50094edd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "40f48473-8ee9-4897-a3df-83de50094edd", + "Name": null + }, + "a50a119e-9b36-49b3-9f5f-b63b2b92c8de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a50a119e-9b36-49b3-9f5f-b63b2b92c8de", + "Name": "W12x152", + "CellId": 18, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fbf05b8e-60ae-48f7-b3de-3cf1f5496dc6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbf05b8e-60ae-48f7-b3de-3cf1f5496dc6", + "Name": null + }, + "f995d5db-874c-45e0-9699-c8711fa07656": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f995d5db-874c-45e0-9699-c8711fa07656", + "Name": "W12x152", + "CellId": 18, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "13249f6c-95d8-499a-b1ac-3274f9717251": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "13249f6c-95d8-499a-b1ac-3274f9717251", + "Name": null + }, + "2ec7b373-71f5-46da-b975-3d777eeb50ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "2ec7b373-71f5-46da-b975-3d777eeb50ad", + "Name": "W12x152", + "CellId": 19, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c554a074-76b3-4f22-bed8-0ebd8a49da02": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c554a074-76b3-4f22-bed8-0ebd8a49da02", + "Name": null + }, + "26d090e7-433b-41b5-b58b-602168f54dda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "26d090e7-433b-41b5-b58b-602168f54dda", + "Name": "W12x152", + "CellId": 19, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0a922690-2b55-432a-a96c-a79d1c47e25a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a922690-2b55-432a-a96c-a79d1c47e25a", + "Name": null + }, + "70c341b7-d624-420b-bd31-5a7193407a1b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "70c341b7-d624-420b-bd31-5a7193407a1b", + "Name": "W12x152", + "CellId": 19, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0d79f155-a182-4615-b48e-32ee7f6f4e0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0d79f155-a182-4615-b48e-32ee7f6f4e0b", + "Name": null + }, + "7e27aeb9-8dcb-4c6d-80ce-236cf011cb84": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e27aeb9-8dcb-4c6d-80ce-236cf011cb84", + "Name": "W12x152", + "CellId": 20, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "796e4e6e-338b-4c02-a61d-4ed24e10b992": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "796e4e6e-338b-4c02-a61d-4ed24e10b992", + "Name": null + }, + "1adf6423-7aa3-422a-a23f-76a0a8db3419": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1adf6423-7aa3-422a-a23f-76a0a8db3419", + "Name": "W12x152", + "CellId": 20, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ca0c878a-7b20-4085-99c4-b81ce71979f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ca0c878a-7b20-4085-99c4-b81ce71979f9", + "Name": null + }, + "73eddbbd-42c3-458b-9597-f9bd49147a87": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "73eddbbd-42c3-458b-9597-f9bd49147a87", + "Name": "W12x152", + "CellId": 21, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1430d63a-a64c-4fa3-a94d-9419c60e68f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1430d63a-a64c-4fa3-a94d-9419c60e68f5", + "Name": null + }, + "c86c7794-702f-43dc-82a1-ccf5f1b5deea": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.799314197256791, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 4.799314197256791, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Name": "W12x152" + }, + "ae823504-a480-4343-a424-3f09806bc38f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ae823504-a480-4343-a424-3f09806bc38f", + "Name": "W12x152", + "CellId": 21, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "185a4fc8-23f1-4445-bcec-66e5cfaddde2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "185a4fc8-23f1-4445-bcec-66e5cfaddde2", + "Name": null + }, + "d27c8274-35d1-48e6-a623-33a7ddfb778f": { + "discriminator": "Elements.Beam", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.3996570986283956, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Rotation": 0.0, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "d0679ff9-51db-44d0-9743-3ae8c814face", + "Representation": { + "SolidOperations": [ + { + "discriminator": "Elements.Geometry.Solids.Sweep", + "Profile": "ba999146-e65c-442e-91e9-eb65608079b8", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "End": { + "X": 2.3996570986283956, + "Y": 0.0, + "Z": 0.0 + } + }, + "StartSetback": 0.0, + "EndSetback": 0.0, + "ProfileRotation": 0.0, + "LocalTransform": null, + "IsVoid": false + } + ] + }, + "IsElementDefinition": true, + "Id": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Name": "W12x152" + }, + "150efd5e-2748-42a9-b38a-ff9706c24107": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "150efd5e-2748-42a9-b38a-ff9706c24107", + "Name": "W12x152", + "CellId": 21, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "66270b5d-8823-4729-9e96-635806fbf3c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "66270b5d-8823-4729-9e96-635806fbf3c6", + "Name": null + }, + "8e927082-1213-4ebd-8af8-ea2ede83306b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8e927082-1213-4ebd-8af8-ea2ede83306b", + "Name": "W12x152", + "CellId": 22, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f34a7472-5e0c-4307-994c-7e71c017cd3c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f34a7472-5e0c-4307-994c-7e71c017cd3c", + "Name": null + }, + "d0774240-8e91-4077-afc1-3e240fbaecc4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d0774240-8e91-4077-afc1-3e240fbaecc4", + "Name": "W12x152", + "CellId": 22, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3515422d-9e82-4ee1-a1e1-4afdad29545b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3515422d-9e82-4ee1-a1e1-4afdad29545b", + "Name": null + }, + "9f09a16c-5df6-4c7d-99ee-99d675eb7076": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9f09a16c-5df6-4c7d-99ee-99d675eb7076", + "Name": "W12x152", + "CellId": 22, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "94b2c49f-4aef-4cc6-af8d-418e00dfeab4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "94b2c49f-4aef-4cc6-af8d-418e00dfeab4", + "Name": null + }, + "d978b146-4c91-41ff-80df-b9e8fb255920": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d978b146-4c91-41ff-80df-b9e8fb255920", + "Name": "W12x152", + "CellId": 23, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "da48e726-ed32-4fa7-bb65-6f611857d70a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da48e726-ed32-4fa7-bb65-6f611857d70a", + "Name": null + }, + "11eb21f4-2a54-474c-b3e6-011a117ec662": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "11eb21f4-2a54-474c-b3e6-011a117ec662", + "Name": "W12x152", + "CellId": 23, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cff448d8-9482-47a7-b3c4-77b5cd3ec65a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cff448d8-9482-47a7-b3c4-77b5cd3ec65a", + "Name": null + }, + "32e12537-1518-4d48-992b-517ca6b4f0bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "32e12537-1518-4d48-992b-517ca6b4f0bb", + "Name": "W12x152", + "CellId": 23, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5c897942-8264-49f4-acb2-f0a6a22027ca": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c897942-8264-49f4-acb2-f0a6a22027ca", + "Name": null + }, + "9530151f-c2cb-47f9-9340-8d86fc0ef29c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9530151f-c2cb-47f9-9340-8d86fc0ef29c", + "Name": "W12x152", + "CellId": 24, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5cdfd673-d2f2-44bc-a5bf-ff3e46950256": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5cdfd673-d2f2-44bc-a5bf-ff3e46950256", + "Name": null + }, + "77c43644-dc3c-4c46-b2b4-0a4dcc64ac4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "77c43644-dc3c-4c46-b2b4-0a4dcc64ac4f", + "Name": "W12x152", + "CellId": 24, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "de83349c-f30c-4f37-8d56-ff23d8dcef2f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "de83349c-f30c-4f37-8d56-ff23d8dcef2f", + "Name": null + }, + "a4a12eba-f2ae-40d9-85d4-c66721437e9f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a4a12eba-f2ae-40d9-85d4-c66721437e9f", + "Name": "W12x152", + "CellId": 24, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "36c45f6f-10af-4764-a3c9-fb840a7737e6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "36c45f6f-10af-4764-a3c9-fb840a7737e6", + "Name": null + }, + "50576bdb-41bc-43f8-964c-af9495e3b331": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "50576bdb-41bc-43f8-964c-af9495e3b331", + "Name": "W12x152", + "CellId": 25, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "507f0f4d-5d6d-485b-9a18-ff81fe18ccc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "507f0f4d-5d6d-485b-9a18-ff81fe18ccc5", + "Name": null + }, + "7b6fd675-912b-4dde-a328-bae204f0ad7a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7b6fd675-912b-4dde-a328-bae204f0ad7a", + "Name": "W12x152", + "CellId": 25, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c038f132-fd60-4f08-bcf5-655d19117733": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c038f132-fd60-4f08-bcf5-655d19117733", + "Name": null + }, + "45494bc0-d354-40a6-9d9d-7933c9e00331": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "45494bc0-d354-40a6-9d9d-7933c9e00331", + "Name": "W12x152", + "CellId": 26, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a7b96791-9e77-4642-98a1-75c87267de1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a7b96791-9e77-4642-98a1-75c87267de1b", + "Name": null + }, + "a208744d-1c3a-4cd2-bb8f-14082699838f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a208744d-1c3a-4cd2-bb8f-14082699838f", + "Name": "W12x152", + "CellId": 26, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dda71185-3ffc-4b4b-b79e-23f4aaa9d3ca": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dda71185-3ffc-4b4b-b79e-23f4aaa9d3ca", + "Name": null + }, + "7e687872-ded4-48cd-8245-51f74404515c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7e687872-ded4-48cd-8245-51f74404515c", + "Name": "W12x152", + "CellId": 26, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4e8c14c7-4008-4325-9ee2-ed9dac51efee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4e8c14c7-4008-4325-9ee2-ed9dac51efee", + "Name": null + }, + "e4847f09-4b91-4e61-9379-9ee45e62c4e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e4847f09-4b91-4e61-9379-9ee45e62c4e0", + "Name": "W12x152", + "CellId": 27, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a209e7b8-c48d-4454-bc15-6a2401b89116": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a209e7b8-c48d-4454-bc15-6a2401b89116", + "Name": null + }, + "dae3bab9-0df0-473e-8d50-3d82a8d27a46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "dae3bab9-0df0-473e-8d50-3d82a8d27a46", + "Name": "W12x152", + "CellId": 27, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1dbee02d-13f2-4056-83eb-966a267a952f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1dbee02d-13f2-4056-83eb-966a267a952f", + "Name": null + }, + "ec8a5c7f-9519-4aca-92e7-b6e58d02338d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec8a5c7f-9519-4aca-92e7-b6e58d02338d", + "Name": "W12x152", + "CellId": 27, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b783f26a-a206-45ed-be60-8a6647df0b2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b783f26a-a206-45ed-be60-8a6647df0b2b", + "Name": null + }, + "09d57c6a-425a-43fb-8316-a0ec9de7ba5c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "09d57c6a-425a-43fb-8316-a0ec9de7ba5c", + "Name": "W12x152", + "CellId": 28, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dae7d621-f7ab-4af7-ae9d-19cee40f808e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dae7d621-f7ab-4af7-ae9d-19cee40f808e", + "Name": null + }, + "bc9b0b17-5573-4b3f-a175-2657ed80643a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "bc9b0b17-5573-4b3f-a175-2657ed80643a", + "Name": "W12x152", + "CellId": 28, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d6afdf8a-baa6-4438-8178-23cba308f0a0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d6afdf8a-baa6-4438-8178-23cba308f0a0", + "Name": null + }, + "fcc52638-f388-4d47-bfd0-745b142e0487": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fcc52638-f388-4d47-bfd0-745b142e0487", + "Name": "W12x152", + "CellId": 28, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c60a4a95-abec-478b-a76d-913fc8f0d88f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c60a4a95-abec-478b-a76d-913fc8f0d88f", + "Name": null + }, + "f3ee0cc1-3222-4845-9635-10e63227f319": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f3ee0cc1-3222-4845-9635-10e63227f319", + "Name": "W12x152", + "CellId": 29, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bcef46d8-677a-498f-a089-ea26f710c338": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bcef46d8-677a-498f-a089-ea26f710c338", + "Name": null + }, + "13c74fca-2e25-4b63-b3ad-e821b30b5df8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "13c74fca-2e25-4b63-b3ad-e821b30b5df8", + "Name": "W12x152", + "CellId": 29, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1cf3cc1-be2b-4791-9cf7-3a205ea6cc62": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1cf3cc1-be2b-4791-9cf7-3a205ea6cc62", + "Name": null + }, + "7c3ce826-496f-4c9d-98cb-d33004a59413": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7c3ce826-496f-4c9d-98cb-d33004a59413", + "Name": "W12x152", + "CellId": 29, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "91f7b08a-4c26-4576-aedf-eb76b03f1434": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91f7b08a-4c26-4576-aedf-eb76b03f1434", + "Name": null + }, + "47ed683f-61a5-48f1-9238-7232ab540b4d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "47ed683f-61a5-48f1-9238-7232ab540b4d", + "Name": "W12x152", + "CellId": 30, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ac5b2d66-73b0-441c-b75f-92a4024d5c2e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ac5b2d66-73b0-441c-b75f-92a4024d5c2e", + "Name": null + }, + "75d651b3-962f-4419-ba4b-3ee0ca67d410": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "75d651b3-962f-4419-ba4b-3ee0ca67d410", + "Name": "W12x152", + "CellId": 30, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "6ffa8756-8cc9-4c6f-b853-33672bf04b9f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6ffa8756-8cc9-4c6f-b853-33672bf04b9f", + "Name": null + }, + "51af5325-e2b1-492d-b6f5-40eab780def2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "51af5325-e2b1-492d-b6f5-40eab780def2", + "Name": "W12x152", + "CellId": 31, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bef307c2-51db-4bca-bebb-75ea102175ae": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bef307c2-51db-4bca-bebb-75ea102175ae", + "Name": null + }, + "a2d43a20-26aa-43e7-ad44-6603b5475594": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a2d43a20-26aa-43e7-ad44-6603b5475594", + "Name": "W12x152", + "CellId": 31, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c00b4dda-8a7b-4046-b628-8a870e3cc223": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c00b4dda-8a7b-4046-b628-8a870e3cc223", + "Name": null + }, + "4bb5c6c3-bba0-4e94-a5cc-da6a39066226": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4bb5c6c3-bba0-4e94-a5cc-da6a39066226", + "Name": "W12x152", + "CellId": 31, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e71c5e31-532e-425f-8647-fd38007b8fbb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e71c5e31-532e-425f-8647-fd38007b8fbb", + "Name": null + }, + "28f03623-691d-49ed-b8c2-43c1dfcbdac4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28f03623-691d-49ed-b8c2-43c1dfcbdac4", + "Name": "W12x152", + "CellId": 32, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cfc5377f-9b99-4141-86ee-d6d5a8c77d50": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfc5377f-9b99-4141-86ee-d6d5a8c77d50", + "Name": null + }, + "c9231c44-34e0-41f1-bf2c-3eeec2e93c0c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c9231c44-34e0-41f1-bf2c-3eeec2e93c0c", + "Name": "W12x152", + "CellId": 32, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2254ec5c-dd41-4dcc-aaaf-8bfbc0e6f0fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2254ec5c-dd41-4dcc-aaaf-8bfbc0e6f0fc", + "Name": null + }, + "4722a9e0-781a-4ebb-b58a-19ef0fcb05e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4722a9e0-781a-4ebb-b58a-19ef0fcb05e8", + "Name": "W12x152", + "CellId": 32, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "38e0ceb2-e476-49c6-bf4c-2929c5207a39": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38e0ceb2-e476-49c6-bf4c-2929c5207a39", + "Name": null + }, + "521d5f5a-dc9d-4043-9e48-95cae654028c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "521d5f5a-dc9d-4043-9e48-95cae654028c", + "Name": "W12x152", + "CellId": 33, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d4d5f3e5-efe9-46fb-ab40-d41e667d7304": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d4d5f3e5-efe9-46fb-ab40-d41e667d7304", + "Name": null + }, + "8b9b12f9-cead-41a7-b3c8-90d2255ba341": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8b9b12f9-cead-41a7-b3c8-90d2255ba341", + "Name": "W12x152", + "CellId": 33, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2b91a5b9-6445-4500-9683-83bb0229bb29": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b91a5b9-6445-4500-9683-83bb0229bb29", + "Name": null + }, + "1f132686-6a0e-4aa5-a6f6-45e9ec98b930": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1f132686-6a0e-4aa5-a6f6-45e9ec98b930", + "Name": "W12x152", + "CellId": 33, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e21b5238-969f-439e-ac28-be8ed3b6e49b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e21b5238-969f-439e-ac28-be8ed3b6e49b", + "Name": null + }, + "04b9948e-e3a0-45eb-85ca-56a999587e53": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "04b9948e-e3a0-45eb-85ca-56a999587e53", + "Name": "W12x152", + "CellId": 34, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "91898d1b-18e3-4992-a53d-7e3f4ac1fa70": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91898d1b-18e3-4992-a53d-7e3f4ac1fa70", + "Name": null + }, + "8ab06ea6-6b32-44d6-a59c-9209015c4cb3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8ab06ea6-6b32-44d6-a59c-9209015c4cb3", + "Name": "W12x152", + "CellId": 34, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "63de46ec-9197-4579-b669-1da517c2386a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "63de46ec-9197-4579-b669-1da517c2386a", + "Name": null + }, + "c0397584-a924-4178-bf4a-0c502247ceda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c0397584-a924-4178-bf4a-0c502247ceda", + "Name": "W12x152", + "CellId": 34, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1d2ff49-e219-4efb-affc-0570b81243c7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1d2ff49-e219-4efb-affc-0570b81243c7", + "Name": null + }, + "d7d293f7-27f8-4f57-9d43-e2729fca35b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d7d293f7-27f8-4f57-9d43-e2729fca35b9", + "Name": "W12x152", + "CellId": 35, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "009a3c04-7e3a-48df-8427-f2131f4e144a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "009a3c04-7e3a-48df-8427-f2131f4e144a", + "Name": null + }, + "3b58dd3e-881e-4c7e-ab80-924948ae8c5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3b58dd3e-881e-4c7e-ab80-924948ae8c5a", + "Name": "W12x152", + "CellId": 35, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9983adec-488d-41d1-911a-fca8b52cd676": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9983adec-488d-41d1-911a-fca8b52cd676", + "Name": null + }, + "3978ae7b-3902-4c43-8242-64c8b3f264d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3978ae7b-3902-4c43-8242-64c8b3f264d9", + "Name": "W12x152", + "CellId": 36, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "266377a6-7a7e-435d-b2ce-4975ac80d6bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "266377a6-7a7e-435d-b2ce-4975ac80d6bf", + "Name": null + }, + "eb0f333e-04ed-4fdc-beef-254f0220d5b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "eb0f333e-04ed-4fdc-beef-254f0220d5b8", + "Name": "W12x152", + "CellId": 36, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e0bc6873-4b72-447d-b94a-6843dcaae93c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0bc6873-4b72-447d-b94a-6843dcaae93c", + "Name": null + }, + "f7beb439-c888-4b32-bd40-ffd4d3de7619": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f7beb439-c888-4b32-bd40-ffd4d3de7619", + "Name": "W12x152", + "CellId": 36, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "209f118b-c488-4497-89be-119d3045cd2f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "209f118b-c488-4497-89be-119d3045cd2f", + "Name": null + }, + "d0abd2c8-0137-4538-bce9-a3dc40cc61ec": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d0abd2c8-0137-4538-bce9-a3dc40cc61ec", + "Name": "W12x152", + "CellId": 37, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d02220a4-0bc3-4822-9bab-36ddeaf63fdc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d02220a4-0bc3-4822-9bab-36ddeaf63fdc", + "Name": null + }, + "11b1b5d6-6d4d-4044-8b42-b4a172675f42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "11b1b5d6-6d4d-4044-8b42-b4a172675f42", + "Name": "W12x152", + "CellId": 37, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dc8b3c26-dcaa-4bf3-824f-377fe4e2be72": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc8b3c26-dcaa-4bf3-824f-377fe4e2be72", + "Name": null + }, + "5bdd093c-be6f-4798-8e7e-50509a1d1027": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5bdd093c-be6f-4798-8e7e-50509a1d1027", + "Name": "W12x152", + "CellId": 37, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ae2d289f-ecdb-437b-9d79-5143b76fdbe4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae2d289f-ecdb-437b-9d79-5143b76fdbe4", + "Name": null + }, + "4dbaf034-8676-4d42-86b8-f5b58808dd1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4dbaf034-8676-4d42-86b8-f5b58808dd1d", + "Name": "W12x152", + "CellId": 38, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6a1595bf-5327-4d63-a808-b5df7d121c6c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a1595bf-5327-4d63-a808-b5df7d121c6c", + "Name": null + }, + "401032fd-300d-4c1f-bb88-08004f58c78d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "401032fd-300d-4c1f-bb88-08004f58c78d", + "Name": "W12x152", + "CellId": 38, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "46aeb8af-ce91-458f-bb17-5d061dddf5ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "46aeb8af-ce91-458f-bb17-5d061dddf5ab", + "Name": null + }, + "f02a3449-c4ba-42d1-a80b-3f60d2ae4cac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f02a3449-c4ba-42d1-a80b-3f60d2ae4cac", + "Name": "W12x152", + "CellId": 38, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e5fbb417-902c-4ab9-9d0a-4ea91b5a9d72": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5fbb417-902c-4ab9-9d0a-4ea91b5a9d72", + "Name": null + }, + "28d80df9-8635-4aea-8858-f6688917c042": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "28d80df9-8635-4aea-8858-f6688917c042", + "Name": "W12x152", + "CellId": 39, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "153b177f-7a25-464d-9c35-477e6a21b3b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "153b177f-7a25-464d-9c35-477e6a21b3b5", + "Name": null + }, + "9aa11d96-4c02-4bd6-a9f5-cb0ff1ae89e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "9aa11d96-4c02-4bd6-a9f5-cb0ff1ae89e7", + "Name": "W12x152", + "CellId": 39, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "23f6302f-4943-4e3c-9e45-285e356f7b54": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "23f6302f-4943-4e3c-9e45-285e356f7b54", + "Name": null + }, + "a0c519ce-9505-4648-aa29-ba28fc934e97": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "a0c519ce-9505-4648-aa29-ba28fc934e97", + "Name": "W12x152", + "CellId": 39, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "982d1253-9520-48bd-826f-85768f2746e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "982d1253-9520-48bd-826f-85768f2746e4", + "Name": null + }, + "6633755c-74a8-4b81-8a27-4bed972fe486": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6633755c-74a8-4b81-8a27-4bed972fe486", + "Name": "W12x152", + "CellId": 40, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9bd702cb-06a2-4907-9034-d1e2cb291833": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9bd702cb-06a2-4907-9034-d1e2cb291833", + "Name": null + }, + "5f1fc8d2-a4cd-4006-b093-f5b3f99acb01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5f1fc8d2-a4cd-4006-b093-f5b3f99acb01", + "Name": "W12x152", + "CellId": 40, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b62aef0d-663c-45d6-a596-bfb9efb82f3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b62aef0d-663c-45d6-a596-bfb9efb82f3f", + "Name": null + }, + "81ffe3d7-70c4-4c07-8a34-6fba513036d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "81ffe3d7-70c4-4c07-8a34-6fba513036d6", + "Name": "W12x152", + "CellId": 41, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "35261318-f9b4-4d2e-b7b9-e6586a0d5a5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "35261318-f9b4-4d2e-b7b9-e6586a0d5a5a", + "Name": null + }, + "f2a916d8-7814-4ad7-9a88-1f96d580a2a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f2a916d8-7814-4ad7-9a88-1f96d580a2a5", + "Name": "W12x152", + "CellId": 41, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dbf78bea-0448-4edf-86ed-668d1c2f6d7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dbf78bea-0448-4edf-86ed-668d1c2f6d7a", + "Name": null + }, + "84d82613-1663-47ed-b854-d61149a1ba45": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "84d82613-1663-47ed-b854-d61149a1ba45", + "Name": "W12x152", + "CellId": 41, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ffa65e98-279b-4838-bd1d-b61819892491": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ffa65e98-279b-4838-bd1d-b61819892491", + "Name": null + }, + "1defd089-935e-4a24-b99e-c13d0502a09d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1defd089-935e-4a24-b99e-c13d0502a09d", + "Name": "W12x152", + "CellId": 42, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3dda4dbd-8b8d-4638-b874-e8221e9f45ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3dda4dbd-8b8d-4638-b874-e8221e9f45ba", + "Name": null + }, + "8149523d-6285-4cd6-97fd-ad49a05bf490": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "8149523d-6285-4cd6-97fd-ad49a05bf490", + "Name": "W12x152", + "CellId": 42, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0312cd53-fa86-4ac4-980b-e10998643044": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0312cd53-fa86-4ac4-980b-e10998643044", + "Name": null + }, + "25c866f6-b7be-4109-a373-06f2ad031549": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "25c866f6-b7be-4109-a373-06f2ad031549", + "Name": "W12x152", + "CellId": 42, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4a9110d6-0d5f-4f9d-9e82-218c1c256689": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a9110d6-0d5f-4f9d-9e82-218c1c256689", + "Name": null + }, + "6397a936-d1b9-48b0-91ce-7bc44c5f4f78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6397a936-d1b9-48b0-91ce-7bc44c5f4f78", + "Name": "W12x152", + "CellId": 43, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "538cc0e5-6b6f-4595-9f77-cd6478003329": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "538cc0e5-6b6f-4595-9f77-cd6478003329", + "Name": null + }, + "85bdf280-2915-4ad7-9914-188f075856c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "85bdf280-2915-4ad7-9914-188f075856c9", + "Name": "W12x152", + "CellId": 43, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ec630cc5-ff39-4cdc-bbbd-f587ca9bf7ad": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec630cc5-ff39-4cdc-bbbd-f587ca9bf7ad", + "Name": null + }, + "56752b61-d7a6-47b6-8072-47dc61e93793": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "56752b61-d7a6-47b6-8072-47dc61e93793", + "Name": "W12x152", + "CellId": 43, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "82d39ff1-998f-4a17-84e4-331393f50f34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "82d39ff1-998f-4a17-84e4-331393f50f34", + "Name": null + }, + "33b52d2b-f8a0-492b-8968-4ed518d6eee9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "33b52d2b-f8a0-492b-8968-4ed518d6eee9", + "Name": "W12x152", + "CellId": 44, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6a55ae0-7c22-425e-9ae8-595ba5d2803b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6a55ae0-7c22-425e-9ae8-595ba5d2803b", + "Name": null + }, + "1d409dbd-5056-42d8-aa40-2973d3e2d7c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1d409dbd-5056-42d8-aa40-2973d3e2d7c3", + "Name": "W12x152", + "CellId": 44, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "faf54d56-b8f3-4b07-b94b-604c1324f65c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "faf54d56-b8f3-4b07-b94b-604c1324f65c", + "Name": null + }, + "ec96e27f-b66b-445a-82cb-85bf8bc44063": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ec96e27f-b66b-445a-82cb-85bf8bc44063", + "Name": "W12x152", + "CellId": 44, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b9441968-fa3c-4b93-aa8a-c22fd1a00435": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9441968-fa3c-4b93-aa8a-c22fd1a00435", + "Name": null + }, + "3048093c-84ba-4cdd-a861-f3fe3bf174ea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "3048093c-84ba-4cdd-a861-f3fe3bf174ea", + "Name": "W12x152", + "CellId": 45, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b2990e62-17ab-4dcb-9238-910a7e181b75": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b2990e62-17ab-4dcb-9238-910a7e181b75", + "Name": null + }, + "5186e40a-234f-43c7-9df7-b18b53944bf3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "5186e40a-234f-43c7-9df7-b18b53944bf3", + "Name": "W12x152", + "CellId": 45, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "faa6d2dc-4712-4f6c-8ed5-f08d0b9f9990": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "faa6d2dc-4712-4f6c-8ed5-f08d0b9f9990", + "Name": null + }, + "ff7a015a-8459-44a6-a363-543bb7a0ad23": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "ff7a015a-8459-44a6-a363-543bb7a0ad23", + "Name": "W12x152", + "CellId": 46, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15cdca0f-25aa-4287-9e32-85d1d91cfff8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15cdca0f-25aa-4287-9e32-85d1d91cfff8", + "Name": null + }, + "fab6a8d3-4942-4112-9ba7-ed958b4bbc2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "fab6a8d3-4942-4112-9ba7-ed958b4bbc2b", + "Name": "W12x152", + "CellId": 46, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9a11745d-ed4c-4caf-84e0-8284a1a3e7ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a11745d-ed4c-4caf-84e0-8284a1a3e7ac", + "Name": null + }, + "0bce3971-c00b-4adc-8b73-e1b5881300a0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0bce3971-c00b-4adc-8b73-e1b5881300a0", + "Name": "W12x152", + "CellId": 46, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "47151969-1411-4cd4-a8e7-0b12a144292c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47151969-1411-4cd4-a8e7-0b12a144292c", + "Name": null + }, + "54b14074-d71e-438e-81e2-ab436c2ff359": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "54b14074-d71e-438e-81e2-ab436c2ff359", + "Name": "W12x152", + "CellId": 47, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "feb5ef92-59c7-410b-99f9-00b0fca9415f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "feb5ef92-59c7-410b-99f9-00b0fca9415f", + "Name": null + }, + "d2705ada-62cf-4c15-b9e7-89039d07dcfe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d2705ada-62cf-4c15-b9e7-89039d07dcfe", + "Name": "W12x152", + "CellId": 47, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0041a7fe-72f5-4b49-a8ef-c6fa9da5136f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0041a7fe-72f5-4b49-a8ef-c6fa9da5136f", + "Name": null + }, + "d097b48a-7968-4c68-bfa5-888badba72a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d097b48a-7968-4c68-bfa5-888badba72a6", + "Name": "W12x152", + "CellId": 47, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d0c5af5f-1bd1-467a-affd-30d78ae2a10f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d0c5af5f-1bd1-467a-affd-30d78ae2a10f", + "Name": null + }, + "258b3022-b11f-4961-b5a2-6fff2538d5e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "258b3022-b11f-4961-b5a2-6fff2538d5e2", + "Name": "W12x152", + "CellId": 48, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e5334086-20d8-43d8-afcd-779e88da33a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e5334086-20d8-43d8-afcd-779e88da33a9", + "Name": null + }, + "6e6b024b-64ed-471e-ac9b-008ac3d24ba1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6e6b024b-64ed-471e-ac9b-008ac3d24ba1", + "Name": "W12x152", + "CellId": 48, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dc7eb616-2236-4d18-9e2d-7c882556ee97": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc7eb616-2236-4d18-9e2d-7c882556ee97", + "Name": null + }, + "4bb67059-5567-471b-beb3-db6ca779f84e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "4bb67059-5567-471b-beb3-db6ca779f84e", + "Name": "W12x152", + "CellId": 48, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "001a6dce-2246-4e22-83d1-73feb574d55f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "001a6dce-2246-4e22-83d1-73feb574d55f", + "Name": null + }, + "06fdb599-0bc9-43d3-9017-f88c3bc7fd88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "06fdb599-0bc9-43d3-9017-f88c3bc7fd88", + "Name": "W12x152", + "CellId": 49, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "341ac4e5-c785-4871-905d-a558945e0340": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "341ac4e5-c785-4871-905d-a558945e0340", + "Name": null + }, + "6fd0dcd2-2419-4329-80b7-e20af2dfdb74": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "6fd0dcd2-2419-4329-80b7-e20af2dfdb74", + "Name": "W12x152", + "CellId": 49, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ea4d4086-ba12-4519-bbb5-8a9000e2ab82": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea4d4086-ba12-4519-bbb5-8a9000e2ab82", + "Name": null + }, + "7701b0d6-8e86-4a06-a93a-8acdc7941c8b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7701b0d6-8e86-4a06-a93a-8acdc7941c8b", + "Name": "W12x152", + "CellId": 49, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4fa85be3-f0a4-48f6-8852-742df1089b7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4fa85be3-f0a4-48f6-8852-742df1089b7a", + "Name": null + }, + "1f90d02b-8571-4f67-afe2-24a28461f9dc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "1f90d02b-8571-4f67-afe2-24a28461f9dc", + "Name": "W12x152", + "CellId": 50, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "87fe4c99-5d96-4e17-bfc0-049056f687e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87fe4c99-5d96-4e17-bfc0-049056f687e3", + "Name": null + }, + "32ad6738-92e1-4538-a30b-635baf62844e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "32ad6738-92e1-4538-a30b-635baf62844e", + "Name": "W12x152", + "CellId": 50, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b2080833-e891-4dd1-9754-20b1fbdaf1f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b2080833-e891-4dd1-9754-20b1fbdaf1f3", + "Name": null + }, + "e8935f23-dd81-4ea7-bf7d-f5e2ad573662": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "e8935f23-dd81-4ea7-bf7d-f5e2ad573662", + "Name": "W12x152", + "CellId": 51, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e8125461-d3f9-4b89-a188-46993d6aa68d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8125461-d3f9-4b89-a188-46993d6aa68d", + "Name": null + }, + "c7863400-3b54-493a-8faa-38df573f3405": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "c7863400-3b54-493a-8faa-38df573f3405", + "Name": "W12x152", + "CellId": 51, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c77bcd6b-6571-4605-b316-fe4d1f5e2486": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c77bcd6b-6571-4605-b316-fe4d1f5e2486", + "Name": null + }, + "0455ce8d-663f-4318-aad5-0273f391f0de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0455ce8d-663f-4318-aad5-0273f391f0de", + "Name": "W12x152", + "CellId": 51, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "36cb2c1d-0483-40d4-8cb0-a5761f913dac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "36cb2c1d-0483-40d4-8cb0-a5761f913dac", + "Name": null + }, + "7600ab4a-8e78-4509-bb27-31e149b89521": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "7600ab4a-8e78-4509-bb27-31e149b89521", + "Name": "W12x152", + "CellId": 52, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb4ca93f-0a6e-425d-8c4a-6636016e8459": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb4ca93f-0a6e-425d-8c4a-6636016e8459", + "Name": null + }, + "00d95ddf-1c46-4185-a929-a31e677bf546": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "00d95ddf-1c46-4185-a929-a31e677bf546", + "Name": "W12x152", + "CellId": 52, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e7e849a6-dac6-478e-a435-adfa132a5cf5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e7e849a6-dac6-478e-a435-adfa132a5cf5", + "Name": null + }, + "690009a1-6505-410a-bc6c-9868cdb0666e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "690009a1-6505-410a-bc6c-9868cdb0666e", + "Name": "W12x152", + "CellId": 52, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b625663c-6efb-4989-80f1-38e0519fab1f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b625663c-6efb-4989-80f1-38e0519fab1f", + "Name": null + }, + "15100931-1975-43c6-991b-5d63b38d6121": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "15100931-1975-43c6-991b-5d63b38d6121", + "Name": "W12x152", + "CellId": 53, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "17961a87-10bc-4933-affc-e5b725a2b2b9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "17961a87-10bc-4933-affc-e5b725a2b2b9", + "Name": null + }, + "d8243927-456e-40f2-8664-99435be45590": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "d8243927-456e-40f2-8664-99435be45590", + "Name": "W12x152", + "CellId": 53, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "70dccfe1-19d9-446c-ba4c-e407b7665f98": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "70dccfe1-19d9-446c-ba4c-e407b7665f98", + "Name": null + }, + "075ba440-62c6-4b8b-a21c-82e3cb321e5f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "075ba440-62c6-4b8b-a21c-82e3cb321e5f", + "Name": "W12x152", + "CellId": 53, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "465388dd-8bb2-49f9-83ee-5e5c40dc351c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "465388dd-8bb2-49f9-83ee-5e5c40dc351c", + "Name": null + }, + "637a75a3-2d39-4442-930e-18f572fcdab2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "637a75a3-2d39-4442-930e-18f572fcdab2", + "Name": "W12x152", + "CellId": 54, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f1f386b-a948-493b-aaa5-f520eda392de": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f1f386b-a948-493b-aaa5-f520eda392de", + "Name": null + }, + "0964864d-4de1-4504-a3f3-f1be62322303": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "0964864d-4de1-4504-a3f3-f1be62322303", + "Name": "W12x152", + "CellId": 54, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "788cc98b-c790-4090-a5b3-2cf6d735d915": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "788cc98b-c790-4090-a5b3-2cf6d735d915", + "Name": null + }, + "f0a1ec0a-34d1-4cf0-aeb2-55e6775acdbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "f0a1ec0a-34d1-4cf0-aeb2-55e6775acdbb", + "Name": "W12x152", + "CellId": 54, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5c2ba50c-d268-407a-b3fa-424a3aff5b4e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 0.0 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c2ba50c-d268-407a-b3fa-424a3aff5b4e", + "Name": null + }, + "968f45da-4b94-4439-8f65-786a8c2c82bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "968f45da-4b94-4439-8f65-786a8c2c82bc", + "Name": "W12x152", + "CellId": 55, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9a769399-8a56-49d8-9dc7-7a28897dd8eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a769399-8a56-49d8-9dc7-7a28897dd8eb", + "Name": null + }, + "80d4719d-16d2-4c85-abc7-2c9bf1c9062f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Id": "80d4719d-16d2-4c85-abc7-2c9bf1c9062f", + "Name": "W12x152", + "CellId": 55, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e0227426-93d4-4c10-9641-ba01a1b25013": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 0.0 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 0.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0227426-93d4-4c10-9641-ba01a1b25013", + "Name": null + }, + "6701434d-0f43-4246-8fc0-421add9c4114": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6701434d-0f43-4246-8fc0-421add9c4114", + "Name": "W12x152", + "CellId": 56, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "fa62210f-3d65-4b42-90bc-d2c9550d00a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 4.5 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa62210f-3d65-4b42-90bc-d2c9550d00a2", + "Name": null + }, + "55b9bef1-cc8f-4fc0-8160-e9c175b12363": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "55b9bef1-cc8f-4fc0-8160-e9c175b12363", + "Name": "W12x152", + "CellId": 56, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "fa279c34-e83f-48c1-89ad-f82b855a07a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 4.5 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa279c34-e83f-48c1-89ad-f82b855a07a3", + "Name": null + }, + "b261ade4-365e-4274-a1b2-bb9f2e4399ea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b261ade4-365e-4274-a1b2-bb9f2e4399ea", + "Name": "W12x152", + "CellId": 57, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3c028b52-430a-4892-911a-df5bd0dc4492": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c028b52-430a-4892-911a-df5bd0dc4492", + "Name": null + }, + "2ad7ec5a-6b8f-49bc-a1f4-592ecfe3d430": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2ad7ec5a-6b8f-49bc-a1f4-592ecfe3d430", + "Name": "W12x152", + "CellId": 57, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ed853a84-b441-4419-9c02-38391678d16c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed853a84-b441-4419-9c02-38391678d16c", + "Name": null + }, + "c5616dd2-01d9-455a-8dae-bf1a3e1df618": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c5616dd2-01d9-455a-8dae-bf1a3e1df618", + "Name": "W12x152", + "CellId": 57, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dd32bd8f-19ae-46f3-a1d4-69931b5fab33": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd32bd8f-19ae-46f3-a1d4-69931b5fab33", + "Name": null + }, + "ce6c1c76-0402-40ec-a4a6-5739e5bebdb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ce6c1c76-0402-40ec-a4a6-5739e5bebdb0", + "Name": "W12x152", + "CellId": 58, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0cbe0dc7-9d97-46f9-9aab-85b721d12dea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0cbe0dc7-9d97-46f9-9aab-85b721d12dea", + "Name": null + }, + "396986ce-fdd9-4e55-9803-3f40f334b605": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "396986ce-fdd9-4e55-9803-3f40f334b605", + "Name": "W12x152", + "CellId": 58, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a5f9b05d-6042-44a6-81dd-fd14baa81b26": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a5f9b05d-6042-44a6-81dd-fd14baa81b26", + "Name": null + }, + "b3f3256f-e85a-4c39-8456-7f7db0909cbd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b3f3256f-e85a-4c39-8456-7f7db0909cbd", + "Name": "W12x152", + "CellId": 60, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a93f0007-a3c0-4bdd-8602-5b81f4ee15b9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a93f0007-a3c0-4bdd-8602-5b81f4ee15b9", + "Name": null + }, + "619afdb1-6256-4100-a479-e72b85ddb8d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "619afdb1-6256-4100-a479-e72b85ddb8d7", + "Name": "W12x152", + "CellId": 60, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "09cb8cd4-ee2b-4010-8d00-fddb0bb2c0dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09cb8cd4-ee2b-4010-8d00-fddb0bb2c0dd", + "Name": null + }, + "83bc39ab-b84a-4605-b9d1-7bd340157ecb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "83bc39ab-b84a-4605-b9d1-7bd340157ecb", + "Name": "W12x152", + "CellId": 60, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7bcc7b5f-a821-4961-842e-1d49d2bd924b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7bcc7b5f-a821-4961-842e-1d49d2bd924b", + "Name": null + }, + "fb504016-2527-4dad-b430-898193a2a808": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fb504016-2527-4dad-b430-898193a2a808", + "Name": "W12x152", + "CellId": 61, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c26c2b26-077b-4fa3-96b3-f8d0772adf48": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c26c2b26-077b-4fa3-96b3-f8d0772adf48", + "Name": null + }, + "1dedd239-f930-4799-a4a2-3ec4dc482d0f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1dedd239-f930-4799-a4a2-3ec4dc482d0f", + "Name": "W12x152", + "CellId": 61, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "68869671-7da9-43c6-ad06-fd254e03bd04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "68869671-7da9-43c6-ad06-fd254e03bd04", + "Name": null + }, + "a507e084-1bbf-40e5-9008-5a244321c8c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a507e084-1bbf-40e5-9008-5a244321c8c9", + "Name": "W12x152", + "CellId": 61, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3e7a6f04-3b8d-4752-89b7-2d65a9b8c63d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3e7a6f04-3b8d-4752-89b7-2d65a9b8c63d", + "Name": null + }, + "561a7c11-8eb7-414e-93b3-064e99c27024": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "561a7c11-8eb7-414e-93b3-064e99c27024", + "Name": "W12x152", + "CellId": 62, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0f07076a-f4c8-46ff-8c75-14c538502b11": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0f07076a-f4c8-46ff-8c75-14c538502b11", + "Name": null + }, + "593ac25c-f4cd-4f0c-bc54-1286d139fef4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "593ac25c-f4cd-4f0c-bc54-1286d139fef4", + "Name": "W12x152", + "CellId": 62, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3c0330fb-e6fd-4ea6-9a94-72f074c3d0be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c0330fb-e6fd-4ea6-9a94-72f074c3d0be", + "Name": null + }, + "d5e236ee-8fd5-4394-9ec2-963c2d7d7dc2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d5e236ee-8fd5-4394-9ec2-963c2d7d7dc2", + "Name": "W12x152", + "CellId": 63, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "1c829662-b34d-48e2-827f-b944f894d46c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 4.5 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c829662-b34d-48e2-827f-b944f894d46c", + "Name": null + }, + "0a3921b5-8260-4ec0-9e21-5d23d7706107": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0a3921b5-8260-4ec0-9e21-5d23d7706107", + "Name": "W12x152", + "CellId": 63, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a0dbc267-3a59-44e9-bda6-9a3c40211482": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a0dbc267-3a59-44e9-bda6-9a3c40211482", + "Name": null + }, + "b44d84ab-0c0c-4ff5-816a-237a24954bf0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b44d84ab-0c0c-4ff5-816a-237a24954bf0", + "Name": "W12x152", + "CellId": 64, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0c0ac027-58cc-4653-a763-f0a6ad80eab1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c0ac027-58cc-4653-a763-f0a6ad80eab1", + "Name": null + }, + "f3e2deb1-5266-4012-a2fe-6b3980208a9d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f3e2deb1-5266-4012-a2fe-6b3980208a9d", + "Name": "W12x152", + "CellId": 64, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "187270af-2998-465d-8803-c94142b6b374": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "187270af-2998-465d-8803-c94142b6b374", + "Name": null + }, + "f4ae489d-2ea4-49ef-89e1-daf21f599be7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f4ae489d-2ea4-49ef-89e1-daf21f599be7", + "Name": "W12x152", + "CellId": 64, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b558d81-2d62-45ba-8fa8-ae6848d3cfa9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b558d81-2d62-45ba-8fa8-ae6848d3cfa9", + "Name": null + }, + "d4cf8946-a98d-4965-b70e-c621562d9bdc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d4cf8946-a98d-4965-b70e-c621562d9bdc", + "Name": "W12x152", + "CellId": 65, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "384a95c6-4953-46fa-b771-6f672153c731": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "384a95c6-4953-46fa-b771-6f672153c731", + "Name": null + }, + "aa4f7acd-cdd7-4fb9-819e-f790b6c87622": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "aa4f7acd-cdd7-4fb9-819e-f790b6c87622", + "Name": "W12x152", + "CellId": 65, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fd91afa9-d003-4d87-8299-b62124f26285": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fd91afa9-d003-4d87-8299-b62124f26285", + "Name": null + }, + "f13cb1cc-45eb-46d7-a1ad-ca7ac1c0f613": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f13cb1cc-45eb-46d7-a1ad-ca7ac1c0f613", + "Name": "W12x152", + "CellId": 65, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97199b05-25d4-4f57-92a1-a5d55f0bde36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97199b05-25d4-4f57-92a1-a5d55f0bde36", + "Name": null + }, + "16ad6ad7-fe6d-4074-a6d5-253d3d759b79": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "16ad6ad7-fe6d-4074-a6d5-253d3d759b79", + "Name": "W12x152", + "CellId": 66, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "dd9cf534-54ef-4b97-af2a-e5dd0d4bb853": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd9cf534-54ef-4b97-af2a-e5dd0d4bb853", + "Name": null + }, + "cf08ea34-f3d6-47dc-9502-1089b294828b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cf08ea34-f3d6-47dc-9502-1089b294828b", + "Name": "W12x152", + "CellId": 66, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b1bb3b10-90d7-48f2-8318-1bfb91b6dfce": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1bb3b10-90d7-48f2-8318-1bfb91b6dfce", + "Name": null + }, + "5387c4d5-641f-4bac-a9c6-6259305d7787": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5387c4d5-641f-4bac-a9c6-6259305d7787", + "Name": "W12x152", + "CellId": 67, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7413e4a7-ed66-467c-a440-73d9e3be0b4a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7413e4a7-ed66-467c-a440-73d9e3be0b4a", + "Name": null + }, + "31670057-d19b-4857-a81f-584a52e80a4c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "31670057-d19b-4857-a81f-584a52e80a4c", + "Name": "W12x152", + "CellId": 67, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0e3b7d71-85cb-47c2-9179-bd4fc7d4b2b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e3b7d71-85cb-47c2-9179-bd4fc7d4b2b0", + "Name": null + }, + "0c33af87-2d2c-4039-aafe-fd070c760e90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0c33af87-2d2c-4039-aafe-fd070c760e90", + "Name": "W12x152", + "CellId": 67, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c8e64bc-97f7-4e16-a58d-4e930eebfc62": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c8e64bc-97f7-4e16-a58d-4e930eebfc62", + "Name": null + }, + "84b99e41-0bd6-49f2-a31f-345b4c7fe62a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "84b99e41-0bd6-49f2-a31f-345b4c7fe62a", + "Name": "W12x152", + "CellId": 68, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3aec494c-22f6-4806-8e62-dac0f8956738": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3aec494c-22f6-4806-8e62-dac0f8956738", + "Name": null + }, + "5c4364fd-a54d-467e-b4ea-a977a7f455fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5c4364fd-a54d-467e-b4ea-a977a7f455fa", + "Name": "W12x152", + "CellId": 68, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8b4af1e4-d2e0-4f47-ae08-a058ecebfab1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8b4af1e4-d2e0-4f47-ae08-a058ecebfab1", + "Name": null + }, + "584198b5-38c5-4905-b375-cd8c3bb74cd3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "584198b5-38c5-4905-b375-cd8c3bb74cd3", + "Name": "W12x152", + "CellId": 68, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c921e919-9129-413d-8167-6436911aab30": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c921e919-9129-413d-8167-6436911aab30", + "Name": null + }, + "0f977749-1e6a-4b94-8dd5-92cd801508e6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "0f977749-1e6a-4b94-8dd5-92cd801508e6", + "Name": "W12x152", + "CellId": 69, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9fbc3ea3-67b6-4638-a3e8-a0607df86e16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fbc3ea3-67b6-4638-a3e8-a0607df86e16", + "Name": null + }, + "c99b9077-2dfb-4357-aeb8-88c50b2e28df": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c99b9077-2dfb-4357-aeb8-88c50b2e28df", + "Name": "W12x152", + "CellId": 69, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "96b4ac7e-0c48-46cb-a449-71956a0b00d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "96b4ac7e-0c48-46cb-a449-71956a0b00d3", + "Name": null + }, + "6143794a-f527-4389-8969-2288540ddb06": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6143794a-f527-4389-8969-2288540ddb06", + "Name": "W12x152", + "CellId": 69, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3d5cfaf9-d5f3-493f-9a1f-77de7f77a3d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3d5cfaf9-d5f3-493f-9a1f-77de7f77a3d7", + "Name": null + }, + "e9a53ced-f7fd-4c27-97df-0659dcec6f5a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e9a53ced-f7fd-4c27-97df-0659dcec6f5a", + "Name": "W12x152", + "CellId": 70, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e0ec27ac-bfc3-4d43-bbde-234a262529f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0ec27ac-bfc3-4d43-bbde-234a262529f9", + "Name": null + }, + "e67e7c2f-4f6c-4888-a0dd-1b5a87c0f1d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e67e7c2f-4f6c-4888-a0dd-1b5a87c0f1d7", + "Name": "W12x152", + "CellId": 70, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "16379624-1663-4e12-aee8-04fb723bc2c3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "16379624-1663-4e12-aee8-04fb723bc2c3", + "Name": null + }, + "de17ad04-469e-42a8-89a6-68b273095909": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "de17ad04-469e-42a8-89a6-68b273095909", + "Name": "W12x152", + "CellId": 71, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "80a77184-39e3-4051-9413-677980823a6d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 4.5 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80a77184-39e3-4051-9413-677980823a6d", + "Name": null + }, + "455c663c-ba94-4218-b4f9-f751b931fb58": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "455c663c-ba94-4218-b4f9-f751b931fb58", + "Name": "W12x152", + "CellId": 71, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "784cd6a2-5278-451e-a627-8b0de0665249": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 4.5 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "784cd6a2-5278-451e-a627-8b0de0665249", + "Name": null + }, + "a46a60c9-261c-4731-b26f-83039fec692b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a46a60c9-261c-4731-b26f-83039fec692b", + "Name": "W12x152", + "CellId": 72, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "39e5e052-ac85-4db4-9af2-3dcaa6ec765f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "39e5e052-ac85-4db4-9af2-3dcaa6ec765f", + "Name": null + }, + "1e202d8a-3a21-49e2-bf9d-e4b6c177e437": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1e202d8a-3a21-49e2-bf9d-e4b6c177e437", + "Name": "W12x152", + "CellId": 72, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2a1f2e64-9736-4479-9325-f622a3b7c674": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2a1f2e64-9736-4479-9325-f622a3b7c674", + "Name": null + }, + "ee069bf7-c16f-4d4e-91b5-054a7aff4278": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ee069bf7-c16f-4d4e-91b5-054a7aff4278", + "Name": "W12x152", + "CellId": 72, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8f04c1d6-b90d-49ee-b10f-63bea865cbcc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8f04c1d6-b90d-49ee-b10f-63bea865cbcc", + "Name": null + }, + "7297ec1a-8930-4e06-a866-31fb8d94d186": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7297ec1a-8930-4e06-a866-31fb8d94d186", + "Name": "W12x152", + "CellId": 73, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f0cf8f2d-73e9-4b97-b838-24fdcbec3068": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f0cf8f2d-73e9-4b97-b838-24fdcbec3068", + "Name": null + }, + "e26b9d77-9456-4938-94fe-278794ddfae2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e26b9d77-9456-4938-94fe-278794ddfae2", + "Name": "W12x152", + "CellId": 73, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "87873f2a-a7ba-459d-b78c-eb877ee54129": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87873f2a-a7ba-459d-b78c-eb877ee54129", + "Name": null + }, + "cb2520cf-e040-4f08-91b8-7dea1e8aaa3f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cb2520cf-e040-4f08-91b8-7dea1e8aaa3f", + "Name": "W12x152", + "CellId": 73, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bb053993-6d3b-4807-abef-6536a0c9f798": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bb053993-6d3b-4807-abef-6536a0c9f798", + "Name": null + }, + "c2bc8e95-3dac-4fd9-b50d-0fb57ff6ccef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2bc8e95-3dac-4fd9-b50d-0fb57ff6ccef", + "Name": "W12x152", + "CellId": 74, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9fddaf8e-3717-4e3b-b29d-7ec212ddf88d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9fddaf8e-3717-4e3b-b29d-7ec212ddf88d", + "Name": null + }, + "1ba5e032-d676-418d-bc69-d1b8f5ea05c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1ba5e032-d676-418d-bc69-d1b8f5ea05c3", + "Name": "W12x152", + "CellId": 74, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a43995ae-ab4a-4b6b-9696-8e32bd8d7da7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a43995ae-ab4a-4b6b-9696-8e32bd8d7da7", + "Name": null + }, + "650bbc29-361f-48d5-bb33-3a53b6523c70": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "650bbc29-361f-48d5-bb33-3a53b6523c70", + "Name": "W12x152", + "CellId": 74, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1ad125a4-d6ba-420e-b4d1-ebc91ef566aa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ad125a4-d6ba-420e-b4d1-ebc91ef566aa", + "Name": null + }, + "db6462b2-4ec0-4687-82a4-8048e8dee909": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "db6462b2-4ec0-4687-82a4-8048e8dee909", + "Name": "W12x152", + "CellId": 75, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e0f35987-516b-402b-9745-8f25b8cad172": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0f35987-516b-402b-9745-8f25b8cad172", + "Name": null + }, + "49307561-c298-4bab-bf15-d6b5b8cb24c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "49307561-c298-4bab-bf15-d6b5b8cb24c1", + "Name": "W12x152", + "CellId": 75, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "d80a7e53-a017-4385-a070-826b0c263816": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d80a7e53-a017-4385-a070-826b0c263816", + "Name": null + }, + "7ed98e55-424b-4007-95bd-766d79b88516": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7ed98e55-424b-4007-95bd-766d79b88516", + "Name": "W12x152", + "CellId": 76, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d5f29363-2a98-460c-9ff9-4a17d2469386": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d5f29363-2a98-460c-9ff9-4a17d2469386", + "Name": null + }, + "d784f63f-d237-4ecc-9d75-d482131f64af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d784f63f-d237-4ecc-9d75-d482131f64af", + "Name": "W12x152", + "CellId": 76, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b0484559-5740-4c9c-ada2-0b2be1cd57ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0484559-5740-4c9c-ada2-0b2be1cd57ed", + "Name": null + }, + "cedf693a-2b2b-4779-acd4-09643f472bb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "cedf693a-2b2b-4779-acd4-09643f472bb8", + "Name": "W12x152", + "CellId": 76, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "24e17091-89e4-4c6f-9814-563b4ef3b4c7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "24e17091-89e4-4c6f-9814-563b4ef3b4c7", + "Name": null + }, + "091fb905-c39f-4a71-ab72-6977e34a1b01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "091fb905-c39f-4a71-ab72-6977e34a1b01", + "Name": "W12x152", + "CellId": 77, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "da578b44-6d47-47bb-a5cf-a809ea3c76b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da578b44-6d47-47bb-a5cf-a809ea3c76b0", + "Name": null + }, + "08ac7b3a-7dcd-4196-a189-9ac2f093982c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "08ac7b3a-7dcd-4196-a189-9ac2f093982c", + "Name": "W12x152", + "CellId": 77, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7fe6c584-2a56-4aa0-8e62-7af19e04bf5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7fe6c584-2a56-4aa0-8e62-7af19e04bf5a", + "Name": null + }, + "530a41da-cf00-4aed-ad4c-040f592a9739": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "530a41da-cf00-4aed-ad4c-040f592a9739", + "Name": "W12x152", + "CellId": 77, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9506b85e-fbd5-49b8-8582-332db31df0d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9506b85e-fbd5-49b8-8582-332db31df0d3", + "Name": null + }, + "e96bea8b-8554-452d-b3eb-1254958e5cfc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e96bea8b-8554-452d-b3eb-1254958e5cfc", + "Name": "W12x152", + "CellId": 78, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97e39633-5e59-4689-8edb-0d00d60a345f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97e39633-5e59-4689-8edb-0d00d60a345f", + "Name": null + }, + "ac4cf273-fb35-4567-9aaf-935618c9861d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ac4cf273-fb35-4567-9aaf-935618c9861d", + "Name": "W12x152", + "CellId": 78, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "414482aa-3ada-467e-923b-1e5128b5ae1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "414482aa-3ada-467e-923b-1e5128b5ae1b", + "Name": null + }, + "7d4edaec-5a71-43a4-b59c-225ff1c9d24b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7d4edaec-5a71-43a4-b59c-225ff1c9d24b", + "Name": "W12x152", + "CellId": 78, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9ff6e2dc-6e80-4c26-b47a-36ba5fd395d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ff6e2dc-6e80-4c26-b47a-36ba5fd395d9", + "Name": null + }, + "e25a8f0b-0e07-4280-9447-23cf0348081c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e25a8f0b-0e07-4280-9447-23cf0348081c", + "Name": "W12x152", + "CellId": 79, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f0e254c4-1ed7-4afd-9601-7baf69ff1d59": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f0e254c4-1ed7-4afd-9601-7baf69ff1d59", + "Name": null + }, + "80552cf6-b8f4-4f21-a3e4-1444243061c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "80552cf6-b8f4-4f21-a3e4-1444243061c1", + "Name": "W12x152", + "CellId": 79, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f7734bf-68d8-404b-a87d-d410ef575ff4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f7734bf-68d8-404b-a87d-d410ef575ff4", + "Name": null + }, + "f189330e-e564-4a61-82e5-0c962217dc42": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f189330e-e564-4a61-82e5-0c962217dc42", + "Name": "W12x152", + "CellId": 79, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ea8a0107-23da-46a5-9b38-5f482d4d34ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea8a0107-23da-46a5-9b38-5f482d4d34ab", + "Name": null + }, + "a62fbb4f-299f-409b-9b9a-3559f8211089": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a62fbb4f-299f-409b-9b9a-3559f8211089", + "Name": "W12x152", + "CellId": 80, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3753f0c9-bab2-4580-97b7-aad88b9e4c9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3753f0c9-bab2-4580-97b7-aad88b9e4c9a", + "Name": null + }, + "8cd88dc3-de4b-464f-9945-1c99751c5bce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8cd88dc3-de4b-464f-9945-1c99751c5bce", + "Name": "W12x152", + "CellId": 80, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9bf0167c-0909-4b79-ba21-accb7302dd0e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9bf0167c-0909-4b79-ba21-accb7302dd0e", + "Name": null + }, + "8a87f8ff-be8a-45ba-b196-dc0146b1c551": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8a87f8ff-be8a-45ba-b196-dc0146b1c551", + "Name": "W12x152", + "CellId": 81, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1adbd266-7dda-4d9d-9bf9-90bb07d57701": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1adbd266-7dda-4d9d-9bf9-90bb07d57701", + "Name": null + }, + "472e5628-0755-4f92-8813-b55e66c28c8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "472e5628-0755-4f92-8813-b55e66c28c8e", + "Name": "W12x152", + "CellId": 81, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "854a4e3b-cefd-4249-b29b-353a925154fe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "854a4e3b-cefd-4249-b29b-353a925154fe", + "Name": null + }, + "4b004e60-701e-4c19-9fb2-128459ab6123": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "4b004e60-701e-4c19-9fb2-128459ab6123", + "Name": "W12x152", + "CellId": 81, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d9c2cf32-d0c9-43cb-97fe-0c4fd300acd4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9c2cf32-d0c9-43cb-97fe-0c4fd300acd4", + "Name": null + }, + "ca675512-8c0d-4db3-a211-7136c759c266": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ca675512-8c0d-4db3-a211-7136c759c266", + "Name": "W12x152", + "CellId": 82, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b62f0523-7bbb-43b5-9f51-e52e45719a9b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b62f0523-7bbb-43b5-9f51-e52e45719a9b", + "Name": null + }, + "57a4d532-95d8-40d8-8a3c-dadb9b91a0da": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "57a4d532-95d8-40d8-8a3c-dadb9b91a0da", + "Name": "W12x152", + "CellId": 82, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "99a9443c-366b-4fe3-a162-03568add5f0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "99a9443c-366b-4fe3-a162-03568add5f0a", + "Name": null + }, + "72084327-e840-4655-a77f-2871e994016a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "72084327-e840-4655-a77f-2871e994016a", + "Name": "W12x152", + "CellId": 82, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f7f1f50-1aaa-4ef9-9927-767dda547f45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f7f1f50-1aaa-4ef9-9927-767dda547f45", + "Name": null + }, + "985fa069-73da-4cd4-ac80-e591de4cf05c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "985fa069-73da-4cd4-ac80-e591de4cf05c", + "Name": "W12x152", + "CellId": 83, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ec420055-0334-45c8-98f1-6779c70b378a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec420055-0334-45c8-98f1-6779c70b378a", + "Name": null + }, + "2f9f55e3-94c9-48ce-a437-c01fb86bd48b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2f9f55e3-94c9-48ce-a437-c01fb86bd48b", + "Name": "W12x152", + "CellId": 83, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b51973f-d6eb-4581-a6d4-268af1870004": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b51973f-d6eb-4581-a6d4-268af1870004", + "Name": null + }, + "fb5d3aeb-b06a-4636-a922-83aed27a3387": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fb5d3aeb-b06a-4636-a922-83aed27a3387", + "Name": "W12x152", + "CellId": 83, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b4ab9755-d182-4c52-adcd-cc613b4a06f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b4ab9755-d182-4c52-adcd-cc613b4a06f2", + "Name": null + }, + "868f23f3-1290-4469-a2f6-910b831a8d60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "868f23f3-1290-4469-a2f6-910b831a8d60", + "Name": "W12x152", + "CellId": 84, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41291649-1152-4e1a-8409-e383dfcbe338": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41291649-1152-4e1a-8409-e383dfcbe338", + "Name": null + }, + "ebf92b45-666c-4324-b75b-2c14136d32e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ebf92b45-666c-4324-b75b-2c14136d32e1", + "Name": "W12x152", + "CellId": 84, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "abe68cd4-6bae-40e9-8abc-6c2abc977f11": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "abe68cd4-6bae-40e9-8abc-6c2abc977f11", + "Name": null + }, + "8f10cee7-dd74-4dd6-aad3-df3c4c03397c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8f10cee7-dd74-4dd6-aad3-df3c4c03397c", + "Name": "W12x152", + "CellId": 84, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b00d8de5-3502-4844-bcd0-344594843576": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b00d8de5-3502-4844-bcd0-344594843576", + "Name": null + }, + "9445e30c-847e-4c80-97e7-64c8054fe149": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9445e30c-847e-4c80-97e7-64c8054fe149", + "Name": "W12x152", + "CellId": 85, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4d4ba358-61a9-4350-9730-fa258ddfbefe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d4ba358-61a9-4350-9730-fa258ddfbefe", + "Name": null + }, + "db87897e-ef58-4f5e-b0fd-4c151c2ba0c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "db87897e-ef58-4f5e-b0fd-4c151c2ba0c8", + "Name": "W12x152", + "CellId": 85, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7c93273e-adca-4a6e-a724-7f9675976203": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c93273e-adca-4a6e-a724-7f9675976203", + "Name": null + }, + "7fa620a2-b6dc-45ae-9342-cfd6795811a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7fa620a2-b6dc-45ae-9342-cfd6795811a5", + "Name": "W12x152", + "CellId": 86, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4f1a4b96-9ad9-4a15-bee8-89590395f206": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f1a4b96-9ad9-4a15-bee8-89590395f206", + "Name": null + }, + "ba1080b3-b4df-4de2-9a4a-a6a663b76798": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ba1080b3-b4df-4de2-9a4a-a6a663b76798", + "Name": "W12x152", + "CellId": 86, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "20559687-8984-4eb1-8f25-a8b3ad56688d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "20559687-8984-4eb1-8f25-a8b3ad56688d", + "Name": null + }, + "b15a372d-354a-475a-b958-e163e1d920e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b15a372d-354a-475a-b958-e163e1d920e2", + "Name": "W12x152", + "CellId": 86, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5e4bd655-1f7d-474e-b876-8dc2a249a7d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e4bd655-1f7d-474e-b876-8dc2a249a7d9", + "Name": null + }, + "23f16ac2-62c4-48e6-a50c-960b7d2f6751": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "23f16ac2-62c4-48e6-a50c-960b7d2f6751", + "Name": "W12x152", + "CellId": 87, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bda08893-2a23-4f30-9da6-0a4ffb947f7b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bda08893-2a23-4f30-9da6-0a4ffb947f7b", + "Name": null + }, + "f176bd91-c733-492b-ac66-7bb438e3c090": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f176bd91-c733-492b-ac66-7bb438e3c090", + "Name": "W12x152", + "CellId": 87, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cdfc1ab5-6e50-40a0-9c45-e7722fbc3933": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cdfc1ab5-6e50-40a0-9c45-e7722fbc3933", + "Name": null + }, + "09112f5d-ef48-49ba-b91b-04c03d22594f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "09112f5d-ef48-49ba-b91b-04c03d22594f", + "Name": "W12x152", + "CellId": 87, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "89010543-17ad-4758-848d-c8d4877595ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "89010543-17ad-4758-848d-c8d4877595ac", + "Name": null + }, + "94363c3e-a4b8-46da-b129-cb0507f73066": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "94363c3e-a4b8-46da-b129-cb0507f73066", + "Name": "W12x152", + "CellId": 88, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "019d2053-f00f-458a-bb0f-8948b7de9a57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "019d2053-f00f-458a-bb0f-8948b7de9a57", + "Name": null + }, + "b8125327-c8fc-4a48-a65b-a3f7c36e64ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b8125327-c8fc-4a48-a65b-a3f7c36e64ed", + "Name": "W12x152", + "CellId": 88, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b3cc45b-0ed4-40b4-81c4-1b3234085cc7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b3cc45b-0ed4-40b4-81c4-1b3234085cc7", + "Name": null + }, + "81f26160-5a66-4a2f-922d-1b6684694155": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "81f26160-5a66-4a2f-922d-1b6684694155", + "Name": "W12x152", + "CellId": 88, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ae112366-a67d-490a-bd3e-55ed10c9f41e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae112366-a67d-490a-bd3e-55ed10c9f41e", + "Name": null + }, + "d543905f-9bb0-44eb-8362-b7069bdd7f88": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d543905f-9bb0-44eb-8362-b7069bdd7f88", + "Name": "W12x152", + "CellId": 89, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "26a09e4b-04c5-4ec8-9c67-60854b917bfe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "26a09e4b-04c5-4ec8-9c67-60854b917bfe", + "Name": null + }, + "d56f7076-a85d-40da-8d05-a52a58172ebf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d56f7076-a85d-40da-8d05-a52a58172ebf", + "Name": "W12x152", + "CellId": 89, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a774e18b-b2a0-4b07-ab44-6035a8264e3d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a774e18b-b2a0-4b07-ab44-6035a8264e3d", + "Name": null + }, + "eeee4bb5-f8e7-4dc0-ac5d-292f8378964b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "eeee4bb5-f8e7-4dc0-ac5d-292f8378964b", + "Name": "W12x152", + "CellId": 89, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7c118b03-7249-497b-9f90-c6041a4a383d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c118b03-7249-497b-9f90-c6041a4a383d", + "Name": null + }, + "f68066ec-1877-4e38-b50c-36448a79bc89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f68066ec-1877-4e38-b50c-36448a79bc89", + "Name": "W12x152", + "CellId": 90, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7caa3bbb-62c5-4a11-83a6-dd57eb0a4bd4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7caa3bbb-62c5-4a11-83a6-dd57eb0a4bd4", + "Name": null + }, + "20ac14d8-b8e8-4dd2-b07b-ce446884fee7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "20ac14d8-b8e8-4dd2-b07b-ce446884fee7", + "Name": "W12x152", + "CellId": 90, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3a4b5ec0-3a25-4002-b48f-a4be5102b9c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3a4b5ec0-3a25-4002-b48f-a4be5102b9c6", + "Name": null + }, + "38138424-49fb-44e8-9777-235820e76b22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "38138424-49fb-44e8-9777-235820e76b22", + "Name": "W12x152", + "CellId": 91, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b1c0296f-0f88-47e2-b6ae-a6af15dded0a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1c0296f-0f88-47e2-b6ae-a6af15dded0a", + "Name": null + }, + "2fad153e-9477-40fd-a125-7e6376368ae2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2fad153e-9477-40fd-a125-7e6376368ae2", + "Name": "W12x152", + "CellId": 91, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5c6b6dd4-f899-436b-a5b6-a9c46fdce0d2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c6b6dd4-f899-436b-a5b6-a9c46fdce0d2", + "Name": null + }, + "a8a2c8da-7f0c-41f0-9af6-436eda3f16c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a8a2c8da-7f0c-41f0-9af6-436eda3f16c1", + "Name": "W12x152", + "CellId": 91, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c45e9c45-30a2-4a97-9263-3ae640d8372d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c45e9c45-30a2-4a97-9263-3ae640d8372d", + "Name": null + }, + "7cf524c8-fc77-4f27-bca7-473b36d12b1d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7cf524c8-fc77-4f27-bca7-473b36d12b1d", + "Name": "W12x152", + "CellId": 92, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c0ac59dd-60c0-45a5-9ac3-40ffac5b2917": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0ac59dd-60c0-45a5-9ac3-40ffac5b2917", + "Name": null + }, + "ff8a7d3d-6f6c-4fe3-98b8-5a50b5e87068": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ff8a7d3d-6f6c-4fe3-98b8-5a50b5e87068", + "Name": "W12x152", + "CellId": 92, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a83824af-3cc6-488f-84d1-28f7d6216a57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a83824af-3cc6-488f-84d1-28f7d6216a57", + "Name": null + }, + "6a82be05-61ec-4069-b8a4-de89ae3fda0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6a82be05-61ec-4069-b8a4-de89ae3fda0a", + "Name": "W12x152", + "CellId": 92, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4fb0d988-92dd-4e1b-a4f9-03a336a74fd3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4fb0d988-92dd-4e1b-a4f9-03a336a74fd3", + "Name": null + }, + "d7e8efdd-a6ee-4635-9b8c-647d93363dc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "d7e8efdd-a6ee-4635-9b8c-647d93363dc5", + "Name": "W12x152", + "CellId": 93, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7a959eb8-c56a-4b41-9f28-654a87af8109": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7a959eb8-c56a-4b41-9f28-654a87af8109", + "Name": null + }, + "c17fb3d7-9c48-43cc-94b3-bfd7ba0f27d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c17fb3d7-9c48-43cc-94b3-bfd7ba0f27d9", + "Name": "W12x152", + "CellId": 93, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f8a5c277-d7da-47e9-b14c-dec597c481c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8a5c277-d7da-47e9-b14c-dec597c481c5", + "Name": null + }, + "6dd32a3f-72b4-4bb6-8d13-f3d524d3bd66": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "6dd32a3f-72b4-4bb6-8d13-f3d524d3bd66", + "Name": "W12x152", + "CellId": 93, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "09bffa52-dfc0-4b59-9df7-7d176961036c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "09bffa52-dfc0-4b59-9df7-7d176961036c", + "Name": null + }, + "61a79c6e-e17d-4f13-aedc-72f8b9e015be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "61a79c6e-e17d-4f13-aedc-72f8b9e015be", + "Name": "W12x152", + "CellId": 94, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "12d365b6-514a-438c-bc3e-8c202b3e99d4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12d365b6-514a-438c-bc3e-8c202b3e99d4", + "Name": null + }, + "bdd92973-7732-41bb-a80d-a014af1261d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "bdd92973-7732-41bb-a80d-a014af1261d7", + "Name": "W12x152", + "CellId": 94, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a33203aa-e6f9-4a0b-ad0b-42b98347fba7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a33203aa-e6f9-4a0b-ad0b-42b98347fba7", + "Name": null + }, + "fd0237e9-c517-4181-b5f7-8417a7076732": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fd0237e9-c517-4181-b5f7-8417a7076732", + "Name": "W12x152", + "CellId": 94, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "11b132e1-f8f5-4ecd-9797-1e651bc3506e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "11b132e1-f8f5-4ecd-9797-1e651bc3506e", + "Name": null + }, + "88c0bce7-14e9-41f8-a83f-e4e0f1094500": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "88c0bce7-14e9-41f8-a83f-e4e0f1094500", + "Name": "W12x152", + "CellId": 95, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "50ed8ef2-9b42-416e-b21d-47f4ea876549": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "50ed8ef2-9b42-416e-b21d-47f4ea876549", + "Name": null + }, + "06e6dcb7-08ef-4fec-8a5d-c6713d48a875": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "06e6dcb7-08ef-4fec-8a5d-c6713d48a875", + "Name": "W12x152", + "CellId": 95, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e97f2ad6-2970-41dd-a919-28efba655418": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e97f2ad6-2970-41dd-a919-28efba655418", + "Name": null + }, + "dbde0c7d-fced-4a97-af72-7f94e2924fae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dbde0c7d-fced-4a97-af72-7f94e2924fae", + "Name": "W12x152", + "CellId": 96, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "301e84bb-be71-41d9-81ea-f571b7394ae3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "301e84bb-be71-41d9-81ea-f571b7394ae3", + "Name": null + }, + "c809277a-ba5f-464a-b7bf-d048b82ab525": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c809277a-ba5f-464a-b7bf-d048b82ab525", + "Name": "W12x152", + "CellId": 96, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3122c236-62ac-4a60-92cb-95e4f4e70970": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3122c236-62ac-4a60-92cb-95e4f4e70970", + "Name": null + }, + "8751bfbc-a4f5-48a4-b6a5-c2ed184cb1a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "8751bfbc-a4f5-48a4-b6a5-c2ed184cb1a1", + "Name": "W12x152", + "CellId": 96, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bdd2b692-5881-4c1a-af43-e655599a9f44": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bdd2b692-5881-4c1a-af43-e655599a9f44", + "Name": null + }, + "a74b840c-153b-4020-bdb7-9f759e19c8f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a74b840c-153b-4020-bdb7-9f759e19c8f3", + "Name": "W12x152", + "CellId": 97, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "244ad100-5f95-4498-ba8f-333fe0c58bd5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "244ad100-5f95-4498-ba8f-333fe0c58bd5", + "Name": null + }, + "2575bbc0-9b83-4291-ae23-20c037d2ee36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "2575bbc0-9b83-4291-ae23-20c037d2ee36", + "Name": "W12x152", + "CellId": 97, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "837e1ce8-893c-401a-85d4-889df3853395": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "837e1ce8-893c-401a-85d4-889df3853395", + "Name": null + }, + "587a874e-df36-47f7-8635-7987ac97e02d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "587a874e-df36-47f7-8635-7987ac97e02d", + "Name": "W12x152", + "CellId": 97, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44b647e6-c7d6-4b75-aaee-59abc10fb6fa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44b647e6-c7d6-4b75-aaee-59abc10fb6fa", + "Name": null + }, + "9c084920-181e-41a4-9ad7-c799fa151ad0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "9c084920-181e-41a4-9ad7-c799fa151ad0", + "Name": "W12x152", + "CellId": 98, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "48e1b4c6-e8e1-4372-88b2-40b185215f1e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "48e1b4c6-e8e1-4372-88b2-40b185215f1e", + "Name": null + }, + "94db9086-a9aa-4033-9d5b-169625df35d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "94db9086-a9aa-4033-9d5b-169625df35d1", + "Name": "W12x152", + "CellId": 98, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1283e5e3-a934-4884-b3aa-b490828f6a71": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1283e5e3-a934-4884-b3aa-b490828f6a71", + "Name": null + }, + "a3b42194-d84a-417e-b15c-fb4bc8b51172": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "a3b42194-d84a-417e-b15c-fb4bc8b51172", + "Name": "W12x152", + "CellId": 98, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d06b1a55-4a6f-43a9-88f1-def7e9245cc1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d06b1a55-4a6f-43a9-88f1-def7e9245cc1", + "Name": null + }, + "12534ec3-e53c-4e63-87ee-c0e95681540e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "12534ec3-e53c-4e63-87ee-c0e95681540e", + "Name": "W12x152", + "CellId": 99, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1e55747-a38f-454a-a77e-7c275dc8c5a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1e55747-a38f-454a-a77e-7c275dc8c5a6", + "Name": null + }, + "7323d451-4b4a-490a-bb76-5095e26e7339": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "7323d451-4b4a-490a-bb76-5095e26e7339", + "Name": "W12x152", + "CellId": 99, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5a07d18e-75d2-4595-a2a7-431a9779534a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5a07d18e-75d2-4595-a2a7-431a9779534a", + "Name": null + }, + "c13167f9-cf5f-4b2b-94cf-fcee1f813e84": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c13167f9-cf5f-4b2b-94cf-fcee1f813e84", + "Name": "W12x152", + "CellId": 99, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8caca0eb-72e4-4b43-9770-59cb5a5a0eba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8caca0eb-72e4-4b43-9770-59cb5a5a0eba", + "Name": null + }, + "41497c5d-0a8f-4378-a1ae-1a37cfc72681": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "41497c5d-0a8f-4378-a1ae-1a37cfc72681", + "Name": "W12x152", + "CellId": 100, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "94298309-a51a-4a9d-b1b8-d8061f7dc00f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "94298309-a51a-4a9d-b1b8-d8061f7dc00f", + "Name": null + }, + "837d20c4-4135-4375-a81c-becb22b2a525": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "837d20c4-4135-4375-a81c-becb22b2a525", + "Name": "W12x152", + "CellId": 100, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "340ced0e-99c1-4c32-ac13-86ff3b8edc1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "340ced0e-99c1-4c32-ac13-86ff3b8edc1b", + "Name": null + }, + "c32f35f1-02c5-435d-aa77-702076dd9f5e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c32f35f1-02c5-435d-aa77-702076dd9f5e", + "Name": "W12x152", + "CellId": 101, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "38358a67-2305-43fd-bdd4-430cc4e7d185": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "38358a67-2305-43fd-bdd4-430cc4e7d185", + "Name": null + }, + "dde3e699-9b9b-4bb6-8fb2-36efc017f185": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dde3e699-9b9b-4bb6-8fb2-36efc017f185", + "Name": "W12x152", + "CellId": 101, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ffd2a201-49f3-4313-b03a-0d3fcf53f692": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ffd2a201-49f3-4313-b03a-0d3fcf53f692", + "Name": null + }, + "fa768417-3f39-4dd0-9ef7-a5abfd9cad8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fa768417-3f39-4dd0-9ef7-a5abfd9cad8d", + "Name": "W12x152", + "CellId": 101, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "715abb32-aa67-4fa5-9a71-3a0e2c9cc34d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "715abb32-aa67-4fa5-9a71-3a0e2c9cc34d", + "Name": null + }, + "fcfc3fdc-cc09-4bb0-9301-3107b2ec09b5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "fcfc3fdc-cc09-4bb0-9301-3107b2ec09b5", + "Name": "W12x152", + "CellId": 102, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b12350f1-93ae-4b4e-aef9-a9d11f1cc70b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b12350f1-93ae-4b4e-aef9-a9d11f1cc70b", + "Name": null + }, + "1c3e85bc-eaf8-4789-917d-ebaacc3e04ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1c3e85bc-eaf8-4789-917d-ebaacc3e04ed", + "Name": "W12x152", + "CellId": 102, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7c3fa944-3bca-4553-bb3d-3540c4ef9c3f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c3fa944-3bca-4553-bb3d-3540c4ef9c3f", + "Name": null + }, + "c2bb8067-8ce2-4716-b0ea-9e51c0de32bf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "c2bb8067-8ce2-4716-b0ea-9e51c0de32bf", + "Name": "W12x152", + "CellId": 102, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f47c0ba6-5258-4b98-9fc9-d55fe50ca776": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f47c0ba6-5258-4b98-9fc9-d55fe50ca776", + "Name": null + }, + "5e1921c2-f48e-46f3-b70a-9f96018cdef6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "5e1921c2-f48e-46f3-b70a-9f96018cdef6", + "Name": "W12x152", + "CellId": 103, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "249e9edd-f462-4649-a02d-c0b800b5fba0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "249e9edd-f462-4649-a02d-c0b800b5fba0", + "Name": null + }, + "907e0a99-3385-4927-9c5c-c8f4c2cc8f99": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "907e0a99-3385-4927-9c5c-c8f4c2cc8f99", + "Name": "W12x152", + "CellId": 103, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "12109cc3-adb8-4d14-9c58-9f277a41a3d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12109cc3-adb8-4d14-9c58-9f277a41a3d6", + "Name": null + }, + "66065b78-d1bd-4579-ae78-8fc8846db8b9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "66065b78-d1bd-4579-ae78-8fc8846db8b9", + "Name": "W12x152", + "CellId": 103, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dd464f5c-3bbc-4f04-8ebb-5662c92e7145": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd464f5c-3bbc-4f04-8ebb-5662c92e7145", + "Name": null + }, + "e4a57ee6-905f-4152-89f9-0fff0df94503": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e4a57ee6-905f-4152-89f9-0fff0df94503", + "Name": "W12x152", + "CellId": 104, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7a0b6646-0627-438a-a68c-f0a10ec10b23": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7a0b6646-0627-438a-a68c-f0a10ec10b23", + "Name": null + }, + "dd6302d9-223a-4ec1-811b-0f230ed02c6d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "dd6302d9-223a-4ec1-811b-0f230ed02c6d", + "Name": "W12x152", + "CellId": 104, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8777b188-5cd0-4d77-a99d-173aa1fd47a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8777b188-5cd0-4d77-a99d-173aa1fd47a9", + "Name": null + }, + "742a562b-b1a4-41ae-89aa-0de5910f5980": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "742a562b-b1a4-41ae-89aa-0de5910f5980", + "Name": "W12x152", + "CellId": 104, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b77f177f-e06c-4639-8871-a97868414849": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b77f177f-e06c-4639-8871-a97868414849", + "Name": null + }, + "b8427b4d-8d2d-420a-bd4d-67a336b332c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b8427b4d-8d2d-420a-bd4d-67a336b332c3", + "Name": "W12x152", + "CellId": 105, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5c3a9963-457b-4660-a69a-f04b7b11a6c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c3a9963-457b-4660-a69a-f04b7b11a6c1", + "Name": null + }, + "b0a9d90f-95e7-4ec6-8a95-624982f903ad": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "b0a9d90f-95e7-4ec6-8a95-624982f903ad", + "Name": "W12x152", + "CellId": 105, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "64f6e482-c578-447d-be9c-dfae36efde83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64f6e482-c578-447d-be9c-dfae36efde83", + "Name": null + }, + "718c13ae-c1f6-4e2f-8cbb-a846a5c63b64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "718c13ae-c1f6-4e2f-8cbb-a846a5c63b64", + "Name": "W12x152", + "CellId": 106, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "285a7451-1c3a-4da8-871b-ca1247e01a71": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "285a7451-1c3a-4da8-871b-ca1247e01a71", + "Name": null + }, + "f5f480e6-4e53-4f6b-8960-1e30935b2952": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "f5f480e6-4e53-4f6b-8960-1e30935b2952", + "Name": "W12x152", + "CellId": 106, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "25911c27-fb94-440e-b11c-e9d134dd2812": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25911c27-fb94-440e-b11c-e9d134dd2812", + "Name": null + }, + "e3302218-aba3-4732-a59c-97854f2f5e90": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e3302218-aba3-4732-a59c-97854f2f5e90", + "Name": "W12x152", + "CellId": 106, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9f9777f8-e27d-454c-8e3a-b836d0bef3f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f9777f8-e27d-454c-8e3a-b836d0bef3f3", + "Name": null + }, + "e5704250-dbbd-4aec-b4c1-94fbc6d26a58": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e5704250-dbbd-4aec-b4c1-94fbc6d26a58", + "Name": "W12x152", + "CellId": 107, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8127a497-ec7e-4bbb-aff7-98b5a59f5ae3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8127a497-ec7e-4bbb-aff7-98b5a59f5ae3", + "Name": null + }, + "98193cfe-efc4-4104-907b-c312a5e30327": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "98193cfe-efc4-4104-907b-c312a5e30327", + "Name": "W12x152", + "CellId": 107, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b825108-6ce9-46a7-b339-0496bf4a68c4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b825108-6ce9-46a7-b339-0496bf4a68c4", + "Name": null + }, + "e2ebe55b-e2c2-485b-9bd5-9e0163ccfce0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "e2ebe55b-e2c2-485b-9bd5-9e0163ccfce0", + "Name": "W12x152", + "CellId": 107, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "360e5e74-6dc8-439b-9c96-13b80f97ae57": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "360e5e74-6dc8-439b-9c96-13b80f97ae57", + "Name": null + }, + "279ee5d6-8a43-42a0-98d0-70ac7620039d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "279ee5d6-8a43-42a0-98d0-70ac7620039d", + "Name": "W12x152", + "CellId": 108, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1f18dd89-bdeb-4b7f-980f-49827657515a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1f18dd89-bdeb-4b7f-980f-49827657515a", + "Name": null + }, + "015619c5-7b42-48e9-93f5-bd19057da6f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "015619c5-7b42-48e9-93f5-bd19057da6f3", + "Name": "W12x152", + "CellId": 108, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7e58e126-ccfb-40d1-b0ac-9552db9f183a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e58e126-ccfb-40d1-b0ac-9552db9f183a", + "Name": null + }, + "1276a214-acd2-414c-aa82-bc21279c3894": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1276a214-acd2-414c-aa82-bc21279c3894", + "Name": "W12x152", + "CellId": 108, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fbc84c78-b486-4653-85af-48fe69677590": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbc84c78-b486-4653-85af-48fe69677590", + "Name": null + }, + "946cd615-5389-4aa3-b4f5-2594e713a89b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "946cd615-5389-4aa3-b4f5-2594e713a89b", + "Name": "W12x152", + "CellId": 109, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "46635043-5e75-4a5e-81da-d8ce4b515cfb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "46635043-5e75-4a5e-81da-d8ce4b515cfb", + "Name": null + }, + "27b4d720-f992-4be6-bec2-6bda611f469b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "27b4d720-f992-4be6-bec2-6bda611f469b", + "Name": "W12x152", + "CellId": 109, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "254316b8-8cdf-45ef-83b8-a156764589a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "254316b8-8cdf-45ef-83b8-a156764589a2", + "Name": null + }, + "1e5253b9-9805-4b4d-903f-e5ed051330eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1e5253b9-9805-4b4d-903f-e5ed051330eb", + "Name": "W12x152", + "CellId": 109, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e603e264-3157-4c44-a587-f888c3b9546c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 4.5 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e603e264-3157-4c44-a587-f888c3b9546c", + "Name": null + }, + "1528be08-697e-43ca-984e-1ebb3b76422d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "1528be08-697e-43ca-984e-1ebb3b76422d", + "Name": "W12x152", + "CellId": 110, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9ab84336-afb3-4b62-9bf3-8ef5e7bbe326": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9ab84336-afb3-4b62-9bf3-8ef5e7bbe326", + "Name": null + }, + "ab875dfb-e8ab-4334-94f3-a5a14abe9807": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 4.5 + ] + } + }, + "Id": "ab875dfb-e8ab-4334-94f3-a5a14abe9807", + "Name": "W12x152", + "CellId": 110, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4f30ea0b-dc40-44f6-a292-dc8e1c1a8db3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 4.5 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 4.5 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4f30ea0b-dc40-44f6-a292-dc8e1c1a8db3", + "Name": null + }, + "a423ed06-99e1-42d6-beae-b17bcf5ea424": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a423ed06-99e1-42d6-beae-b17bcf5ea424", + "Name": "W12x152", + "CellId": 111, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "bc7f89f0-a791-464a-8d07-4cfa1a1234e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 8.35 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bc7f89f0-a791-464a-8d07-4cfa1a1234e4", + "Name": null + }, + "56361388-1c04-4e09-80df-543d9114ac7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "56361388-1c04-4e09-80df-543d9114ac7c", + "Name": "W12x152", + "CellId": 111, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5f18ee85-cf99-4e38-ae9c-b6851302dcb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 8.35 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f18ee85-cf99-4e38-ae9c-b6851302dcb4", + "Name": null + }, + "8733f127-cbf9-4a15-ab26-7c5576271c6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8733f127-cbf9-4a15-ab26-7c5576271c6f", + "Name": "W12x152", + "CellId": 112, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d37e4e08-4442-48a5-88df-545e985e24eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d37e4e08-4442-48a5-88df-545e985e24eb", + "Name": null + }, + "02ba687d-8d23-4da1-bb0d-be8eb763ef39": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "02ba687d-8d23-4da1-bb0d-be8eb763ef39", + "Name": "W12x152", + "CellId": 112, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1e460d51-baf0-4571-b9d1-13aa2a764cea": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1e460d51-baf0-4571-b9d1-13aa2a764cea", + "Name": null + }, + "90b5932e-9f38-4068-8c56-54950b80f167": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "90b5932e-9f38-4068-8c56-54950b80f167", + "Name": "W12x152", + "CellId": 112, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f20d27b7-4f3b-4e4b-929c-24f59f38d9aa": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f20d27b7-4f3b-4e4b-929c-24f59f38d9aa", + "Name": null + }, + "857df830-8fdb-4c52-962d-e57805ed1d2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "857df830-8fdb-4c52-962d-e57805ed1d2a", + "Name": "W12x152", + "CellId": 113, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "611cb493-a385-40c7-9c17-76298ee9168e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "611cb493-a385-40c7-9c17-76298ee9168e", + "Name": null + }, + "896a4e50-0e0b-4f5a-9ae3-5bb67c7f1d10": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "896a4e50-0e0b-4f5a-9ae3-5bb67c7f1d10", + "Name": "W12x152", + "CellId": 113, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5500c2e2-9089-4836-9f66-1dbb7455e0b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5500c2e2-9089-4836-9f66-1dbb7455e0b5", + "Name": null + }, + "f65580f7-7b51-45ac-ba5b-0323f2f670a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f65580f7-7b51-45ac-ba5b-0323f2f670a9", + "Name": "W12x152", + "CellId": 115, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "be3474d4-d8d1-42b5-bc87-8d940f84d0a7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "be3474d4-d8d1-42b5-bc87-8d940f84d0a7", + "Name": null + }, + "d0c9953e-29bb-446c-b923-08a4a5ca451c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d0c9953e-29bb-446c-b923-08a4a5ca451c", + "Name": "W12x152", + "CellId": 115, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "32d0097b-7d5f-4ae4-8247-591467691595": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32d0097b-7d5f-4ae4-8247-591467691595", + "Name": null + }, + "2f1f85e0-8f06-417d-bae2-2d0f9eb275fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2f1f85e0-8f06-417d-bae2-2d0f9eb275fd", + "Name": "W12x152", + "CellId": 115, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44016be7-320a-45c1-be39-517e8733d20e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44016be7-320a-45c1-be39-517e8733d20e", + "Name": null + }, + "0c593906-6b4d-4f14-a928-bdf550b68c15": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0c593906-6b4d-4f14-a928-bdf550b68c15", + "Name": "W12x152", + "CellId": 116, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "69bfc7b5-9ce3-4291-bf16-640e28e08e16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "69bfc7b5-9ce3-4291-bf16-640e28e08e16", + "Name": null + }, + "e8f3540b-64ed-495c-bd88-4a61d2ae72ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e8f3540b-64ed-495c-bd88-4a61d2ae72ee", + "Name": "W12x152", + "CellId": 116, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "77edd577-d772-4e3f-8c66-bd827b65b59c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "77edd577-d772-4e3f-8c66-bd827b65b59c", + "Name": null + }, + "d82c5d2b-1601-4074-8f11-0e34b3a86249": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d82c5d2b-1601-4074-8f11-0e34b3a86249", + "Name": "W12x152", + "CellId": 116, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f8c8f74a-8be1-46ff-8852-d45af7b79009": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8c8f74a-8be1-46ff-8852-d45af7b79009", + "Name": null + }, + "fce5fbc7-0e51-4781-97ba-841e5675134c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fce5fbc7-0e51-4781-97ba-841e5675134c", + "Name": "W12x152", + "CellId": 117, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "518cef14-f36c-48dc-b139-62d5ed69d4dc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "518cef14-f36c-48dc-b139-62d5ed69d4dc", + "Name": null + }, + "1d951d35-eac0-4da8-8036-1af34ad0a51b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1d951d35-eac0-4da8-8036-1af34ad0a51b", + "Name": "W12x152", + "CellId": 117, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b643fb07-f8e8-48b2-bf9d-558ef2651f0f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b643fb07-f8e8-48b2-bf9d-558ef2651f0f", + "Name": null + }, + "8c26ad90-e73c-4392-ae50-38dddecad8e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8c26ad90-e73c-4392-ae50-38dddecad8e8", + "Name": "W12x152", + "CellId": 118, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "6f7c5bf8-783c-47fe-8774-1c748bf4cf8a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 8.35 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6f7c5bf8-783c-47fe-8774-1c748bf4cf8a", + "Name": null + }, + "28c391f2-cd87-4fe8-b2e9-a03fa237d9d7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "28c391f2-cd87-4fe8-b2e9-a03fa237d9d7", + "Name": "W12x152", + "CellId": 118, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "6c4ea472-e246-4e45-a818-de1bd5ae8ea7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c4ea472-e246-4e45-a818-de1bd5ae8ea7", + "Name": null + }, + "d5df4dff-9864-4d1a-a9d9-091075c341fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d5df4dff-9864-4d1a-a9d9-091075c341fb", + "Name": "W12x152", + "CellId": 119, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "eee6ec5c-aa20-462d-9060-25b949d8a67d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eee6ec5c-aa20-462d-9060-25b949d8a67d", + "Name": null + }, + "a82f0c68-8977-4ba1-b4e2-7ff7a9140e13": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a82f0c68-8977-4ba1-b4e2-7ff7a9140e13", + "Name": "W12x152", + "CellId": 119, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "833ad1f7-130a-44bd-bc9a-8edb55d458f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "833ad1f7-130a-44bd-bc9a-8edb55d458f5", + "Name": null + }, + "71694e7d-8a93-4ff5-a2de-47f6ad610dc2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "71694e7d-8a93-4ff5-a2de-47f6ad610dc2", + "Name": "W12x152", + "CellId": 119, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "695d93e5-1ab5-41a3-b3f7-7df8dc9c0885": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "695d93e5-1ab5-41a3-b3f7-7df8dc9c0885", + "Name": null + }, + "6237770a-e419-4c62-a951-5665545981bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6237770a-e419-4c62-a951-5665545981bc", + "Name": "W12x152", + "CellId": 120, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b3b2a92f-6c75-4da6-b20f-5ec0dab40003": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b3b2a92f-6c75-4da6-b20f-5ec0dab40003", + "Name": null + }, + "191d0038-cfaa-44f4-ba51-4c09f362a85f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "191d0038-cfaa-44f4-ba51-4c09f362a85f", + "Name": "W12x152", + "CellId": 120, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dea82b25-e735-46cf-afac-123dbc3aef09": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dea82b25-e735-46cf-afac-123dbc3aef09", + "Name": null + }, + "e827cbb4-f386-47d5-88cc-69811d46dffc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e827cbb4-f386-47d5-88cc-69811d46dffc", + "Name": "W12x152", + "CellId": 120, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2e3e9650-0b65-44c0-b7fb-f4e7e43078f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e3e9650-0b65-44c0-b7fb-f4e7e43078f1", + "Name": null + }, + "fb82c9c8-7ee1-4d1f-b9aa-8b97b0a9ee63": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fb82c9c8-7ee1-4d1f-b9aa-8b97b0a9ee63", + "Name": "W12x152", + "CellId": 121, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5cb3b8e4-0eae-4a4d-8843-c09ec0f6ff66": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5cb3b8e4-0eae-4a4d-8843-c09ec0f6ff66", + "Name": null + }, + "0516e687-2a69-4d01-bd53-e363f229b0d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0516e687-2a69-4d01-bd53-e363f229b0d8", + "Name": "W12x152", + "CellId": 121, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "fbc450c9-551e-4bde-b3f5-90f8e8541139": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbc450c9-551e-4bde-b3f5-90f8e8541139", + "Name": null + }, + "9c7c4f27-b4b4-4462-9dc4-e1c2194abb4e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9c7c4f27-b4b4-4462-9dc4-e1c2194abb4e", + "Name": "W12x152", + "CellId": 122, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9a80b62b-e8ef-450d-8d0c-f69949cae202": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a80b62b-e8ef-450d-8d0c-f69949cae202", + "Name": null + }, + "aa2ddbf3-8985-43cb-8057-8cff39962960": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "aa2ddbf3-8985-43cb-8057-8cff39962960", + "Name": "W12x152", + "CellId": 122, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4db49f8a-46fa-4566-99bb-f8723e1459b0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4db49f8a-46fa-4566-99bb-f8723e1459b0", + "Name": null + }, + "b0bb395b-2713-460c-b1ec-0928fc5553fb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b0bb395b-2713-460c-b1ec-0928fc5553fb", + "Name": "W12x152", + "CellId": 122, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "409a40e0-0936-44bb-b832-f400573122f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "409a40e0-0936-44bb-b832-f400573122f2", + "Name": null + }, + "bf1c6115-21dd-4602-a869-4f7fec9867eb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bf1c6115-21dd-4602-a869-4f7fec9867eb", + "Name": "W12x152", + "CellId": 123, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ae89ef64-85ab-4085-b80b-ed39a51cb81c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ae89ef64-85ab-4085-b80b-ed39a51cb81c", + "Name": null + }, + "273fa14f-8b08-4881-825e-5c4afef3faf3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "273fa14f-8b08-4881-825e-5c4afef3faf3", + "Name": "W12x152", + "CellId": 123, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "33bc06ed-a28d-4bea-b8c4-fa1a635e8bb1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "33bc06ed-a28d-4bea-b8c4-fa1a635e8bb1", + "Name": null + }, + "5331748d-3b27-4f5e-953f-d6609ec8347c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5331748d-3b27-4f5e-953f-d6609ec8347c", + "Name": "W12x152", + "CellId": 123, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9de88070-18c3-4b09-a7b1-9a98c800825b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9de88070-18c3-4b09-a7b1-9a98c800825b", + "Name": null + }, + "4d6c5141-cf5d-4474-9637-532c7c5f840c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4d6c5141-cf5d-4474-9637-532c7c5f840c", + "Name": "W12x152", + "CellId": 124, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b9226a64-566b-46b7-983d-f83b96df4180": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9226a64-566b-46b7-983d-f83b96df4180", + "Name": null + }, + "b5ced065-40f8-4663-8e94-14db58298dd9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b5ced065-40f8-4663-8e94-14db58298dd9", + "Name": "W12x152", + "CellId": 124, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44a4cf96-66c1-41a4-95e1-3e69772bb66f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44a4cf96-66c1-41a4-95e1-3e69772bb66f", + "Name": null + }, + "97959b76-12a3-45fc-aa7d-d60065afc3a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "97959b76-12a3-45fc-aa7d-d60065afc3a6", + "Name": "W12x152", + "CellId": 124, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9677c504-046b-4cf0-b4f0-8f2d57af8d27": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9677c504-046b-4cf0-b4f0-8f2d57af8d27", + "Name": null + }, + "48347742-67d1-40b6-b50c-dbd95a6cf6bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "48347742-67d1-40b6-b50c-dbd95a6cf6bc", + "Name": "W12x152", + "CellId": 125, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a8514b31-e653-4814-801b-c53ebfc222be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a8514b31-e653-4814-801b-c53ebfc222be", + "Name": null + }, + "4223af6b-0754-427e-afa4-b5a1305e1c2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4223af6b-0754-427e-afa4-b5a1305e1c2e", + "Name": "W12x152", + "CellId": 125, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3550462a-652f-4130-a17b-db4ca57be8b1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3550462a-652f-4130-a17b-db4ca57be8b1", + "Name": null + }, + "b1aacd16-71ab-4ff3-9b4c-1dbb543b9b40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b1aacd16-71ab-4ff3-9b4c-1dbb543b9b40", + "Name": "W12x152", + "CellId": 126, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e6d78656-1e3b-45a3-be8a-9a5ad0418714": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 8.35 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6d78656-1e3b-45a3-be8a-9a5ad0418714", + "Name": null + }, + "79beb561-f861-4c6b-99e8-fb9533aed615": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "79beb561-f861-4c6b-99e8-fb9533aed615", + "Name": "W12x152", + "CellId": 126, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "51a1d733-53b6-4897-a648-e378cf7f42c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 8.35 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "51a1d733-53b6-4897-a648-e378cf7f42c5", + "Name": null + }, + "314aa189-d8f3-4d1f-a844-f385f987cd1c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "314aa189-d8f3-4d1f-a844-f385f987cd1c", + "Name": "W12x152", + "CellId": 127, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c00e9684-ec4c-49f7-91c4-fc8af7b5ccb5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c00e9684-ec4c-49f7-91c4-fc8af7b5ccb5", + "Name": null + }, + "deef9925-79d2-4c07-bbe0-0d0646b64498": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "deef9925-79d2-4c07-bbe0-0d0646b64498", + "Name": "W12x152", + "CellId": 127, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e4466be5-257d-456e-94ba-e8a1e58ad314": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4466be5-257d-456e-94ba-e8a1e58ad314", + "Name": null + }, + "d54c94ea-3cf3-4582-93fa-13f93901f01e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d54c94ea-3cf3-4582-93fa-13f93901f01e", + "Name": "W12x152", + "CellId": 127, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "47ceae02-c01c-4bec-815e-007b3f52912c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47ceae02-c01c-4bec-815e-007b3f52912c", + "Name": null + }, + "e1e4db56-cb24-443d-afcd-7172365b03c0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e1e4db56-cb24-443d-afcd-7172365b03c0", + "Name": "W12x152", + "CellId": 128, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dee1ee2f-07aa-41f9-9bea-33192597af42": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dee1ee2f-07aa-41f9-9bea-33192597af42", + "Name": null + }, + "e6b2d3e7-eb42-43b5-8358-0fbb780ad9d8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e6b2d3e7-eb42-43b5-8358-0fbb780ad9d8", + "Name": "W12x152", + "CellId": 128, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a40e3de5-84e5-4d16-88ab-f0bbfd7d638c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a40e3de5-84e5-4d16-88ab-f0bbfd7d638c", + "Name": null + }, + "b92465d3-94f9-48b9-86df-cd0e69c5d11c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b92465d3-94f9-48b9-86df-cd0e69c5d11c", + "Name": "W12x152", + "CellId": 128, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a99b78b9-1a53-4298-a83d-ecdc224d6896": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a99b78b9-1a53-4298-a83d-ecdc224d6896", + "Name": null + }, + "80edf25f-40f1-4da4-842b-ddafbd72ba07": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "80edf25f-40f1-4da4-842b-ddafbd72ba07", + "Name": "W12x152", + "CellId": 129, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15442d84-5cd2-4573-a4e1-8640a0c7a685": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15442d84-5cd2-4573-a4e1-8640a0c7a685", + "Name": null + }, + "d0fd8fcc-22e2-46b5-8a2a-bad5dafbfa6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d0fd8fcc-22e2-46b5-8a2a-bad5dafbfa6f", + "Name": "W12x152", + "CellId": 129, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1d2e163-4b56-45e0-a2df-4a3b842cbb75": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1d2e163-4b56-45e0-a2df-4a3b842cbb75", + "Name": null + }, + "dee68dad-8c4b-40b8-8937-3b236cb92879": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "dee68dad-8c4b-40b8-8937-3b236cb92879", + "Name": "W12x152", + "CellId": 129, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3c38fafc-0ba4-46ae-a608-1bbb1118917f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c38fafc-0ba4-46ae-a608-1bbb1118917f", + "Name": null + }, + "e012fa67-1ed0-4853-a1ed-24d472b3bcc8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e012fa67-1ed0-4853-a1ed-24d472b3bcc8", + "Name": "W12x152", + "CellId": 130, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "113811da-2a7c-4a87-91d0-d1716b0832d9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "113811da-2a7c-4a87-91d0-d1716b0832d9", + "Name": null + }, + "e2355a3d-bb3b-4f99-807b-d252ae117df9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e2355a3d-bb3b-4f99-807b-d252ae117df9", + "Name": "W12x152", + "CellId": 130, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "08462a57-829e-46c2-96d9-d744b9346d2c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "08462a57-829e-46c2-96d9-d744b9346d2c", + "Name": null + }, + "f18e6cac-b014-4a2e-8a6b-be7be4625497": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f18e6cac-b014-4a2e-8a6b-be7be4625497", + "Name": "W12x152", + "CellId": 131, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "31820af5-195c-4604-8874-d121d7800c4a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "31820af5-195c-4604-8874-d121d7800c4a", + "Name": null + }, + "9ce09f8c-9cd5-4051-a30a-06e7f696e29b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9ce09f8c-9cd5-4051-a30a-06e7f696e29b", + "Name": "W12x152", + "CellId": 131, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "57a9a5ad-f8c2-41eb-bcee-a92268194699": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "57a9a5ad-f8c2-41eb-bcee-a92268194699", + "Name": null + }, + "443ebff2-6f6a-49ea-9a47-20679ac56570": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "443ebff2-6f6a-49ea-9a47-20679ac56570", + "Name": "W12x152", + "CellId": 131, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4ce9179d-e337-41f3-8260-5ab28efc75e9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ce9179d-e337-41f3-8260-5ab28efc75e9", + "Name": null + }, + "fd3a4bc1-791b-4368-b0dc-8f1f3e33c805": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fd3a4bc1-791b-4368-b0dc-8f1f3e33c805", + "Name": "W12x152", + "CellId": 132, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1fab71e0-db8c-4a85-a8ff-e2ade6df39c8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1fab71e0-db8c-4a85-a8ff-e2ade6df39c8", + "Name": null + }, + "6bf0e4ac-daec-4d78-98a2-5af9de6ca547": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6bf0e4ac-daec-4d78-98a2-5af9de6ca547", + "Name": "W12x152", + "CellId": 132, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "965e6ec5-8f58-4e92-a29f-96525af40a5e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "965e6ec5-8f58-4e92-a29f-96525af40a5e", + "Name": null + }, + "7aab72f0-9bbd-4acd-8e3f-b2a213d91372": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "7aab72f0-9bbd-4acd-8e3f-b2a213d91372", + "Name": "W12x152", + "CellId": 132, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3c200b98-5a8e-4aeb-85c4-ce00089a4fda": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3c200b98-5a8e-4aeb-85c4-ce00089a4fda", + "Name": null + }, + "b189e315-3852-4b8e-8d53-655974713495": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b189e315-3852-4b8e-8d53-655974713495", + "Name": "W12x152", + "CellId": 133, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f64bc09a-fb38-43a9-8d5c-cf6789e4d70a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f64bc09a-fb38-43a9-8d5c-cf6789e4d70a", + "Name": null + }, + "c653d702-89cb-4da0-8c97-245e855ce740": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c653d702-89cb-4da0-8c97-245e855ce740", + "Name": "W12x152", + "CellId": 133, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "55f502f9-f8c7-487e-b1f7-365362fa5b89": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55f502f9-f8c7-487e-b1f7-365362fa5b89", + "Name": null + }, + "f1a71c3c-44f4-4a34-9da7-dea9271fb18b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f1a71c3c-44f4-4a34-9da7-dea9271fb18b", + "Name": "W12x152", + "CellId": 133, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "14054fed-e391-42a6-89b4-70b58d1198a9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14054fed-e391-42a6-89b4-70b58d1198a9", + "Name": null + }, + "2db75b9a-e385-4d91-ad5d-718e0928d9ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2db75b9a-e385-4d91-ad5d-718e0928d9ff", + "Name": "W12x152", + "CellId": 134, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ea4498c0-85a0-4acb-992b-c841920caf6f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ea4498c0-85a0-4acb-992b-c841920caf6f", + "Name": null + }, + "4109e616-84cd-437b-90ed-8e0321fc42cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "4109e616-84cd-437b-90ed-8e0321fc42cd", + "Name": "W12x152", + "CellId": 134, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e8abdc9e-e865-465d-bd76-f24da225b216": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e8abdc9e-e865-465d-bd76-f24da225b216", + "Name": null + }, + "ba9f3b69-ff77-49a3-b6a6-7bcd39f39db4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ba9f3b69-ff77-49a3-b6a6-7bcd39f39db4", + "Name": "W12x152", + "CellId": 134, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "267b785c-f9b1-4e46-90d8-3d799cfa9f01": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "267b785c-f9b1-4e46-90d8-3d799cfa9f01", + "Name": null + }, + "b15a1f9f-8b18-460b-b5cb-45cd7691b98b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b15a1f9f-8b18-460b-b5cb-45cd7691b98b", + "Name": "W12x152", + "CellId": 135, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c15b9fae-76b9-42eb-91e1-4156b4845187": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c15b9fae-76b9-42eb-91e1-4156b4845187", + "Name": null + }, + "65b61764-95e8-430f-af44-9b70989925f1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "65b61764-95e8-430f-af44-9b70989925f1", + "Name": "W12x152", + "CellId": 135, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "dfcb6340-3553-481b-95bd-c589823ec345": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dfcb6340-3553-481b-95bd-c589823ec345", + "Name": null + }, + "44d835f6-abd6-4f56-a3af-61120c80a4e9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "44d835f6-abd6-4f56-a3af-61120c80a4e9", + "Name": "W12x152", + "CellId": 136, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2ff8c2de-88a9-4ec8-b727-b92d9c8684f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2ff8c2de-88a9-4ec8-b727-b92d9c8684f1", + "Name": null + }, + "111a317d-c187-433c-bcdf-cf38e0c0919f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "111a317d-c187-433c-bcdf-cf38e0c0919f", + "Name": "W12x152", + "CellId": 136, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7615eab2-f3da-4815-b0c0-b599f22aa45b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7615eab2-f3da-4815-b0c0-b599f22aa45b", + "Name": null + }, + "03daab14-9d3e-4386-99be-6a7fa5766238": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "03daab14-9d3e-4386-99be-6a7fa5766238", + "Name": "W12x152", + "CellId": 136, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3dcd3860-a44d-45eb-8294-8e7e98d07f36": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3dcd3860-a44d-45eb-8294-8e7e98d07f36", + "Name": null + }, + "8a75167e-4761-4ad5-93da-4120eee527d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8a75167e-4761-4ad5-93da-4120eee527d6", + "Name": "W12x152", + "CellId": 137, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e706466f-854f-4c22-973c-bdfcbad92e3b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e706466f-854f-4c22-973c-bdfcbad92e3b", + "Name": null + }, + "00b06eba-24c6-44ef-b7c6-8f0321a98f60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "00b06eba-24c6-44ef-b7c6-8f0321a98f60", + "Name": "W12x152", + "CellId": 137, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1dcbf458-0422-4b0b-b07b-53a18da7dd40": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1dcbf458-0422-4b0b-b07b-53a18da7dd40", + "Name": null + }, + "107a10af-fb72-4b65-be6b-96b2419d20a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "107a10af-fb72-4b65-be6b-96b2419d20a3", + "Name": "W12x152", + "CellId": 137, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "038a057e-b7ea-421c-84cc-989b494856e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "038a057e-b7ea-421c-84cc-989b494856e3", + "Name": null + }, + "71190757-c4a9-444c-97e7-d13e4413485a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "71190757-c4a9-444c-97e7-d13e4413485a", + "Name": "W12x152", + "CellId": 138, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e288d513-4e46-412a-8ce0-c1bf7c475cc2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e288d513-4e46-412a-8ce0-c1bf7c475cc2", + "Name": null + }, + "f6c92f22-e259-4aea-954c-87f508dac334": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f6c92f22-e259-4aea-954c-87f508dac334", + "Name": "W12x152", + "CellId": 138, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9c2d0aea-4464-4f8b-972f-12d28278eed0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c2d0aea-4464-4f8b-972f-12d28278eed0", + "Name": null + }, + "124446a4-6f2e-407a-95b1-5bb37ef70ce9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "124446a4-6f2e-407a-95b1-5bb37ef70ce9", + "Name": "W12x152", + "CellId": 138, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c093c49-36b9-4f76-acb5-93b83e9b063d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c093c49-36b9-4f76-acb5-93b83e9b063d", + "Name": null + }, + "c9d70166-8075-4d93-8c3e-52fdcf30465d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c9d70166-8075-4d93-8c3e-52fdcf30465d", + "Name": "W12x152", + "CellId": 139, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e0419874-3f7c-4e0b-8dd2-06cf5de9a0bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e0419874-3f7c-4e0b-8dd2-06cf5de9a0bf", + "Name": null + }, + "11663140-d2a1-4f0d-8d3b-bd1da352d26f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "11663140-d2a1-4f0d-8d3b-bd1da352d26f", + "Name": "W12x152", + "CellId": 139, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dfc121e2-1189-44b3-b494-ff2adf6ece37": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dfc121e2-1189-44b3-b494-ff2adf6ece37", + "Name": null + }, + "6ef3d237-535d-40c0-a379-b5a9be6c8c4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "6ef3d237-535d-40c0-a379-b5a9be6c8c4b", + "Name": "W12x152", + "CellId": 139, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a2c49997-8de7-4a17-8472-f4e189334b18": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a2c49997-8de7-4a17-8472-f4e189334b18", + "Name": null + }, + "01cd4ad2-88ea-48c8-96aa-f8aef45d289b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "01cd4ad2-88ea-48c8-96aa-f8aef45d289b", + "Name": "W12x152", + "CellId": 140, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "955cf3c3-e560-4058-9412-09694f3b711c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "955cf3c3-e560-4058-9412-09694f3b711c", + "Name": null + }, + "d8926a33-84d2-46af-9118-87c1f296cf49": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d8926a33-84d2-46af-9118-87c1f296cf49", + "Name": "W12x152", + "CellId": 140, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ba47c0e9-b9ff-440a-a811-e514f2a55726": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba47c0e9-b9ff-440a-a811-e514f2a55726", + "Name": null + }, + "0fffbcde-e93e-495f-9e24-cb28148d14fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0fffbcde-e93e-495f-9e24-cb28148d14fa", + "Name": "W12x152", + "CellId": 141, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9e055710-192c-4993-aed5-d09db0473a27": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9e055710-192c-4993-aed5-d09db0473a27", + "Name": null + }, + "5feb5b94-fc0d-46b7-878e-1762c3550963": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5feb5b94-fc0d-46b7-878e-1762c3550963", + "Name": "W12x152", + "CellId": 141, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4bd8fa70-1fea-4106-84ee-abd34049fa0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4bd8fa70-1fea-4106-84ee-abd34049fa0b", + "Name": null + }, + "68e84e78-a5f3-4ab5-a9de-d1da36ea5e6c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "68e84e78-a5f3-4ab5-a9de-d1da36ea5e6c", + "Name": "W12x152", + "CellId": 141, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "195851ae-ec6d-4908-b29d-fa59b08f00e7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "195851ae-ec6d-4908-b29d-fa59b08f00e7", + "Name": null + }, + "01fdc5db-ba5d-4c4a-9122-9faa4a6856b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "01fdc5db-ba5d-4c4a-9122-9faa4a6856b3", + "Name": "W12x152", + "CellId": 142, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "115e2243-6a71-47e3-a158-200ed78e0198": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "115e2243-6a71-47e3-a158-200ed78e0198", + "Name": null + }, + "fa722ee5-1016-4c3c-89a8-0556afdaae2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fa722ee5-1016-4c3c-89a8-0556afdaae2f", + "Name": "W12x152", + "CellId": 142, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c88aefd7-3824-4879-bd65-f06be40d5121": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c88aefd7-3824-4879-bd65-f06be40d5121", + "Name": null + }, + "904588f5-994f-47ec-b3d4-aa0e6f045819": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "904588f5-994f-47ec-b3d4-aa0e6f045819", + "Name": "W12x152", + "CellId": 142, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cf2140d0-c668-4c77-9435-ab6b76c4bf9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf2140d0-c668-4c77-9435-ab6b76c4bf9a", + "Name": null + }, + "99eaca0d-c7c5-486b-acd6-17cb9339388d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "99eaca0d-c7c5-486b-acd6-17cb9339388d", + "Name": "W12x152", + "CellId": 143, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c35e8989-d6f6-4f63-89c8-750e6e5f689b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c35e8989-d6f6-4f63-89c8-750e6e5f689b", + "Name": null + }, + "a8253de2-3dff-48fa-ab7d-836d03c632ef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a8253de2-3dff-48fa-ab7d-836d03c632ef", + "Name": "W12x152", + "CellId": 143, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "980eb774-e2c2-4468-9a59-dc2b64473345": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "980eb774-e2c2-4468-9a59-dc2b64473345", + "Name": null + }, + "8260c836-3a75-4a32-9344-ebb8ddb807f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8260c836-3a75-4a32-9344-ebb8ddb807f4", + "Name": "W12x152", + "CellId": 143, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f8e7c515-6f47-44e6-9682-c621514db6a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8e7c515-6f47-44e6-9682-c621514db6a8", + "Name": null + }, + "5a4710d8-10e7-4ed8-8da8-0f410a310a0c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5a4710d8-10e7-4ed8-8da8-0f410a310a0c", + "Name": "W12x152", + "CellId": 144, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6d0d107-0d88-42b3-a8e3-9363931cfa21": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6d0d107-0d88-42b3-a8e3-9363931cfa21", + "Name": null + }, + "02c34d52-6494-4258-ab36-e6397f629ea7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "02c34d52-6494-4258-ab36-e6397f629ea7", + "Name": "W12x152", + "CellId": 144, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ebe14b50-a00c-4821-a50c-72f4f310406f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ebe14b50-a00c-4821-a50c-72f4f310406f", + "Name": null + }, + "14e99bf6-b932-4483-b3b9-3e0e61c9d181": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "14e99bf6-b932-4483-b3b9-3e0e61c9d181", + "Name": "W12x152", + "CellId": 144, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b05b22d-21fb-40e6-a8c4-a078e30e8adc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b05b22d-21fb-40e6-a8c4-a078e30e8adc", + "Name": null + }, + "ce0d6c02-aa7e-43e6-b3a9-461f7128f2e2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ce0d6c02-aa7e-43e6-b3a9-461f7128f2e2", + "Name": "W12x152", + "CellId": 145, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ed564d3a-0c40-4486-a4ab-51a2d4a93069": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed564d3a-0c40-4486-a4ab-51a2d4a93069", + "Name": null + }, + "c9a74174-9119-4e43-8eec-e97fe5c52b18": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c9a74174-9119-4e43-8eec-e97fe5c52b18", + "Name": "W12x152", + "CellId": 145, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "1e1e6558-76fd-40bc-9333-0cfa5204d330": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1e1e6558-76fd-40bc-9333-0cfa5204d330", + "Name": null + }, + "2142ebca-3c21-497e-9609-59a25f70cdb4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2142ebca-3c21-497e-9609-59a25f70cdb4", + "Name": "W12x152", + "CellId": 146, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2e4e5409-7ab6-4fef-af59-61e3be57f08d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2e4e5409-7ab6-4fef-af59-61e3be57f08d", + "Name": null + }, + "347f0c3b-f24b-4fa3-a426-49d79b9e9bdc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "347f0c3b-f24b-4fa3-a426-49d79b9e9bdc", + "Name": "W12x152", + "CellId": 146, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9821b949-03f9-4d04-aad7-1e9303ec545e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9821b949-03f9-4d04-aad7-1e9303ec545e", + "Name": null + }, + "70f7b738-433f-4df5-96b2-a9131400293f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "70f7b738-433f-4df5-96b2-a9131400293f", + "Name": "W12x152", + "CellId": 146, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8ff74b24-56f8-4fdc-9bd1-20cb96b41967": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8ff74b24-56f8-4fdc-9bd1-20cb96b41967", + "Name": null + }, + "e4432fa8-92f6-49cc-b1a1-bbf356edcb1b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e4432fa8-92f6-49cc-b1a1-bbf356edcb1b", + "Name": "W12x152", + "CellId": 147, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a76592f3-8131-40a0-9c5d-1504a70a01c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a76592f3-8131-40a0-9c5d-1504a70a01c5", + "Name": null + }, + "88e68ac3-1ab5-40da-b29c-ac914b2d96e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "88e68ac3-1ab5-40da-b29c-ac914b2d96e1", + "Name": "W12x152", + "CellId": 147, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "44a14673-329f-4fdf-a4b0-2221d4dddd5c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "44a14673-329f-4fdf-a4b0-2221d4dddd5c", + "Name": null + }, + "cb03cd3b-2e3d-4c78-9b9a-7cac8298d674": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cb03cd3b-2e3d-4c78-9b9a-7cac8298d674", + "Name": "W12x152", + "CellId": 147, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "47d964f1-6a70-4406-bbc1-5a3f35bce76d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "47d964f1-6a70-4406-bbc1-5a3f35bce76d", + "Name": null + }, + "ef5acfea-143e-4678-9ebe-aff8993f2aa7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ef5acfea-143e-4678-9ebe-aff8993f2aa7", + "Name": "W12x152", + "CellId": 148, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ddb5f93b-698e-4b57-874d-4b4e660e0219": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ddb5f93b-698e-4b57-874d-4b4e660e0219", + "Name": null + }, + "ccdaebdb-633a-44f0-aa19-41f747ffddf2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ccdaebdb-633a-44f0-aa19-41f747ffddf2", + "Name": "W12x152", + "CellId": 148, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "64e1257e-01f3-485a-ae6e-dcf8d535e426": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "64e1257e-01f3-485a-ae6e-dcf8d535e426", + "Name": null + }, + "bc24f565-1a11-4b7f-a7f4-15cdab75cf55": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "bc24f565-1a11-4b7f-a7f4-15cdab75cf55", + "Name": "W12x152", + "CellId": 148, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cca8c72e-6c97-4790-8998-bae6bacd8343": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cca8c72e-6c97-4790-8998-bae6bacd8343", + "Name": null + }, + "5eee5b7d-e4bd-4092-af64-b3a623e6de4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "5eee5b7d-e4bd-4092-af64-b3a623e6de4f", + "Name": "W12x152", + "CellId": 149, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "aff7bd80-a1e7-46f8-8af8-a4beae6b71e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "aff7bd80-a1e7-46f8-8af8-a4beae6b71e3", + "Name": null + }, + "a7e9574a-31e0-4f34-bb5a-137f59929a28": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a7e9574a-31e0-4f34-bb5a-137f59929a28", + "Name": "W12x152", + "CellId": 149, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e380a03a-4417-49a6-bd4c-8fabd9a71222": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e380a03a-4417-49a6-bd4c-8fabd9a71222", + "Name": null + }, + "df3100f6-94e1-45e6-8359-d528b366ff71": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "df3100f6-94e1-45e6-8359-d528b366ff71", + "Name": "W12x152", + "CellId": 149, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0e4e7eef-56ed-4eac-bc7d-5951164bfa9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e4e7eef-56ed-4eac-bc7d-5951164bfa9a", + "Name": null + }, + "9c24d1aa-cbee-4bdc-a33a-7894b0d24bf2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9c24d1aa-cbee-4bdc-a33a-7894b0d24bf2", + "Name": "W12x152", + "CellId": 150, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7c87ee2a-6a23-4cd3-9eac-c6257749faee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7c87ee2a-6a23-4cd3-9eac-c6257749faee", + "Name": null + }, + "a69a2334-feb7-4734-b36d-a7a2908fb10c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a69a2334-feb7-4734-b36d-a7a2908fb10c", + "Name": "W12x152", + "CellId": 150, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "cad570f5-d050-49e9-a41a-053830e4d3c9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cad570f5-d050-49e9-a41a-053830e4d3c9", + "Name": null + }, + "9ceeec99-a948-41d7-952a-de6b077d7dde": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9ceeec99-a948-41d7-952a-de6b077d7dde", + "Name": "W12x152", + "CellId": 151, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fa7abb7c-2c84-4980-8e9c-2349ede0d5fb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa7abb7c-2c84-4980-8e9c-2349ede0d5fb", + "Name": null + }, + "16b9e9c9-27c3-421c-8e23-1673d97291c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "16b9e9c9-27c3-421c-8e23-1673d97291c5", + "Name": "W12x152", + "CellId": 151, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "07c19924-5df4-4c83-9b31-9a3115e1bd01": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "07c19924-5df4-4c83-9b31-9a3115e1bd01", + "Name": null + }, + "3e1b2f51-25b2-4888-8dd2-ad8249172097": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3e1b2f51-25b2-4888-8dd2-ad8249172097", + "Name": "W12x152", + "CellId": 151, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d62ef690-9226-4125-b3d6-5f496211c9ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d62ef690-9226-4125-b3d6-5f496211c9ac", + "Name": null + }, + "816d26d1-fa60-471e-99f3-573438a17351": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "816d26d1-fa60-471e-99f3-573438a17351", + "Name": "W12x152", + "CellId": 152, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1ddffee6-9e67-471d-881e-01ee8c2a03db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1ddffee6-9e67-471d-881e-01ee8c2a03db", + "Name": null + }, + "279d8968-2b89-46aa-be33-a115a2cc81ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "279d8968-2b89-46aa-be33-a115a2cc81ab", + "Name": "W12x152", + "CellId": 152, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9f1a700c-b32a-447d-b9e0-af9e9da751a5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9f1a700c-b32a-447d-b9e0-af9e9da751a5", + "Name": null + }, + "133d4b7c-1c55-462a-bc1e-2f5477f69037": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "133d4b7c-1c55-462a-bc1e-2f5477f69037", + "Name": "W12x152", + "CellId": 152, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "32ebc887-88e3-44cd-9792-29fca5927025": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32ebc887-88e3-44cd-9792-29fca5927025", + "Name": null + }, + "540067dc-7a46-4bf1-a270-8e7d033d05b3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "540067dc-7a46-4bf1-a270-8e7d033d05b3", + "Name": "W12x152", + "CellId": 153, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d1c40869-50cf-4f9f-84b7-79a0eeb0d49a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1c40869-50cf-4f9f-84b7-79a0eeb0d49a", + "Name": null + }, + "d78b8175-a450-4ada-977e-58df17871fb7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d78b8175-a450-4ada-977e-58df17871fb7", + "Name": "W12x152", + "CellId": 153, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "53062684-81b4-4cf9-b521-fc06ffddde3a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "53062684-81b4-4cf9-b521-fc06ffddde3a", + "Name": null + }, + "d01e3d5e-4c36-474f-bc44-713efec62aeb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d01e3d5e-4c36-474f-bc44-713efec62aeb", + "Name": "W12x152", + "CellId": 153, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "10692b6c-4c42-4291-81ff-633ea040ae0b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10692b6c-4c42-4291-81ff-633ea040ae0b", + "Name": null + }, + "0d756bc5-5678-45aa-bd91-2270099f79e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "0d756bc5-5678-45aa-bd91-2270099f79e4", + "Name": "W12x152", + "CellId": 154, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "10b9b980-2932-4f68-8e53-633edfe18e32": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10b9b980-2932-4f68-8e53-633edfe18e32", + "Name": null + }, + "9bcb2a21-a75c-464d-9418-29b9c4219b2f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9bcb2a21-a75c-464d-9418-29b9c4219b2f", + "Name": "W12x152", + "CellId": 154, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b5ecc0d-47f7-4d2c-a27c-c64a7871b900": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b5ecc0d-47f7-4d2c-a27c-c64a7871b900", + "Name": null + }, + "24f0a58b-1e34-47aa-90c9-4f23a76e02f2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "24f0a58b-1e34-47aa-90c9-4f23a76e02f2", + "Name": "W12x152", + "CellId": 154, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "49ebe05d-1c4e-47c5-b079-797917b3e8fc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49ebe05d-1c4e-47c5-b079-797917b3e8fc", + "Name": null + }, + "51a11f9e-ec12-4f95-87e4-06cdd72b8533": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "51a11f9e-ec12-4f95-87e4-06cdd72b8533", + "Name": "W12x152", + "CellId": 155, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "f9f400f9-d4ef-45c7-bd99-1cababf36542": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f9f400f9-d4ef-45c7-bd99-1cababf36542", + "Name": null + }, + "b6b0ff09-24a8-43d9-8b5c-094a3dd18f6d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b6b0ff09-24a8-43d9-8b5c-094a3dd18f6d", + "Name": "W12x152", + "CellId": 155, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9c9e5ad5-2d9b-41e5-b893-e669fadb81f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c9e5ad5-2d9b-41e5-b893-e669fadb81f5", + "Name": null + }, + "b27a551d-22de-4219-860e-fcc014915556": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b27a551d-22de-4219-860e-fcc014915556", + "Name": "W12x152", + "CellId": 156, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fce653f6-5e01-41f4-9d8d-52d54c4332d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fce653f6-5e01-41f4-9d8d-52d54c4332d0", + "Name": null + }, + "51ae1991-6e92-4d38-8b9f-e15a50ec6281": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "51ae1991-6e92-4d38-8b9f-e15a50ec6281", + "Name": "W12x152", + "CellId": 156, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7bd146c0-867f-4966-834e-ed39c254a4b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7bd146c0-867f-4966-834e-ed39c254a4b5", + "Name": null + }, + "f46806fa-2238-41a4-8352-06475f834eca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f46806fa-2238-41a4-8352-06475f834eca", + "Name": "W12x152", + "CellId": 156, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "486e1191-3f72-4940-a410-6259f864747a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "486e1191-3f72-4940-a410-6259f864747a", + "Name": null + }, + "fa96713a-211a-468f-a330-bdade2343a0f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "fa96713a-211a-468f-a330-bdade2343a0f", + "Name": "W12x152", + "CellId": 157, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "49751d31-477a-4f77-bd5f-7156092f1c49": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49751d31-477a-4f77-bd5f-7156092f1c49", + "Name": null + }, + "1d25c174-bdc2-4b22-bdcc-1dfedccac0a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "1d25c174-bdc2-4b22-bdcc-1dfedccac0a6", + "Name": "W12x152", + "CellId": 157, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3fe3e6fe-edb1-4600-8131-6898c47ac457": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3fe3e6fe-edb1-4600-8131-6898c47ac457", + "Name": null + }, + "20b6e150-e315-40ea-9a33-58435bbbf525": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "20b6e150-e315-40ea-9a33-58435bbbf525", + "Name": "W12x152", + "CellId": 157, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9c5cf233-1337-47c3-9c33-4c6b64e6e8ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c5cf233-1337-47c3-9c33-4c6b64e6e8ed", + "Name": null + }, + "ba05ed80-509b-4a21-9334-83b9eab3f5cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ba05ed80-509b-4a21-9334-83b9eab3f5cd", + "Name": "W12x152", + "CellId": 158, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "80703c97-7d41-490a-9fb6-641545c18701": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "80703c97-7d41-490a-9fb6-641545c18701", + "Name": null + }, + "a3303247-51d8-4dc6-863c-276ad9c53b10": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a3303247-51d8-4dc6-863c-276ad9c53b10", + "Name": "W12x152", + "CellId": 158, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7f131c91-5984-4621-a19b-fd41302d8f7a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7f131c91-5984-4621-a19b-fd41302d8f7a", + "Name": null + }, + "ea05ea04-97ec-4ef4-849d-5d25fa89d3e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "ea05ea04-97ec-4ef4-849d-5d25fa89d3e8", + "Name": "W12x152", + "CellId": 158, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9a9e03bb-d329-4021-aef5-f0c1124ec604": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a9e03bb-d329-4021-aef5-f0c1124ec604", + "Name": null + }, + "64f66117-2ee5-4d8c-8913-04d3686d8b36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "64f66117-2ee5-4d8c-8913-04d3686d8b36", + "Name": "W12x152", + "CellId": 159, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f78632e7-7490-471c-9924-e77359eeb9a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f78632e7-7490-471c-9924-e77359eeb9a2", + "Name": null + }, + "8c3895b5-7536-4b11-aaae-17a904510532": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "8c3895b5-7536-4b11-aaae-17a904510532", + "Name": "W12x152", + "CellId": 159, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "761ad38e-b6c9-4878-b9ee-1c347435c611": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "761ad38e-b6c9-4878-b9ee-1c347435c611", + "Name": null + }, + "95869294-87d4-4e2c-9433-bd5cd525fc71": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "95869294-87d4-4e2c-9433-bd5cd525fc71", + "Name": "W12x152", + "CellId": 159, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0544ced9-d1a9-43d9-9814-2588b1f45274": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0544ced9-d1a9-43d9-9814-2588b1f45274", + "Name": null + }, + "d4754413-96c6-4217-ac64-07ceb86139bb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "d4754413-96c6-4217-ac64-07ceb86139bb", + "Name": "W12x152", + "CellId": 160, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b8b74c9a-8e0f-4cd9-a9cc-c72193f7c8ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b8b74c9a-8e0f-4cd9-a9cc-c72193f7c8ed", + "Name": null + }, + "2e9a581a-4ecf-467f-b271-16fe8d38b979": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2e9a581a-4ecf-467f-b271-16fe8d38b979", + "Name": "W12x152", + "CellId": 160, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8389a62a-e511-4483-93c0-dd61dd272d43": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8389a62a-e511-4483-93c0-dd61dd272d43", + "Name": null + }, + "91a80d94-3ee7-4457-9587-6903c814a970": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "91a80d94-3ee7-4457-9587-6903c814a970", + "Name": "W12x152", + "CellId": 161, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "134d8208-4aba-4460-b89f-8729c56dff53": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "134d8208-4aba-4460-b89f-8729c56dff53", + "Name": null + }, + "9739d31c-abcc-4e29-b195-7214b7b4553f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9739d31c-abcc-4e29-b195-7214b7b4553f", + "Name": "W12x152", + "CellId": 161, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "294283d2-9d25-4827-8f42-af3d66f6c056": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "294283d2-9d25-4827-8f42-af3d66f6c056", + "Name": null + }, + "2ff192d8-990d-4020-8008-38dffb686d2a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "2ff192d8-990d-4020-8008-38dffb686d2a", + "Name": "W12x152", + "CellId": 161, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "15c1a361-0a63-4c18-8033-391cf48f11f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "15c1a361-0a63-4c18-8033-391cf48f11f2", + "Name": null + }, + "3ad2730e-3f76-49ad-be41-dedafbb6cc75": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "3ad2730e-3f76-49ad-be41-dedafbb6cc75", + "Name": "W12x152", + "CellId": 162, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "148790d0-4444-4030-a748-2e9813eb71eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "148790d0-4444-4030-a748-2e9813eb71eb", + "Name": null + }, + "205a6c33-1c3d-4d33-8c9d-9e921e97dcca": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "205a6c33-1c3d-4d33-8c9d-9e921e97dcca", + "Name": "W12x152", + "CellId": 162, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3d6a606f-e487-4b59-9b45-110c71bc0b86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3d6a606f-e487-4b59-9b45-110c71bc0b86", + "Name": null + }, + "819c7c12-8ed0-47a7-86fb-7404d9b4adf5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "819c7c12-8ed0-47a7-86fb-7404d9b4adf5", + "Name": "W12x152", + "CellId": 162, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4624841d-7093-4269-b9f7-3dfd217d5ba2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4624841d-7093-4269-b9f7-3dfd217d5ba2", + "Name": null + }, + "abd69d33-fd83-49e2-91f1-0b8fcdc33b26": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "abd69d33-fd83-49e2-91f1-0b8fcdc33b26", + "Name": "W12x152", + "CellId": 163, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f05dc298-d720-4a03-9067-3cb94bf85bef": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f05dc298-d720-4a03-9067-3cb94bf85bef", + "Name": null + }, + "9b9bb570-57dd-4c3e-817b-4b9d03c36c08": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "9b9bb570-57dd-4c3e-817b-4b9d03c36c08", + "Name": "W12x152", + "CellId": 163, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3a0ad797-6c81-488c-887e-16b5f4814c9e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3a0ad797-6c81-488c-887e-16b5f4814c9e", + "Name": null + }, + "b0bdd28c-3e3a-4f05-8ef6-2a6f9839cf22": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "b0bdd28c-3e3a-4f05-8ef6-2a6f9839cf22", + "Name": "W12x152", + "CellId": 163, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "083368c1-07fd-4845-8f85-c66792dea379": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "083368c1-07fd-4845-8f85-c66792dea379", + "Name": null + }, + "c7adc3e0-b641-49c9-867a-22b1913055b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "c7adc3e0-b641-49c9-867a-22b1913055b7", + "Name": "W12x152", + "CellId": 164, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bf518c02-83fa-463d-9845-4d0dc3678cf6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bf518c02-83fa-463d-9845-4d0dc3678cf6", + "Name": null + }, + "e4e01a5b-b7ca-4450-a30b-586787147f31": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "e4e01a5b-b7ca-4450-a30b-586787147f31", + "Name": "W12x152", + "CellId": 164, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7cb42a51-3be4-48e2-b853-bd599c11f9ab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7cb42a51-3be4-48e2-b853-bd599c11f9ab", + "Name": null + }, + "cb34c68d-1ca1-4cd3-b0fd-c55dd6e57bbb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "cb34c68d-1ca1-4cd3-b0fd-c55dd6e57bbb", + "Name": "W12x152", + "CellId": 164, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2b8c9a87-4a5d-4f78-abc2-732119cb03d1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 8.35 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2b8c9a87-4a5d-4f78-abc2-732119cb03d1", + "Name": null + }, + "a5b85343-2322-41ef-a285-b12fb36a9279": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "a5b85343-2322-41ef-a285-b12fb36a9279", + "Name": "W12x152", + "CellId": 165, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "bbc7e0ea-0e5a-4320-8374-066799f01ff9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bbc7e0ea-0e5a-4320-8374-066799f01ff9", + "Name": null + }, + "f719e3f8-74a3-4620-a7b0-1e7ab2b7603e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 8.35 + ] + } + }, + "Id": "f719e3f8-74a3-4620-a7b0-1e7ab2b7603e", + "Name": "W12x152", + "CellId": 165, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4ecb11ff-6f24-496e-a495-f12b929d5cc1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 8.35 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 8.35 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4ecb11ff-6f24-496e-a495-f12b929d5cc1", + "Name": null + }, + "456a00e5-0976-4cff-a80f-dba13079602a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "456a00e5-0976-4cff-a80f-dba13079602a", + "Name": "W12x152", + "CellId": 166, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e9bc7c87-f4a0-4520-a7e3-a01caa45ece7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 12.2 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e9bc7c87-f4a0-4520-a7e3-a01caa45ece7", + "Name": null + }, + "478b906b-c233-46a2-bea9-5591a6d37bba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "478b906b-c233-46a2-bea9-5591a6d37bba", + "Name": "W12x152", + "CellId": 166, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "04ece645-f181-4bc3-a06b-ac931f7feef8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 12.2 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04ece645-f181-4bc3-a06b-ac931f7feef8", + "Name": null + }, + "399465e3-a9e7-425c-bbc4-a02f40696fb8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "0a4b6575-3b0a-47a0-834e-6e427af090ca", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "399465e3-a9e7-425c-bbc4-a02f40696fb8", + "Name": "W12x152", + "CellId": 167, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "119afa48-4722-4939-aeb7-d1aaa8a4f672": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -2.0, + "Z": 20.0 + }, + "End": { + "X": 10.7324, + "Y": -2.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "119afa48-4722-4939-aeb7-d1aaa8a4f672", + "Name": null + }, + "7910d5f6-9bb4-407e-bf75-6e49457f7a34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c30b6320-d3a9-4244-9b8e-ff895659beb0", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 9.0, + 0.0, + 1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7910d5f6-9bb4-407e-bf75-6e49457f7a34", + "Name": "W12x152", + "CellId": 167, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9c9b0aaa-0b94-4ed3-b95e-4e24bde94398": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 9.0, + "Y": -3.5, + "Z": 20.0 + }, + "End": { + "X": 11.7324, + "Y": -3.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9c9b0aaa-0b94-4ed3-b95e-4e24bde94398", + "Name": null + }, + "62976abb-e91c-4cb9-89e7-55992fb709c6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "62976abb-e91c-4cb9-89e7-55992fb709c6", + "Name": "W12x152", + "CellId": 168, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7a1fc0dc-28fd-46e5-8bdb-4eaf2110b422": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7a1fc0dc-28fd-46e5-8bdb-4eaf2110b422", + "Name": null + }, + "7a91d33e-b882-4552-9f14-f0073b7bd896": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7a91d33e-b882-4552-9f14-f0073b7bd896", + "Name": "W12x152", + "CellId": 168, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "420fdfee-4264-429e-954b-b400aff6dfa8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "420fdfee-4264-429e-954b-b400aff6dfa8", + "Name": null + }, + "7328d769-5ee3-47ea-8d0f-5576319940d3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7328d769-5ee3-47ea-8d0f-5576319940d3", + "Name": "W12x152", + "CellId": 168, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "af0a62a1-5100-4c40-a804-9a63157c004b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "af0a62a1-5100-4c40-a804-9a63157c004b", + "Name": null + }, + "2ba2b496-922a-496e-a7b9-31b4803df00f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2ba2b496-922a-496e-a7b9-31b4803df00f", + "Name": "W12x152", + "CellId": 169, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "72b9f740-af7e-4fa4-a80f-b55d3df028dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72b9f740-af7e-4fa4-a80f-b55d3df028dd", + "Name": null + }, + "8d2d9125-05de-4bec-be44-a6138b6e46f7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8d2d9125-05de-4bec-be44-a6138b6e46f7", + "Name": "W12x152", + "CellId": 169, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4de065a2-c3c4-4bb7-bed6-cf4a6145b8a1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4de065a2-c3c4-4bb7-bed6-cf4a6145b8a1", + "Name": null + }, + "81a83a1a-c188-4937-b133-74ffbe83e3d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -5.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "81a83a1a-c188-4937-b133-74ffbe83e3d1", + "Name": "W12x152", + "CellId": 169, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "de0f69d3-ae3d-4676-bf9a-ae7c75c4f673": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -5.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -0.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "de0f69d3-ae3d-4676-bf9a-ae7c75c4f673", + "Name": null + }, + "77b92ad6-ff9f-4efa-9089-1ad62eca1232": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "77b92ad6-ff9f-4efa-9089-1ad62eca1232", + "Name": "W12x152", + "CellId": 170, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "30ea848a-0294-49fa-bcbd-f7d93b21e581": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30ea848a-0294-49fa-bcbd-f7d93b21e581", + "Name": null + }, + "06ff9abd-95ac-4a77-ae34-090c45ebde46": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "06ff9abd-95ac-4a77-ae34-090c45ebde46", + "Name": "W12x152", + "CellId": 170, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "57a8abaa-7900-411a-a85f-b3589c824777": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "57a8abaa-7900-411a-a85f-b3589c824777", + "Name": null + }, + "7d708dab-d00b-4fa7-8f87-ddabb39ac0e9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -3.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7d708dab-d00b-4fa7-8f87-ddabb39ac0e9", + "Name": "W12x152", + "CellId": 171, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a5d6bffc-2f9c-4269-816b-ab51cdce0df3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -3.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -3.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a5d6bffc-2f9c-4269-816b-ab51cdce0df3", + "Name": null + }, + "79996cda-4a35-4db8-9e25-b11da6aa130e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -2.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "79996cda-4a35-4db8-9e25-b11da6aa130e", + "Name": "W12x152", + "CellId": 171, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5c285561-8617-4345-9d86-6a5f394128d2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -2.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -2.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5c285561-8617-4345-9d86-6a5f394128d2", + "Name": null + }, + "2d7f011c-35bd-42a5-bc69-83762623e85d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2d7f011c-35bd-42a5-bc69-83762623e85d", + "Name": "W12x152", + "CellId": 174, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "93b37eb9-a9ef-4910-8e0f-f5465225bcff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "93b37eb9-a9ef-4910-8e0f-f5465225bcff", + "Name": null + }, + "40f4c3d8-30cb-47c4-ac28-fef115d569ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "40f4c3d8-30cb-47c4-ac28-fef115d569ba", + "Name": "W12x152", + "CellId": 174, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6879c94b-58c8-4011-9bd9-a71a2a4f42bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6879c94b-58c8-4011-9bd9-a71a2a4f42bf", + "Name": null + }, + "21a1607d-4014-4161-8a0e-51df56470c58": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "21a1607d-4014-4161-8a0e-51df56470c58", + "Name": "W12x152", + "CellId": 174, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bd9ec718-38c5-49ac-9902-16a3fbda3e33": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bd9ec718-38c5-49ac-9902-16a3fbda3e33", + "Name": null + }, + "47f2ad8c-5585-4716-9f7a-061e73e1c8c3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "47f2ad8c-5585-4716-9f7a-061e73e1c8c3", + "Name": "W12x152", + "CellId": 175, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4179a531-3079-4091-a35e-695079ee2681": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4179a531-3079-4091-a35e-695079ee2681", + "Name": null + }, + "23b8d252-b18e-4a18-a9a9-a9c0f0ff91a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "23b8d252-b18e-4a18-a9a9-a9c0f0ff91a4", + "Name": "W12x152", + "CellId": 175, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "83d1ade6-c290-4cc4-983b-f1bc2010b7f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "83d1ade6-c290-4cc4-983b-f1bc2010b7f4", + "Name": null + }, + "6b7c48d4-ede3-4835-a771-d80a328dee34": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d463367e-606b-478f-9829-18208e0b592e", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6b7c48d4-ede3-4835-a771-d80a328dee34", + "Name": "W12x152", + "CellId": 175, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e33fffa7-2387-42b6-85cc-665fa1ac6488": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -7.276400000000001, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e33fffa7-2387-42b6-85cc-665fa1ac6488", + "Name": null + }, + "1693234c-f4e6-4b74-9066-9679c53f91e7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1693234c-f4e6-4b74-9066-9679c53f91e7", + "Name": "W12x152", + "CellId": 176, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ecfd40b5-e776-488b-b434-32878669781a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ecfd40b5-e776-488b-b434-32878669781a", + "Name": null + }, + "5fb9067e-4be9-4cfc-ad91-195c692a7a96": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5fb9067e-4be9-4cfc-ad91-195c692a7a96", + "Name": "W12x152", + "CellId": 176, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b8a941b6-c188-4e4f-9e7a-227357badaf9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b8a941b6-c188-4e4f-9e7a-227357badaf9", + "Name": null + }, + "55555272-46ce-45c1-b859-7cec136715ab": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "55555272-46ce-45c1-b859-7cec136715ab", + "Name": "W12x152", + "CellId": 176, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4a289917-06b0-4e1e-8b52-77d5b3c060e3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a289917-06b0-4e1e-8b52-77d5b3c060e3", + "Name": null + }, + "7eb13d2c-6d9f-49b1-bb1a-6b1a686dfbc8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7eb13d2c-6d9f-49b1-bb1a-6b1a686dfbc8", + "Name": "W12x152", + "CellId": 177, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "08dacb74-8e09-47a6-b26f-1ef4667b60f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "08dacb74-8e09-47a6-b26f-1ef4667b60f3", + "Name": null + }, + "c4424000-6d32-46df-b2be-46fc77bc3c77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c4424000-6d32-46df-b2be-46fc77bc3c77", + "Name": "W12x152", + "CellId": 177, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "da556733-cae6-47fb-b974-9e71a569628a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "da556733-cae6-47fb-b974-9e71a569628a", + "Name": null + }, + "45070934-7cc0-40d7-bd4c-f0ee4c154a36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -10.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "45070934-7cc0-40d7-bd4c-f0ee4c154a36", + "Name": "W12x152", + "CellId": 177, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cc17786a-59d5-426b-ab95-a1b1d4495e61": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -10.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -5.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc17786a-59d5-426b-ab95-a1b1d4495e61", + "Name": null + }, + "1a8f205c-78a9-44f7-b5b0-3fbf277da1ce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1a8f205c-78a9-44f7-b5b0-3fbf277da1ce", + "Name": "W12x152", + "CellId": 178, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c8c2b44e-68bd-4ab3-b7e6-12637334bf62": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c8c2b44e-68bd-4ab3-b7e6-12637334bf62", + "Name": null + }, + "acfe23ec-1a98-43f6-9a18-6f40f7f0a67f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "acfe23ec-1a98-43f6-9a18-6f40f7f0a67f", + "Name": "W12x152", + "CellId": 178, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "138580b3-43d0-415c-9ac7-aa856541739b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "138580b3-43d0-415c-9ac7-aa856541739b", + "Name": null + }, + "4677d8f0-10b1-482f-9216-438977be98fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -8.333333333333334, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4677d8f0-10b1-482f-9216-438977be98fe", + "Name": "W12x152", + "CellId": 179, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "48f760e8-6bcd-49fa-96bf-bff52eafa2dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -8.333333333333334, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -8.333333333333334, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "48f760e8-6bcd-49fa-96bf-bff52eafa2dd", + "Name": null + }, + "4509346a-4565-41c8-8216-62e7a9f9d6f5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -6.666666666666667, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4509346a-4565-41c8-8216-62e7a9f9d6f5", + "Name": "W12x152", + "CellId": 179, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "375765f1-658d-4257-8c8b-4413fa8847ac": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -6.666666666666667, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -6.666666666666667, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "375765f1-658d-4257-8c8b-4413fa8847ac", + "Name": null + }, + "678e7bf6-d340-435b-9325-dff86003541d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "678e7bf6-d340-435b-9325-dff86003541d", + "Name": "W12x152", + "CellId": 180, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4de736fd-1caa-41ef-b639-22116450ad86": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 12.2 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4de736fd-1caa-41ef-b639-22116450ad86", + "Name": null + }, + "efc32026-72ac-4dcf-a090-28f1022f2915": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "efc32026-72ac-4dcf-a090-28f1022f2915", + "Name": "W12x152", + "CellId": 180, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8a108595-59e9-4078-b917-a5856b804ef7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8a108595-59e9-4078-b917-a5856b804ef7", + "Name": null + }, + "45fe2d51-5eb7-4801-a5e2-e33c28a1a853": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "e9998d1f-f37e-4ec1-9a37-d6129df9567b", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -11.666666666666666, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "45fe2d51-5eb7-4801-a5e2-e33c28a1a853", + "Name": "W12x152", + "CellId": 181, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0a6bfffb-2ec8-48c0-a31e-e92f20a066b5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -11.666666666666666, + "Z": 20.0 + }, + "End": { + "X": 17.176846666666666, + "Y": -11.666666666666666, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a6bfffb-2ec8-48c0-a31e-e92f20a066b5", + "Name": null + }, + "8416c996-4b82-434e-9a32-5ef860f1d831": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "48a4ab2f-6f28-414c-be2a-e0687d5249cc", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 16.0, + 0.0, + 1.0, + 0.0, + -13.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8416c996-4b82-434e-9a32-5ef860f1d831", + "Name": "W12x152", + "CellId": 181, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "4a627c3a-cea9-4c41-a10e-04be43fe5b8b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 16.0, + "Y": -13.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 18.287953333333334, + "Y": -13.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a627c3a-cea9-4c41-a10e-04be43fe5b8b", + "Name": null + }, + "78a00951-be91-4ea4-a0e6-2033075b0a40": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "78a00951-be91-4ea4-a0e6-2033075b0a40", + "Name": "W12x152", + "CellId": 182, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "91dbec9a-ec5c-472d-bd6b-594c8234eba6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "91dbec9a-ec5c-472d-bd6b-594c8234eba6", + "Name": null + }, + "c3bff4e7-f635-4bee-882c-cb66c50a1220": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c3bff4e7-f635-4bee-882c-cb66c50a1220", + "Name": "W12x152", + "CellId": 182, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9d073786-1864-4a00-95fa-d1aa2b9fd691": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9d073786-1864-4a00-95fa-d1aa2b9fd691", + "Name": null + }, + "e014e074-8376-4cf6-816c-2be7b099fe6b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e014e074-8376-4cf6-816c-2be7b099fe6b", + "Name": "W12x152", + "CellId": 182, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d89539a7-fd59-4c55-b67c-802085e4688b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d89539a7-fd59-4c55-b67c-802085e4688b", + "Name": null + }, + "6c202453-3870-4e84-ad4b-59cd4364334d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6c202453-3870-4e84-ad4b-59cd4364334d", + "Name": "W12x152", + "CellId": 183, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1a8fa706-a1bb-4f26-b7af-7db964862c16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1a8fa706-a1bb-4f26-b7af-7db964862c16", + "Name": null + }, + "84dc1b5c-ca3c-4aa3-ab1d-68514d3400a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "84dc1b5c-ca3c-4aa3-ab1d-68514d3400a1", + "Name": "W12x152", + "CellId": 183, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b1dd924c-2c03-4a38-97a5-4c5bebaee529": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b1dd924c-2c03-4a38-97a5-4c5bebaee529", + "Name": null + }, + "2315a225-027f-4c02-a69e-964ce5fd0fdf": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2315a225-027f-4c02-a69e-964ce5fd0fdf", + "Name": "W12x152", + "CellId": 183, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "32cc37b7-9233-45a0-b0ac-72e15f7bcaed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "32cc37b7-9233-45a0-b0ac-72e15f7bcaed", + "Name": null + }, + "ce7736be-1028-4430-8471-743ac284ccb6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ce7736be-1028-4430-8471-743ac284ccb6", + "Name": "W12x152", + "CellId": 184, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1635a1c4-18a0-494a-ba33-907c1d0c71d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1635a1c4-18a0-494a-ba33-907c1d0c71d0", + "Name": null + }, + "0436140c-409e-4844-aed9-9329f5218859": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "0436140c-409e-4844-aed9-9329f5218859", + "Name": "W12x152", + "CellId": 184, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4d423244-1fb9-4f61-ab07-754733e6cab3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4d423244-1fb9-4f61-ab07-754733e6cab3", + "Name": null + }, + "7302abfd-c537-4c63-aed5-41da2dae2807": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7302abfd-c537-4c63-aed5-41da2dae2807", + "Name": "W12x152", + "CellId": 184, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dd84f3a4-b7e1-4656-88f7-f98f2fc83da5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dd84f3a4-b7e1-4656-88f7-f98f2fc83da5", + "Name": null + }, + "a8c4ff3d-dafe-44a9-9252-a250f9a3d23c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a8c4ff3d-dafe-44a9-9252-a250f9a3d23c", + "Name": "W12x152", + "CellId": 185, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2517f473-0911-4989-998f-6bd1af7d15fb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2517f473-0911-4989-998f-6bd1af7d15fb", + "Name": null + }, + "89fb5b8b-220d-4912-9a51-6fc9d38af9db": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "89fb5b8b-220d-4912-9a51-6fc9d38af9db", + "Name": "W12x152", + "CellId": 185, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e871beb2-c8b8-4007-a9f4-11257761e8f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e871beb2-c8b8-4007-a9f4-11257761e8f3", + "Name": null + }, + "c582815b-73dc-4bf4-b8ff-dfd0bc226bb9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -15.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c582815b-73dc-4bf4-b8ff-dfd0bc226bb9", + "Name": "W12x152", + "CellId": 185, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "352be2b2-3f40-4621-b889-3c0ce0094922": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -15.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -10.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "352be2b2-3f40-4621-b889-3c0ce0094922", + "Name": null + }, + "9bb7fb56-f02f-4c86-8d3a-077a3e8febbd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9bb7fb56-f02f-4c86-8d3a-077a3e8febbd", + "Name": "W12x152", + "CellId": 186, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "a31192a9-673e-453c-8638-03f1630df8bf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a31192a9-673e-453c-8638-03f1630df8bf", + "Name": null + }, + "02e0cd86-d09b-45a8-a8b4-b43b55be9f19": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "02e0cd86-d09b-45a8-a8b4-b43b55be9f19", + "Name": "W12x152", + "CellId": 186, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "8564dc1d-768d-49bb-a8c9-dd19f7e5d4b7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8564dc1d-768d-49bb-a8c9-dd19f7e5d4b7", + "Name": null + }, + "175586ad-3d2d-49ee-aeb5-bfaf26ae185d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -13.333333333333334, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "175586ad-3d2d-49ee-aeb5-bfaf26ae185d", + "Name": "W12x152", + "CellId": 187, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b9881d29-6912-40bb-ab1b-b64f38877d5a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -13.333333333333334, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -13.333333333333334, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b9881d29-6912-40bb-ab1b-b64f38877d5a", + "Name": null + }, + "918e1d1a-2e53-474b-91c7-74fe5fa4c1df": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -11.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "918e1d1a-2e53-474b-91c7-74fe5fa4c1df", + "Name": "W12x152", + "CellId": 187, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3ca80ce3-22d4-4e14-9b5e-3c62b2373e35": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -11.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -11.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3ca80ce3-22d4-4e14-9b5e-3c62b2373e35", + "Name": null + }, + "5fa5d14c-6910-4d25-a7c2-44b95c9b0861": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5fa5d14c-6910-4d25-a7c2-44b95c9b0861", + "Name": "W12x152", + "CellId": 188, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8b7d4c7c-c0af-4bd1-860c-9d11e3f004d7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8b7d4c7c-c0af-4bd1-860c-9d11e3f004d7", + "Name": null + }, + "e9062f1b-62a2-4cbf-aa2d-568fe572b438": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e9062f1b-62a2-4cbf-aa2d-568fe572b438", + "Name": "W12x152", + "CellId": 188, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6a55be65-fd71-4675-bb07-2cd35418905b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a55be65-fd71-4675-bb07-2cd35418905b", + "Name": null + }, + "4a42f77d-9df3-422b-b4c9-d7f315b94213": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4a42f77d-9df3-422b-b4c9-d7f315b94213", + "Name": "W12x152", + "CellId": 188, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "49381491-2759-4463-9512-3bd29c63d5d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "49381491-2759-4463-9512-3bd29c63d5d0", + "Name": null + }, + "a45341b9-79ed-44b4-818e-3586c236a657": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.6831, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a45341b9-79ed-44b4-818e-3586c236a657", + "Name": "W12x152", + "CellId": 189, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "04f85841-5018-4b22-8845-115b359254cf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.6831, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 17.6831, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "04f85841-5018-4b22-8845-115b359254cf", + "Name": null + }, + "657315a3-33c4-4894-80c0-a7ce29e98756": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.3662, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "657315a3-33c4-4894-80c0-a7ce29e98756", + "Name": "W12x152", + "CellId": 189, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d9e5b18e-bda2-4c25-a88a-2c779d557839": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.3662, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 19.3662, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d9e5b18e-bda2-4c25-a88a-2c779d557839", + "Name": null + }, + "803350bd-d04d-4acf-b263-c13f7cde8db7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "a14957ee-e204-468a-8e80-821f5ea2eabc", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.0493, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "803350bd-d04d-4acf-b263-c13f7cde8db7", + "Name": "W12x152", + "CellId": 189, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "780b1b40-dfe9-415c-8baf-c2e727a55eba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.0493, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 21.0493, + "Y": -17.475355049289902, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "780b1b40-dfe9-415c-8baf-c2e727a55eba", + "Name": null + }, + "5208aee4-a370-4b00-b81d-2a8d1208cc64": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5208aee4-a370-4b00-b81d-2a8d1208cc64", + "Name": "W12x152", + "CellId": 190, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6fa2d040-bdd8-44da-93a2-9259698904b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6fa2d040-bdd8-44da-93a2-9259698904b4", + "Name": null + }, + "806cf697-e31e-4887-935f-7987920c5433": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "806cf697-e31e-4887-935f-7987920c5433", + "Name": "W12x152", + "CellId": 190, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0a636e3c-8750-4775-8cef-3259815aa117": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0a636e3c-8750-4775-8cef-3259815aa117", + "Name": null + }, + "9feb53d5-7151-447e-a797-a56b43122e6f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9feb53d5-7151-447e-a797-a56b43122e6f", + "Name": "W12x152", + "CellId": 190, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a38793d8-4d83-456c-a232-95d4562ac063": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a38793d8-4d83-456c-a232-95d4562ac063", + "Name": null + }, + "dcdff75d-e2b8-4965-942f-a8db5356e5b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "dcdff75d-e2b8-4965-942f-a8db5356e5b8", + "Name": "W12x152", + "CellId": 191, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "00e0e333-9e2d-4413-a9f3-899b413e8d83": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "00e0e333-9e2d-4413-a9f3-899b413e8d83", + "Name": null + }, + "fec41a59-2d7f-40fe-8be6-578364312850": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fec41a59-2d7f-40fe-8be6-578364312850", + "Name": "W12x152", + "CellId": 191, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7e8e07bf-0499-47d8-b942-3e1e4ea6ebd8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7e8e07bf-0499-47d8-b942-3e1e4ea6ebd8", + "Name": null + }, + "b2c09cf3-987a-4054-845f-ad7d9e5705a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b2c09cf3-987a-4054-845f-ad7d9e5705a9", + "Name": "W12x152", + "CellId": 191, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "072d60e9-bcd3-4262-a3c3-009491b6aeb6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "072d60e9-bcd3-4262-a3c3-009491b6aeb6", + "Name": null + }, + "dbd44ba8-c286-4648-9b24-32adf723eb72": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "dbd44ba8-c286-4648-9b24-32adf723eb72", + "Name": "W12x152", + "CellId": 192, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e1bf0b72-8971-44a9-9362-a2b74e24535e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e1bf0b72-8971-44a9-9362-a2b74e24535e", + "Name": null + }, + "869a235e-0bd5-4d79-8580-f1c610b267aa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "869a235e-0bd5-4d79-8580-f1c610b267aa", + "Name": "W12x152", + "CellId": 192, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb7b6147-28cd-48f2-8008-0e5216590695": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb7b6147-28cd-48f2-8008-0e5216590695", + "Name": null + }, + "6abd1bc6-caf1-4941-a087-bdd9651a363c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6abd1bc6-caf1-4941-a087-bdd9651a363c", + "Name": "W12x152", + "CellId": 192, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c0dd109e-dd8d-4ccb-b386-85be046920c6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c0dd109e-dd8d-4ccb-b386-85be046920c6", + "Name": null + }, + "45dcd078-3cd9-48d9-89c4-21e22cdbf8e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "45dcd078-3cd9-48d9-89c4-21e22cdbf8e1", + "Name": "W12x152", + "CellId": 193, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e1f08dfe-02e2-40d5-81c3-8b023ea4123f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e1f08dfe-02e2-40d5-81c3-8b023ea4123f", + "Name": null + }, + "926659b7-5457-4518-9acb-b3883bec4bed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "926659b7-5457-4518-9acb-b3883bec4bed", + "Name": "W12x152", + "CellId": 193, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5fe6d622-1c95-4afa-923a-362031a12f94": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5fe6d622-1c95-4afa-923a-362031a12f94", + "Name": null + }, + "babb4564-0b8f-4b9b-ad73-6acbafebe585": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -20.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "babb4564-0b8f-4b9b-ad73-6acbafebe585", + "Name": "W12x152", + "CellId": 193, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8ae6e5a9-acab-42b5-a3ba-b09d0f091919": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -20.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -15.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8ae6e5a9-acab-42b5-a3ba-b09d0f091919", + "Name": null + }, + "2f9b1433-430f-43e5-bddb-99084832c977": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2f9b1433-430f-43e5-bddb-99084832c977", + "Name": "W12x152", + "CellId": 194, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "07ebd760-e8cf-4966-bb33-226ec140ae04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "07ebd760-e8cf-4966-bb33-226ec140ae04", + "Name": null + }, + "455dff05-37ba-4c8e-af56-fd7619fc0d06": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "455dff05-37ba-4c8e-af56-fd7619fc0d06", + "Name": "W12x152", + "CellId": 194, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "092b1a88-f60e-4241-b8bc-cf3503111eab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "092b1a88-f60e-4241-b8bc-cf3503111eab", + "Name": null + }, + "68abaf05-12ef-4aeb-a598-6ea43759b67f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -18.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "68abaf05-12ef-4aeb-a598-6ea43759b67f", + "Name": "W12x152", + "CellId": 195, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "3d34fba3-24a6-437e-ae07-5c36c6153f22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -18.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -18.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3d34fba3-24a6-437e-ae07-5c36c6153f22", + "Name": null + }, + "37ff2700-6f59-4206-bff8-7e191867381e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -16.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "37ff2700-6f59-4206-bff8-7e191867381e", + "Name": "W12x152", + "CellId": 195, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "59ee5752-6dfa-4418-bc62-8a0b4bae932e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -16.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -16.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "59ee5752-6dfa-4418-bc62-8a0b4bae932e", + "Name": null + }, + "6b8d7332-dfc3-4156-980d-aaf94f145927": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6b8d7332-dfc3-4156-980d-aaf94f145927", + "Name": "W12x152", + "CellId": 196, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0821665f-6a7e-411e-9cae-f53615a35b76": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 12.2 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0821665f-6a7e-411e-9cae-f53615a35b76", + "Name": null + }, + "a1c1fd95-bc25-49b5-a185-f833b95ae324": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a1c1fd95-bc25-49b5-a185-f833b95ae324", + "Name": "W12x152", + "CellId": 196, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c7111c59-5113-4c7c-9d5f-aab2104319f2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 12.2 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c7111c59-5113-4c7c-9d5f-aab2104319f2", + "Name": null + }, + "3fc54c2f-e338-492f-a4c2-2dab38aba237": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "00428e4f-d368-4fa9-9b91-6b35a98db880", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -21.934266666666666, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3fc54c2f-e338-492f-a4c2-2dab38aba237", + "Name": "W12x152", + "CellId": 197, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7d4e0492-ce01-4131-8be4-34204a9103da": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -21.934266666666666, + "Z": 20.0 + }, + "End": { + "X": 24.021913333333334, + "Y": -21.934266666666666, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d4e0492-ce01-4131-8be4-34204a9103da", + "Name": null + }, + "4f4c0a1c-529d-40ec-b3d0-45ddc0fc55e1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "2a51b0ec-7a36-4993-b509-32bf4c52b9b4", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 23.0, + 0.0, + 1.0, + 0.0, + -23.467133333333333, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4f4c0a1c-529d-40ec-b3d0-45ddc0fc55e1", + "Name": "W12x152", + "CellId": 197, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9efb49e1-5574-49ef-a9e7-8617888beb1f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 23.0, + "Y": -23.467133333333333, + "Z": 20.0 + }, + "End": { + "X": 25.043826666666668, + "Y": -23.467133333333333, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9efb49e1-5574-49ef-a9e7-8617888beb1f", + "Name": null + }, + "f21b6af8-29eb-4a5c-8a13-d452b569abf8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f21b6af8-29eb-4a5c-8a13-d452b569abf8", + "Name": "W12x152", + "CellId": 198, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8c80997b-0327-446d-bfa2-569022693147": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8c80997b-0327-446d-bfa2-569022693147", + "Name": null + }, + "d445ba24-0ec4-4f2c-ac03-60a81876ce2e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d445ba24-0ec4-4f2c-ac03-60a81876ce2e", + "Name": "W12x152", + "CellId": 198, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "22e8f68f-b6a3-4d84-bbbe-719868d2e9a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22e8f68f-b6a3-4d84-bbbe-719868d2e9a8", + "Name": null + }, + "768a6187-ea5e-48f0-9b3e-bd6b1738760b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "768a6187-ea5e-48f0-9b3e-bd6b1738760b", + "Name": "W12x152", + "CellId": 198, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fbbf3977-ae7f-4d34-8a1d-fae2d128d998": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fbbf3977-ae7f-4d34-8a1d-fae2d128d998", + "Name": null + }, + "08974404-c81a-499e-8100-df78b963755a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "08974404-c81a-499e-8100-df78b963755a", + "Name": "W12x152", + "CellId": 199, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "caa28c24-6f72-42e0-8fc8-95b30a8523ba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "caa28c24-6f72-42e0-8fc8-95b30a8523ba", + "Name": null + }, + "6bbb3cc0-b123-4deb-ae11-b9b62a62f534": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6bbb3cc0-b123-4deb-ae11-b9b62a62f534", + "Name": "W12x152", + "CellId": 199, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "85f97a5a-c575-48d0-8a7e-b51a8dae04f1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "85f97a5a-c575-48d0-8a7e-b51a8dae04f1", + "Name": null + }, + "cd45d1dc-11ad-4790-a8a1-f097edc3e41c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cd45d1dc-11ad-4790-a8a1-f097edc3e41c", + "Name": "W12x152", + "CellId": 199, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b6b09ae8-10cb-4c53-9beb-885b784e3475": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b6b09ae8-10cb-4c53-9beb-885b784e3475", + "Name": null + }, + "069b8c79-6db9-4469-90b1-5ed49999c6cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "069b8c79-6db9-4469-90b1-5ed49999c6cc", + "Name": "W12x152", + "CellId": 200, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6a5f16db-984e-42a9-9ba0-3f35d63b826e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6a5f16db-984e-42a9-9ba0-3f35d63b826e", + "Name": null + }, + "832beff2-8eba-4891-a099-3fd7e276aa78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "832beff2-8eba-4891-a099-3fd7e276aa78", + "Name": "W12x152", + "CellId": 200, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ba10ece4-35a6-4c76-9a0d-6be6d16250cc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba10ece4-35a6-4c76-9a0d-6be6d16250cc", + "Name": null + }, + "c2d66f60-1d4c-4668-8c4e-20d8bef1c9ae": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c2d66f60-1d4c-4668-8c4e-20d8bef1c9ae", + "Name": "W12x152", + "CellId": 200, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8f80c72e-a275-4b00-b29c-f085c75ea30f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8f80c72e-a275-4b00-b29c-f085c75ea30f", + "Name": null + }, + "a1ce30db-7058-4874-a2be-09fcad3027a1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a1ce30db-7058-4874-a2be-09fcad3027a1", + "Name": "W12x152", + "CellId": 201, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "561735c1-a7e7-4782-ac62-19dade6b0a44": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "561735c1-a7e7-4782-ac62-19dade6b0a44", + "Name": null + }, + "277280b3-9009-41a8-9e9a-074f384d7408": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "277280b3-9009-41a8-9e9a-074f384d7408", + "Name": "W12x152", + "CellId": 201, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "167cc197-981b-4be2-9429-2273e5124e68": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "167cc197-981b-4be2-9429-2273e5124e68", + "Name": null + }, + "6563640a-3792-468c-80d1-6def1cb2b385": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6563640a-3792-468c-80d1-6def1cb2b385", + "Name": "W12x152", + "CellId": 201, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "37ae3b49-0a75-4ec9-9c7d-e6266e74d65b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "37ae3b49-0a75-4ec9-9c7d-e6266e74d65b", + "Name": null + }, + "c743df53-7060-4bb4-b0f0-89438144e9e4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c743df53-7060-4bb4-b0f0-89438144e9e4", + "Name": "W12x152", + "CellId": 202, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e11612f5-fc25-47eb-a6de-67df8675ec68": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e11612f5-fc25-47eb-a6de-67df8675ec68", + "Name": null + }, + "8b963dd1-70e7-4a73-b210-00e3fd777c0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8b963dd1-70e7-4a73-b210-00e3fd777c0e", + "Name": "W12x152", + "CellId": 202, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b67dbff7-7b0f-4bd2-952b-dcdc26f339f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b67dbff7-7b0f-4bd2-952b-dcdc26f339f9", + "Name": null + }, + "21833bb5-487c-4794-adfb-c3692418eca2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "21833bb5-487c-4794-adfb-c3692418eca2", + "Name": "W12x152", + "CellId": 202, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3df052d5-c394-43f6-b606-319ac6f4dabf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3df052d5-c394-43f6-b606-319ac6f4dabf", + "Name": null + }, + "ed1d9837-e33a-4282-a104-6afe5769b750": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ed1d9837-e33a-4282-a104-6afe5769b750", + "Name": "W12x152", + "CellId": 203, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cc84f90b-31c6-419f-adf6-3a9fa5ffb2c5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cc84f90b-31c6-419f-adf6-3a9fa5ffb2c5", + "Name": null + }, + "e1b543d4-23ed-4837-b848-15f96ec467a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e1b543d4-23ed-4837-b848-15f96ec467a5", + "Name": "W12x152", + "CellId": 203, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "30361e75-1064-461d-8da1-98404f84df45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "30361e75-1064-461d-8da1-98404f84df45", + "Name": null + }, + "ef396437-d73a-4243-8797-e70e13dc8177": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -25.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ef396437-d73a-4243-8797-e70e13dc8177", + "Name": "W12x152", + "CellId": 203, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d626bc41-f934-4974-8d89-3e4abeca81dd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -25.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -20.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d626bc41-f934-4974-8d89-3e4abeca81dd", + "Name": null + }, + "065ca07d-819a-40be-a3ac-26216a6b5b30": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "065ca07d-819a-40be-a3ac-26216a6b5b30", + "Name": "W12x152", + "CellId": 204, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "dc5c9c85-d2bc-490a-b9d7-bc32c7bdcb4d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc5c9c85-d2bc-490a-b9d7-bc32c7bdcb4d", + "Name": null + }, + "d6257d6d-c5de-48df-9259-91e139e0b997": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d6257d6d-c5de-48df-9259-91e139e0b997", + "Name": "W12x152", + "CellId": 204, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "f8eac900-ca0f-4691-8ec0-131f5223c9f4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f8eac900-ca0f-4691-8ec0-131f5223c9f4", + "Name": null + }, + "3df9ddfa-45b2-4186-acb0-515a1cd9c5bc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -23.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3df9ddfa-45b2-4186-acb0-515a1cd9c5bc", + "Name": "W12x152", + "CellId": 205, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7dc84077-9d1c-46cd-9f14-7544ee900002": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -23.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -23.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7dc84077-9d1c-46cd-9f14-7544ee900002", + "Name": null + }, + "e42711ab-e9e6-41b9-8898-9c50d96da17f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -21.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e42711ab-e9e6-41b9-8898-9c50d96da17f", + "Name": "W12x152", + "CellId": 205, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7d053e85-6985-428f-9afb-d113613472d1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -21.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -21.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d053e85-6985-428f-9afb-d113613472d1", + "Name": null + }, + "d129e60f-a050-4b33-beaf-103857669bac": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d129e60f-a050-4b33-beaf-103857669bac", + "Name": "W12x152", + "CellId": 206, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b0e04628-93fa-4358-87f2-69a32d36c205": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b0e04628-93fa-4358-87f2-69a32d36c205", + "Name": null + }, + "34a22241-0baf-464b-af39-75e40cd99124": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "34a22241-0baf-464b-af39-75e40cd99124", + "Name": "W12x152", + "CellId": 206, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b16f94a2-037b-4a9e-8718-b82dfbaa202f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b16f94a2-037b-4a9e-8718-b82dfbaa202f", + "Name": null + }, + "bffa9fab-0948-45ed-bb8b-dde1f079ae7d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bffa9fab-0948-45ed-bb8b-dde1f079ae7d", + "Name": "W12x152", + "CellId": 206, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "875db678-b544-4a32-9d3c-497b77d66005": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "875db678-b544-4a32-9d3c-497b77d66005", + "Name": null + }, + "4eef22d2-8521-4228-95ed-82f4813cd0fa": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.599764999999998, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4eef22d2-8521-4228-95ed-82f4813cd0fa", + "Name": "W12x152", + "CellId": 207, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ec1ea603-4c2a-4bd3-ab34-0bb2feb41252": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.599764999999998, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 24.599764999999998, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ec1ea603-4c2a-4bd3-ab34-0bb2feb41252", + "Name": null + }, + "ed6a939e-bcef-4fc8-96c5-e504dc3177d1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "c86c7794-702f-43dc-82a1-ccf5f1b5deea", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.19953, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ed6a939e-bcef-4fc8-96c5-e504dc3177d1", + "Name": "W12x152", + "CellId": 207, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "59eac6cc-d39b-4bea-9b0f-3bdf73f0b3a0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.19953, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 26.19953, + "Y": -25.20068580274321, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "59eac6cc-d39b-4bea-9b0f-3bdf73f0b3a0", + "Name": null + }, + "6c06a6e5-3f77-455d-b216-06f8a721d6b0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "d27c8274-35d1-48e6-a623-33a7ddfb778f", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.799295, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6c06a6e5-3f77-455d-b216-06f8a721d6b0", + "Name": "W12x152", + "CellId": 207, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a4c0fb2c-0fcf-4b7b-b94a-1aeb9d1d19b8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.799295, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 27.799295, + "Y": -27.600342901371604, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a4c0fb2c-0fcf-4b7b-b94a-1aeb9d1d19b8", + "Name": null + }, + "e74b14cb-27a8-4f05-b1de-2f8fde66bdce": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e74b14cb-27a8-4f05-b1de-2f8fde66bdce", + "Name": "W12x152", + "CellId": 208, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8cc7a260-5acf-4a27-96f9-14690518d676": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8cc7a260-5acf-4a27-96f9-14690518d676", + "Name": null + }, + "547fec0b-c560-4cca-9b0e-c660adb6b6a8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "547fec0b-c560-4cca-9b0e-c660adb6b6a8", + "Name": "W12x152", + "CellId": 208, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "19bc9928-74eb-491d-aab0-3a4f61d02baf": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "19bc9928-74eb-491d-aab0-3a4f61d02baf", + "Name": null + }, + "b260b5e2-ab32-40d8-af3f-b37c3054da93": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b260b5e2-ab32-40d8-af3f-b37c3054da93", + "Name": "W12x152", + "CellId": 208, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "12c29383-db53-4900-8a0e-34c812913bef": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "12c29383-db53-4900-8a0e-34c812913bef", + "Name": null + }, + "a45d4390-8524-4dfb-b797-64fff3a4974b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a45d4390-8524-4dfb-b797-64fff3a4974b", + "Name": "W12x152", + "CellId": 209, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a38a44a1-1087-43bb-b25b-79cec82e65d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a38a44a1-1087-43bb-b25b-79cec82e65d6", + "Name": null + }, + "e4e865e9-8101-4f34-bb0e-54af8a930291": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e4e865e9-8101-4f34-bb0e-54af8a930291", + "Name": "W12x152", + "CellId": 209, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "244b52bc-43bb-47d9-af1d-c0716206c7d3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "244b52bc-43bb-47d9-af1d-c0716206c7d3", + "Name": null + }, + "6e011abf-1c77-44b9-ba2e-3fdeaeac84be": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6e011abf-1c77-44b9-ba2e-3fdeaeac84be", + "Name": "W12x152", + "CellId": 209, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b3ab0e4d-9e4d-4225-9ab4-ae3c4dd3dc22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b3ab0e4d-9e4d-4225-9ab4-ae3c4dd3dc22", + "Name": null + }, + "cb83bf19-5724-4a83-841c-c1f379dce549": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "cb83bf19-5724-4a83-841c-c1f379dce549", + "Name": "W12x152", + "CellId": 210, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "870f733c-7b91-4e8b-b2ab-be1009055ede": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "870f733c-7b91-4e8b-b2ab-be1009055ede", + "Name": null + }, + "36ef32a4-2d6d-4b50-b35c-492d021b9bf6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "36ef32a4-2d6d-4b50-b35c-492d021b9bf6", + "Name": "W12x152", + "CellId": 210, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4daca590-a3f5-404c-84d9-5ca3fd6d8eed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4daca590-a3f5-404c-84d9-5ca3fd6d8eed", + "Name": null + }, + "9b6a9d7d-304b-40a0-aae5-840d5c0f8dcb": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9b6a9d7d-304b-40a0-aae5-840d5c0f8dcb", + "Name": "W12x152", + "CellId": 210, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb078d9e-9ab3-4363-ba98-c7a9b31c7667": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb078d9e-9ab3-4363-ba98-c7a9b31c7667", + "Name": null + }, + "ea472623-c07a-4df3-a711-8c17920c994c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ea472623-c07a-4df3-a711-8c17920c994c", + "Name": "W12x152", + "CellId": 211, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e38ad8ba-e1da-4bfe-8a5a-b56128e139d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e38ad8ba-e1da-4bfe-8a5a-b56128e139d6", + "Name": null + }, + "026c292b-e07b-4abd-aec3-72ea71b76613": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "026c292b-e07b-4abd-aec3-72ea71b76613", + "Name": "W12x152", + "CellId": 211, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7b925f08-e710-4308-af12-3d871292c787": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7b925f08-e710-4308-af12-3d871292c787", + "Name": null + }, + "8ec4ac2e-bb1e-4d0a-853a-934a4013370b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8ec4ac2e-bb1e-4d0a-853a-934a4013370b", + "Name": "W12x152", + "CellId": 211, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f76815cf-ba4f-42af-8fad-d6b91514d6c2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f76815cf-ba4f-42af-8fad-d6b91514d6c2", + "Name": null + }, + "18599b4e-e8bd-48a4-87a5-0c94e9c96c36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "18599b4e-e8bd-48a4-87a5-0c94e9c96c36", + "Name": "W12x152", + "CellId": 212, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f5951f67-16fe-4bd2-87ad-e9a4408af79d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f5951f67-16fe-4bd2-87ad-e9a4408af79d", + "Name": null + }, + "edefbfaf-3f9f-4995-b0a6-7611859e7e01": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "edefbfaf-3f9f-4995-b0a6-7611859e7e01", + "Name": "W12x152", + "CellId": 212, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "73dd04e5-eb26-4bb1-9545-85d959811912": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "73dd04e5-eb26-4bb1-9545-85d959811912", + "Name": null + }, + "2d6a5ca8-367d-4528-a056-f3086fcabfc0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2d6a5ca8-367d-4528-a056-f3086fcabfc0", + "Name": "W12x152", + "CellId": 212, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e3f9bb45-1bb6-4e94-b397-d0c82c0fef99": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e3f9bb45-1bb6-4e94-b397-d0c82c0fef99", + "Name": null + }, + "0b5d5713-7111-477a-b4c7-4fb752da3716": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0b5d5713-7111-477a-b4c7-4fb752da3716", + "Name": "W12x152", + "CellId": 213, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e252c25e-026b-4dd8-8266-5cc91c6de4b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e252c25e-026b-4dd8-8266-5cc91c6de4b4", + "Name": null + }, + "7ed90077-d0d7-4d7d-a816-e3c6781e1473": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7ed90077-d0d7-4d7d-a816-e3c6781e1473", + "Name": "W12x152", + "CellId": 213, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c29c71a4-e896-461d-80d5-0faa316cfe73": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c29c71a4-e896-461d-80d5-0faa316cfe73", + "Name": null + }, + "2b202578-d3c5-4403-bac5-067335364f50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -30.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2b202578-d3c5-4403-bac5-067335364f50", + "Name": "W12x152", + "CellId": 213, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "51bc9c1a-836f-440c-a972-ef4009fc1b35": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -30.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -25.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "51bc9c1a-836f-440c-a972-ef4009fc1b35", + "Name": null + }, + "d52e9cb5-d938-4fcd-a3a8-2a293d32d37c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d52e9cb5-d938-4fcd-a3a8-2a293d32d37c", + "Name": "W12x152", + "CellId": 214, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "1d05b534-f99f-4d7c-aba7-ae6996a44dc6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1d05b534-f99f-4d7c-aba7-ae6996a44dc6", + "Name": null + }, + "b13176bc-d39e-46ba-aa1b-d320b128c007": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b13176bc-d39e-46ba-aa1b-d320b128c007", + "Name": "W12x152", + "CellId": 214, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e226f9ab-8053-4ef6-ac5a-64ca65d473b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e226f9ab-8053-4ef6-ac5a-64ca65d473b3", + "Name": null + }, + "5b031f7c-8880-45f0-b389-b75d37e0dfe7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -28.333333333333332, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5b031f7c-8880-45f0-b389-b75d37e0dfe7", + "Name": "W12x152", + "CellId": 215, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c5c95476-58ec-40a8-943c-1c0806638e3b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -28.333333333333332, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -28.333333333333332, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c5c95476-58ec-40a8-943c-1c0806638e3b", + "Name": null + }, + "1597e7d0-858a-4987-8f86-6d18a7ae2489": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -26.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1597e7d0-858a-4987-8f86-6d18a7ae2489", + "Name": "W12x152", + "CellId": 215, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "97667cd1-3413-4b52-b864-5f2daa66e759": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -26.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -26.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97667cd1-3413-4b52-b864-5f2daa66e759", + "Name": null + }, + "3e197679-628f-4561-91db-f2638adcf0c8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3e197679-628f-4561-91db-f2638adcf0c8", + "Name": "W12x152", + "CellId": 216, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c498eec-16da-4e81-8dc7-cbae02ae3bb4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c498eec-16da-4e81-8dc7-cbae02ae3bb4", + "Name": null + }, + "1f854031-a2a6-475c-95b9-8634046a664f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1f854031-a2a6-475c-95b9-8634046a664f", + "Name": "W12x152", + "CellId": 216, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a41c3bcf-f57a-44b2-a61c-80aaf6815a93": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a41c3bcf-f57a-44b2-a61c-80aaf6815a93", + "Name": null + }, + "e88d051b-6025-486d-91cf-779763c00756": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e88d051b-6025-486d-91cf-779763c00756", + "Name": "W12x152", + "CellId": 216, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6b562cd-08fa-4d40-90f2-c78833520dc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6b562cd-08fa-4d40-90f2-c78833520dc5", + "Name": null + }, + "d585d892-5088-4f36-b75d-300228d84fd5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d585d892-5088-4f36-b75d-300228d84fd5", + "Name": "W12x152", + "CellId": 217, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "76ac7e82-8199-4db7-bbba-23f6672562ed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "76ac7e82-8199-4db7-bbba-23f6672562ed", + "Name": null + }, + "3c1df616-8ffd-4d51-b489-c51bc5683277": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3c1df616-8ffd-4d51-b489-c51bc5683277", + "Name": "W12x152", + "CellId": 217, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc61d93e-3648-4452-9d0d-a49e30e30851": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc61d93e-3648-4452-9d0d-a49e30e30851", + "Name": null + }, + "255170f6-7cc8-4a84-80a8-7533b861fd3a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "255170f6-7cc8-4a84-80a8-7533b861fd3a", + "Name": "W12x152", + "CellId": 217, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c2dd4093-f942-46e3-ab4c-ce2a29c653dc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c2dd4093-f942-46e3-ab4c-ce2a29c653dc", + "Name": null + }, + "3f74a732-5fbf-4754-a108-6f6c54a3f031": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3f74a732-5fbf-4754-a108-6f6c54a3f031", + "Name": "W12x152", + "CellId": 218, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f46fe036-92ea-4beb-980e-35bebbcc8c35": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f46fe036-92ea-4beb-980e-35bebbcc8c35", + "Name": null + }, + "bad1438c-07f8-4a5e-97a0-a9d12ed9558b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bad1438c-07f8-4a5e-97a0-a9d12ed9558b", + "Name": "W12x152", + "CellId": 218, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e62f178e-5c57-4aaa-ab08-db92dd71936c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e62f178e-5c57-4aaa-ab08-db92dd71936c", + "Name": null + }, + "364bb937-c1a8-4c1e-a91e-289943104dc6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "364bb937-c1a8-4c1e-a91e-289943104dc6", + "Name": "W12x152", + "CellId": 218, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fb6277f4-c47f-4ad8-bee6-347016b7880a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fb6277f4-c47f-4ad8-bee6-347016b7880a", + "Name": null + }, + "2fda33e4-86d1-4199-a5e1-d3192ce74f4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2fda33e4-86d1-4199-a5e1-d3192ce74f4f", + "Name": "W12x152", + "CellId": 219, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "7ac9155a-03cb-4c51-8bdb-a28b5901dce7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7ac9155a-03cb-4c51-8bdb-a28b5901dce7", + "Name": null + }, + "082c37fb-f440-4a9c-a2ac-260ad53e3b48": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "082c37fb-f440-4a9c-a2ac-260ad53e3b48", + "Name": "W12x152", + "CellId": 219, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9beba32b-c21b-464b-a103-76d084d9bb9a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9beba32b-c21b-464b-a103-76d084d9bb9a", + "Name": null + }, + "cc584d7d-c674-42fe-a4ee-23244b9a0766": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cc584d7d-c674-42fe-a4ee-23244b9a0766", + "Name": "W12x152", + "CellId": 219, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f1307c1d-3908-473b-8e5c-a50a569544db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f1307c1d-3908-473b-8e5c-a50a569544db", + "Name": null + }, + "84452574-19b9-42af-85f4-3723d2a23438": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "84452574-19b9-42af-85f4-3723d2a23438", + "Name": "W12x152", + "CellId": 220, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b5a6bd9-bb5b-4e8b-97a8-4eee9d658943": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b5a6bd9-bb5b-4e8b-97a8-4eee9d658943", + "Name": null + }, + "bcaedb7c-5d5a-4c55-bc76-2361ff7ba401": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bcaedb7c-5d5a-4c55-bc76-2361ff7ba401", + "Name": "W12x152", + "CellId": 220, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "df542904-bc2a-4b32-b715-1dfa41ff1244": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df542904-bc2a-4b32-b715-1dfa41ff1244", + "Name": null + }, + "9ecd8a2a-8713-4b45-93ef-6b0b74a70999": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9ecd8a2a-8713-4b45-93ef-6b0b74a70999", + "Name": "W12x152", + "CellId": 220, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "325f792a-7538-45db-a18a-108a931b2172": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "325f792a-7538-45db-a18a-108a931b2172", + "Name": null + }, + "79660b23-c5ed-4f6f-a309-8704ae4dc902": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "79660b23-c5ed-4f6f-a309-8704ae4dc902", + "Name": "W12x152", + "CellId": 221, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1c413d8e-01e7-4665-b913-cec16aae0062": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1c413d8e-01e7-4665-b913-cec16aae0062", + "Name": null + }, + "ae8dd1a3-79eb-494c-874b-ea593bd987e9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ae8dd1a3-79eb-494c-874b-ea593bd987e9", + "Name": "W12x152", + "CellId": 221, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8756bf20-af1d-4426-b1ad-37222cfaf216": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8756bf20-af1d-4426-b1ad-37222cfaf216", + "Name": null + }, + "9f4fe35f-f720-43d8-904b-bf71815097a2": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9f4fe35f-f720-43d8-904b-bf71815097a2", + "Name": "W12x152", + "CellId": 221, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2fca96ea-26d9-4629-8021-d5086fc29c81": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2fca96ea-26d9-4629-8021-d5086fc29c81", + "Name": null + }, + "ddecf78b-9217-4846-8ae3-72cc5510db4f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ddecf78b-9217-4846-8ae3-72cc5510db4f", + "Name": "W12x152", + "CellId": 222, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "851734ef-8ab4-4fac-b505-4e9002e3e6f5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "851734ef-8ab4-4fac-b505-4e9002e3e6f5", + "Name": null + }, + "811ec478-87f0-4ced-8d8d-8ebb17ca08de": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "811ec478-87f0-4ced-8d8d-8ebb17ca08de", + "Name": "W12x152", + "CellId": 222, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b687f437-1712-4691-8618-27233bcc8520": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b687f437-1712-4691-8618-27233bcc8520", + "Name": null + }, + "def0c310-7f28-4243-89bf-151c062ec409": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "def0c310-7f28-4243-89bf-151c062ec409", + "Name": "W12x152", + "CellId": 222, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ed820986-7a30-47e5-b34c-4c604334d7da": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed820986-7a30-47e5-b34c-4c604334d7da", + "Name": null + }, + "663e7262-b904-421f-bda0-ae64aa1042c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "663e7262-b904-421f-bda0-ae64aa1042c7", + "Name": "W12x152", + "CellId": 223, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "56990425-50ea-4919-9159-dddc118f17c1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "56990425-50ea-4919-9159-dddc118f17c1", + "Name": null + }, + "e5cbd9c4-b7c5-4f45-bdce-f016fca8f837": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e5cbd9c4-b7c5-4f45-bdce-f016fca8f837", + "Name": "W12x152", + "CellId": 223, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d106b2ec-9dcf-4ae9-8b66-1fde9d4fdc7e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d106b2ec-9dcf-4ae9-8b66-1fde9d4fdc7e", + "Name": null + }, + "cad0f28f-d4f3-4f5d-9e9e-2ae84b5b78af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -35.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cad0f28f-d4f3-4f5d-9e9e-2ae84b5b78af", + "Name": "W12x152", + "CellId": 223, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "885d039c-4a38-4a2f-aeb4-e5e3241a4895": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -35.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -30.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "885d039c-4a38-4a2f-aeb4-e5e3241a4895", + "Name": null + }, + "45406ae3-095d-436c-9137-b5b9a771ad36": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "45406ae3-095d-436c-9137-b5b9a771ad36", + "Name": "W12x152", + "CellId": 224, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "21303814-8937-4177-b497-d1eeb1a6512a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "21303814-8937-4177-b497-d1eeb1a6512a", + "Name": null + }, + "4c629d37-679b-4782-8361-c4f10d2fe145": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4c629d37-679b-4782-8361-c4f10d2fe145", + "Name": "W12x152", + "CellId": 224, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ef1ad821-8d4c-4edd-9f3b-43a8d04ec84b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ef1ad821-8d4c-4edd-9f3b-43a8d04ec84b", + "Name": null + }, + "934b8ffa-4aad-4203-9685-d43d646ff198": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -33.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "934b8ffa-4aad-4203-9685-d43d646ff198", + "Name": "W12x152", + "CellId": 225, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "74c64b2f-5f72-4c9b-8df0-2086d92b795f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -33.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -33.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "74c64b2f-5f72-4c9b-8df0-2086d92b795f", + "Name": null + }, + "6a014b81-fd5e-441b-ad94-b6ccaf769e0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -31.666666666666668, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6a014b81-fd5e-441b-ad94-b6ccaf769e0e", + "Name": "W12x152", + "CellId": 225, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e152f5d9-d4cd-45f7-a779-80666c1b58cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -31.666666666666668, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -31.666666666666668, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e152f5d9-d4cd-45f7-a779-80666c1b58cd", + "Name": null + }, + "ea155018-d6a8-45ec-be7d-98dc99a346b0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ea155018-d6a8-45ec-be7d-98dc99a346b0", + "Name": "W12x152", + "CellId": 226, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "87fecbcd-b941-46d4-9c5a-9b5fe8546b04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "87fecbcd-b941-46d4-9c5a-9b5fe8546b04", + "Name": null + }, + "1da03dd4-c188-46ec-a065-064dd57a45c1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1da03dd4-c188-46ec-a065-064dd57a45c1", + "Name": "W12x152", + "CellId": 226, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "011a7377-e389-4165-b172-c2325dc74969": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "011a7377-e389-4165-b172-c2325dc74969", + "Name": null + }, + "d970935a-6d6b-446f-ac4b-86ae2d8589e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d970935a-6d6b-446f-ac4b-86ae2d8589e5", + "Name": "W12x152", + "CellId": 226, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0b695268-b427-4a19-aff5-d1ac3da20af0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0b695268-b427-4a19-aff5-d1ac3da20af0", + "Name": null + }, + "613ec427-10d7-4cd9-9e39-30f03eee66cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "613ec427-10d7-4cd9-9e39-30f03eee66cd", + "Name": "W12x152", + "CellId": 227, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "acf256ea-1eb1-4946-8f81-eb61e0db97b6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "acf256ea-1eb1-4946-8f81-eb61e0db97b6", + "Name": null + }, + "e8a9d8f8-9b2e-47ba-b1a4-7d4dc07a728e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "e8a9d8f8-9b2e-47ba-b1a4-7d4dc07a728e", + "Name": "W12x152", + "CellId": 227, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cfec69ce-ba73-4acd-9182-2afa04b1e7e0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cfec69ce-ba73-4acd-9182-2afa04b1e7e0", + "Name": null + }, + "372d2924-99b9-41a9-b505-4a9d25cb9a38": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "372d2924-99b9-41a9-b505-4a9d25cb9a38", + "Name": "W12x152", + "CellId": 227, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b41d3767-2cb4-46d1-a384-4e00cf608371": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b41d3767-2cb4-46d1-a384-4e00cf608371", + "Name": null + }, + "7bdf3a5a-cfeb-43bd-8c80-aba81ecc4de8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7bdf3a5a-cfeb-43bd-8c80-aba81ecc4de8", + "Name": "W12x152", + "CellId": 228, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b069a2fd-eed8-48c1-aefc-76861ea29ba3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b069a2fd-eed8-48c1-aefc-76861ea29ba3", + "Name": null + }, + "e413a7bc-6737-49b2-859d-b06df4de670d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e413a7bc-6737-49b2-859d-b06df4de670d", + "Name": "W12x152", + "CellId": 228, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "54855627-0ef1-4df4-add4-db2c0b16b8cd": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "54855627-0ef1-4df4-add4-db2c0b16b8cd", + "Name": null + }, + "fc782bda-eef7-4813-a3c9-073fc4f6b698": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "fc782bda-eef7-4813-a3c9-073fc4f6b698", + "Name": "W12x152", + "CellId": 228, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2428b65d-2a11-4eab-99fb-e02a01f16fc3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2428b65d-2a11-4eab-99fb-e02a01f16fc3", + "Name": null + }, + "db472b91-797c-45b6-aff4-c035dc507a92": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "db472b91-797c-45b6-aff4-c035dc507a92", + "Name": "W12x152", + "CellId": 229, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "8c21e6c3-01c5-4d2b-9d02-0905102d9569": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "8c21e6c3-01c5-4d2b-9d02-0905102d9569", + "Name": null + }, + "a9a316a9-6176-47f4-8081-f1ac7a3cddda": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a9a316a9-6176-47f4-8081-f1ac7a3cddda", + "Name": "W12x152", + "CellId": 229, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4958da19-b711-4c84-8b38-562996913023": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4958da19-b711-4c84-8b38-562996913023", + "Name": null + }, + "587b0c40-151d-4b31-b53f-47607b6f2d73": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "587b0c40-151d-4b31-b53f-47607b6f2d73", + "Name": "W12x152", + "CellId": 229, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "27ddac7f-3e47-4674-b6ed-2d43d1c09d45": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "27ddac7f-3e47-4674-b6ed-2d43d1c09d45", + "Name": null + }, + "4771d0ce-22c0-47f8-baf7-1162039146d9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4771d0ce-22c0-47f8-baf7-1162039146d9", + "Name": "W12x152", + "CellId": 230, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "17f193a3-0106-4635-bc77-ed06f320579d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "17f193a3-0106-4635-bc77-ed06f320579d", + "Name": null + }, + "ff8cb904-950c-49c0-9d60-1e1386cfa67b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ff8cb904-950c-49c0-9d60-1e1386cfa67b", + "Name": "W12x152", + "CellId": 230, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d22d672d-beb8-46e3-9438-d1ede2463e2a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d22d672d-beb8-46e3-9438-d1ede2463e2a", + "Name": null + }, + "2280b289-df8e-4ccf-9799-428ab67f6f6a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2280b289-df8e-4ccf-9799-428ab67f6f6a", + "Name": "W12x152", + "CellId": 230, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c2c48efb-7a6a-4009-a770-b148c479314a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c2c48efb-7a6a-4009-a770-b148c479314a", + "Name": null + }, + "b86371f3-ca46-4df3-b8e1-88430fcd0ac6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b86371f3-ca46-4df3-b8e1-88430fcd0ac6", + "Name": "W12x152", + "CellId": 231, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f2b758ce-3084-4aef-a9b3-5ab83123b8a1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2b758ce-3084-4aef-a9b3-5ab83123b8a1", + "Name": null + }, + "55c54232-07e8-4c9e-84d0-28c23b39a20d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "55c54232-07e8-4c9e-84d0-28c23b39a20d", + "Name": "W12x152", + "CellId": 231, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3749d1fd-745c-4076-a29b-f6fe805e204c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3749d1fd-745c-4076-a29b-f6fe805e204c", + "Name": null + }, + "dbb07699-ed96-41eb-87ec-1707c99d11ff": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "dbb07699-ed96-41eb-87ec-1707c99d11ff", + "Name": "W12x152", + "CellId": 231, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9cee85c7-2f30-4406-98c4-344687fefb96": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9cee85c7-2f30-4406-98c4-344687fefb96", + "Name": null + }, + "2c413d70-b89b-4dfe-98dc-4f68ad2f0c32": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2c413d70-b89b-4dfe-98dc-4f68ad2f0c32", + "Name": "W12x152", + "CellId": 232, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fa67952b-3d21-48d1-b7ca-d631633ab602": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fa67952b-3d21-48d1-b7ca-d631633ab602", + "Name": null + }, + "685cb765-b243-4192-bbb0-3687040b932b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "685cb765-b243-4192-bbb0-3687040b932b", + "Name": "W12x152", + "CellId": 232, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ede7c8b0-d7f8-4947-b672-39426dee7169": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ede7c8b0-d7f8-4947-b672-39426dee7169", + "Name": null + }, + "691dae18-2e52-403e-911b-dc03b5e033ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "691dae18-2e52-403e-911b-dc03b5e033ed", + "Name": "W12x152", + "CellId": 232, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "db4df6c6-bba0-493f-833c-a54622efba8c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "db4df6c6-bba0-493f-833c-a54622efba8c", + "Name": null + }, + "b932259d-ee09-49c4-9a15-7afbabeffd0c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b932259d-ee09-49c4-9a15-7afbabeffd0c", + "Name": "W12x152", + "CellId": 233, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "eb7f9148-b878-431d-a8a0-e5323678a0c2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "eb7f9148-b878-431d-a8a0-e5323678a0c2", + "Name": null + }, + "cebc18fc-4b7b-4303-9bd8-2fa57c46b9b4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cebc18fc-4b7b-4303-9bd8-2fa57c46b9b4", + "Name": "W12x152", + "CellId": 233, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6fb3887d-632c-41df-9ba7-7976baa6fb21": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6fb3887d-632c-41df-9ba7-7976baa6fb21", + "Name": null + }, + "639cb86d-3294-4b91-ac07-87fe4b0cfa2b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -40.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "639cb86d-3294-4b91-ac07-87fe4b0cfa2b", + "Name": "W12x152", + "CellId": 233, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c4d8044b-2c39-407a-a38c-d57a8f61f39d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -40.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -35.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c4d8044b-2c39-407a-a38c-d57a8f61f39d", + "Name": null + }, + "bf654b89-75c5-4883-b420-c71e5b354d65": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bf654b89-75c5-4883-b420-c71e5b354d65", + "Name": "W12x152", + "CellId": 234, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "96d4a7e1-9550-48cf-805d-28924f4f3736": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "96d4a7e1-9550-48cf-805d-28924f4f3736", + "Name": null + }, + "b282442c-e08e-4e53-b297-140a4f282653": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "b282442c-e08e-4e53-b297-140a4f282653", + "Name": "W12x152", + "CellId": 234, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "978425b2-4721-4938-b081-f15f2befa319": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "978425b2-4721-4938-b081-f15f2befa319", + "Name": null + }, + "d1570447-e37a-41a4-85ce-77dd9f6864a3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -38.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d1570447-e37a-41a4-85ce-77dd9f6864a3", + "Name": "W12x152", + "CellId": 235, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "d2812af3-58b9-415f-84ef-8d18cd6c9ae3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -38.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -38.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d2812af3-58b9-415f-84ef-8d18cd6c9ae3", + "Name": null + }, + "05c250b5-23da-401d-bcfe-306283615248": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -36.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "05c250b5-23da-401d-bcfe-306283615248", + "Name": "W12x152", + "CellId": 235, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "bd1dbb83-4009-4f82-8f05-5d84368dd6a4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -36.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -36.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bd1dbb83-4009-4f82-8f05-5d84368dd6a4", + "Name": null + }, + "5965ce61-d619-4720-8e95-aa3d1594a602": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "5965ce61-d619-4720-8e95-aa3d1594a602", + "Name": "W12x152", + "CellId": 236, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1342e22d-2d32-4d0d-8821-311a38a02257": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1342e22d-2d32-4d0d-8821-311a38a02257", + "Name": null + }, + "7a6d1edf-ade7-4fba-b5f2-fdbee070a8dd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7a6d1edf-ade7-4fba-b5f2-fdbee070a8dd", + "Name": "W12x152", + "CellId": 236, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "298c2da8-ba43-486a-b887-2869517eb333": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "298c2da8-ba43-486a-b887-2869517eb333", + "Name": null + }, + "ad4d422b-b1e0-46fa-8e69-e451f38f52f3": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ad4d422b-b1e0-46fa-8e69-e451f38f52f3", + "Name": "W12x152", + "CellId": 236, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "29533858-6cda-418c-91fa-2c95b7501176": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "29533858-6cda-418c-91fa-2c95b7501176", + "Name": null + }, + "aaed6f50-a4a5-4515-bfc1-728ed9f5be78": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "aaed6f50-a4a5-4515-bfc1-728ed9f5be78", + "Name": "W12x152", + "CellId": 237, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9196f4cd-101f-46e2-97f6-a6b0818ad5a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9196f4cd-101f-46e2-97f6-a6b0818ad5a8", + "Name": null + }, + "17757663-20f0-4880-882c-33ec87980546": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "17757663-20f0-4880-882c-33ec87980546", + "Name": "W12x152", + "CellId": 237, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97eb7f8b-1ed2-446f-bd9e-c656243d7e04": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97eb7f8b-1ed2-446f-bd9e-c656243d7e04", + "Name": null + }, + "6a4fb796-a7e4-427d-b20d-16953a5ba202": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6a4fb796-a7e4-427d-b20d-16953a5ba202", + "Name": "W12x152", + "CellId": 237, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "10be4eec-8c4c-42f0-8f5d-8faafae0d62c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "10be4eec-8c4c-42f0-8f5d-8faafae0d62c", + "Name": null + }, + "944c69c3-5a99-4aba-9466-3c3d3cda32cd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "944c69c3-5a99-4aba-9466-3c3d3cda32cd", + "Name": "W12x152", + "CellId": 238, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9b57078c-6572-4643-8b51-e66217bb7c16": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b57078c-6572-4643-8b51-e66217bb7c16", + "Name": null + }, + "8e984be4-72f1-4cd2-b2e0-d337ee61f6a4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8e984be4-72f1-4cd2-b2e0-d337ee61f6a4", + "Name": "W12x152", + "CellId": 238, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc2eb208-332f-4546-9b19-c358dd562fc5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc2eb208-332f-4546-9b19-c358dd562fc5", + "Name": null + }, + "3df84bb7-64dd-4424-bd24-d9fc7c34e3b7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3df84bb7-64dd-4424-bd24-d9fc7c34e3b7", + "Name": "W12x152", + "CellId": 238, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4c6f224c-9e44-4f16-a6ac-f5d89a046fed": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4c6f224c-9e44-4f16-a6ac-f5d89a046fed", + "Name": null + }, + "ebda2594-e0cd-40d0-8e9e-d73ea638c33b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ebda2594-e0cd-40d0-8e9e-d73ea638c33b", + "Name": "W12x152", + "CellId": 239, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "42b4736e-bc0c-4ec4-8d14-965a27c57235": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "42b4736e-bc0c-4ec4-8d14-965a27c57235", + "Name": null + }, + "512a6c3e-99e7-413e-91d2-3d9d38a5907a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "512a6c3e-99e7-413e-91d2-3d9d38a5907a", + "Name": "W12x152", + "CellId": 239, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0e8c6ee2-e14e-4372-a5a8-e29943437c9e": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0e8c6ee2-e14e-4372-a5a8-e29943437c9e", + "Name": null + }, + "ee558dd0-a58c-481f-bc29-b27c5bbe496e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ee558dd0-a58c-481f-bc29-b27c5bbe496e", + "Name": "W12x152", + "CellId": 239, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1873d4e1-ae2c-49e6-b5a1-b9ec68cc8799": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1873d4e1-ae2c-49e6-b5a1-b9ec68cc8799", + "Name": null + }, + "05e9ae11-7756-437a-9576-b97f8ae01d44": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "05e9ae11-7756-437a-9576-b97f8ae01d44", + "Name": "W12x152", + "CellId": 240, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3fda42c8-9224-4a22-8eb2-29927380329b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3fda42c8-9224-4a22-8eb2-29927380329b", + "Name": null + }, + "4dc6a0df-b463-4ea1-acf0-5431a7842eb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4dc6a0df-b463-4ea1-acf0-5431a7842eb0", + "Name": "W12x152", + "CellId": 240, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "588587ad-52c5-4323-af56-7ddc53d392ff": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "588587ad-52c5-4323-af56-7ddc53d392ff", + "Name": null + }, + "f36cd6f2-dbf4-4219-ae01-6f8b652ec912": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f36cd6f2-dbf4-4219-ae01-6f8b652ec912", + "Name": "W12x152", + "CellId": 240, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bbaedc8d-4f04-4f70-9fe8-5a69c67c42eb": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bbaedc8d-4f04-4f70-9fe8-5a69c67c42eb", + "Name": null + }, + "fe65f187-ede0-47ac-a3ea-fd92fa0dde50": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "fe65f187-ede0-47ac-a3ea-fd92fa0dde50", + "Name": "W12x152", + "CellId": 241, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "100aa06a-2c7d-4d79-bfe1-b21c46d771a3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "100aa06a-2c7d-4d79-bfe1-b21c46d771a3", + "Name": null + }, + "1ea5b51c-7bb8-474f-94c5-80a95808c4c9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1ea5b51c-7bb8-474f-94c5-80a95808c4c9", + "Name": "W12x152", + "CellId": 241, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b7cf7e78-9f91-423d-8f81-62267d1db3f9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b7cf7e78-9f91-423d-8f81-62267d1db3f9", + "Name": null + }, + "4d195ba8-42a3-4553-b5eb-157712a54e0a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "4d195ba8-42a3-4553-b5eb-157712a54e0a", + "Name": "W12x152", + "CellId": 241, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bdde7b4e-3cba-4e78-aff5-ea7b730286a8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bdde7b4e-3cba-4e78-aff5-ea7b730286a8", + "Name": null + }, + "17100a29-699e-443c-b8cc-81698949477b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "17100a29-699e-443c-b8cc-81698949477b", + "Name": "W12x152", + "CellId": 242, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ba03af26-3c7d-4d57-ac14-eb48dc47413a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba03af26-3c7d-4d57-ac14-eb48dc47413a", + "Name": null + }, + "ae866f1a-131b-4a93-b3b0-b74715f8f334": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ae866f1a-131b-4a93-b3b0-b74715f8f334", + "Name": "W12x152", + "CellId": 242, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6d944e73-4ad4-4498-ae86-39dd7b9ea4b3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6d944e73-4ad4-4498-ae86-39dd7b9ea4b3", + "Name": null + }, + "313b23d6-1351-45eb-bc81-5efba9356a04": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "313b23d6-1351-45eb-bc81-5efba9356a04", + "Name": "W12x152", + "CellId": 242, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "25b26d36-deef-4921-916a-bb8a253ae307": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "25b26d36-deef-4921-916a-bb8a253ae307", + "Name": null + }, + "b7662883-3457-4d5b-afff-27f3a918e868": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b7662883-3457-4d5b-afff-27f3a918e868", + "Name": "W12x152", + "CellId": 243, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "444e3b25-6388-4f01-8d69-2633f937666d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "444e3b25-6388-4f01-8d69-2633f937666d", + "Name": null + }, + "ea15ef06-b78f-47f0-9967-d08070e32a44": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ea15ef06-b78f-47f0-9967-d08070e32a44", + "Name": "W12x152", + "CellId": 243, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5b311da2-51f7-4311-80f8-b25a85944f22": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5b311da2-51f7-4311-80f8-b25a85944f22", + "Name": null + }, + "73110a40-8766-46d0-8ee1-1311c76754fd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -45.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "73110a40-8766-46d0-8ee1-1311c76754fd", + "Name": "W12x152", + "CellId": 243, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "22456005-3290-4f0b-846a-77d71dc9f364": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -45.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -40.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22456005-3290-4f0b-846a-77d71dc9f364", + "Name": null + }, + "240f2f16-20c3-42f6-9926-a53dcd47f3e8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "240f2f16-20c3-42f6-9926-a53dcd47f3e8", + "Name": "W12x152", + "CellId": 244, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "0827e9d2-9420-4b2b-962c-58123c21e458": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0827e9d2-9420-4b2b-962c-58123c21e458", + "Name": null + }, + "f8d6f24e-c068-4b20-bb0f-bd978800fb77": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f8d6f24e-c068-4b20-bb0f-bd978800fb77", + "Name": "W12x152", + "CellId": 244, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "7d5ebb43-399c-4e4a-b987-cafa280ddd2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "7d5ebb43-399c-4e4a-b987-cafa280ddd2b", + "Name": null + }, + "02825d5e-c867-413d-8add-c8a19dcff584": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -43.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "02825d5e-c867-413d-8add-c8a19dcff584", + "Name": "W12x152", + "CellId": 245, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "106d56b2-500e-42eb-9807-3992857463f3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -43.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -43.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "106d56b2-500e-42eb-9807-3992857463f3", + "Name": null + }, + "b0af0b92-9b6a-43b4-b37b-195eec7088d6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -41.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "b0af0b92-9b6a-43b4-b37b-195eec7088d6", + "Name": "W12x152", + "CellId": 245, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "ba16b5b2-2eee-419a-8478-119857f64e81": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -41.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -41.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ba16b5b2-2eee-419a-8478-119857f64e81", + "Name": null + }, + "048a5dd2-740e-46ec-a302-db658c75bb08": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "048a5dd2-740e-46ec-a302-db658c75bb08", + "Name": "W12x152", + "CellId": 246, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4a4e51b9-5d85-4a0d-a619-f2aae9c7e8e4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4a4e51b9-5d85-4a0d-a619-f2aae9c7e8e4", + "Name": null + }, + "ffc00d8d-a179-4b3e-88e6-7e4cc92714ed": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ffc00d8d-a179-4b3e-88e6-7e4cc92714ed", + "Name": "W12x152", + "CellId": 246, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "df82553e-92f6-476e-beed-2220e7adfba2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "df82553e-92f6-476e-beed-2220e7adfba2", + "Name": null + }, + "45872959-839a-4717-87d2-292282b53f12": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "45872959-839a-4717-87d2-292282b53f12", + "Name": "W12x152", + "CellId": 246, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a6320dcb-1279-4e9f-989c-d56b8785e225": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a6320dcb-1279-4e9f-989c-d56b8785e225", + "Name": null + }, + "62fa5673-e833-4b4c-8a9e-cd9fa8612e7c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "62fa5673-e833-4b4c-8a9e-cd9fa8612e7c", + "Name": "W12x152", + "CellId": 247, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "533c5a09-08ea-4458-a9c6-53aea20dc0af": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "533c5a09-08ea-4458-a9c6-53aea20dc0af", + "Name": null + }, + "cbc2a5af-27d4-4660-92f6-8fee42305709": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cbc2a5af-27d4-4660-92f6-8fee42305709", + "Name": "W12x152", + "CellId": 247, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "82e81bef-8321-4799-85a8-13db922bc32b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "82e81bef-8321-4799-85a8-13db922bc32b", + "Name": null + }, + "3c59eba8-4d49-456c-ad78-1f49864b24e0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "3c59eba8-4d49-456c-ad78-1f49864b24e0", + "Name": "W12x152", + "CellId": 247, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "dc8e4b3a-7c3b-42e9-aeb7-8fd1d16e3367": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "dc8e4b3a-7c3b-42e9-aeb7-8fd1d16e3367", + "Name": null + }, + "4ccecdfc-a628-4f7b-bf2f-8d600a2006a6": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4ccecdfc-a628-4f7b-bf2f-8d600a2006a6", + "Name": "W12x152", + "CellId": 248, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e6b2edff-701d-4928-a207-afbdcb4cce94": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e6b2edff-701d-4928-a207-afbdcb4cce94", + "Name": null + }, + "c1544570-e92e-49c1-9018-c9386a121a28": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "c1544570-e92e-49c1-9018-c9386a121a28", + "Name": "W12x152", + "CellId": 248, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "31e11c25-0974-4866-9ecc-90bf4211f2fe": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "31e11c25-0974-4866-9ecc-90bf4211f2fe", + "Name": null + }, + "8ab12a94-61cd-4465-9743-7a2ffb54b876": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "8ab12a94-61cd-4465-9743-7a2ffb54b876", + "Name": "W12x152", + "CellId": 248, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bc67482b-41a3-4417-902e-478b36a9636b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bc67482b-41a3-4417-902e-478b36a9636b", + "Name": null + }, + "7878b4da-f5db-458d-93e8-689522e338c4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "7878b4da-f5db-458d-93e8-689522e338c4", + "Name": "W12x152", + "CellId": 249, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fd70ea10-84f9-4cde-9b3a-0cd10cc1cff8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fd70ea10-84f9-4cde-9b3a-0cd10cc1cff8", + "Name": null + }, + "1f2f6ac5-c9e3-4533-9c65-e96fcfe7a3a9": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "1f2f6ac5-c9e3-4533-9c65-e96fcfe7a3a9", + "Name": "W12x152", + "CellId": 249, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fc739526-aac6-481b-8b32-486370c71055": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fc739526-aac6-481b-8b32-486370c71055", + "Name": null + }, + "5814510a-a2c2-40e6-ac04-e74f3b07d58c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5814510a-a2c2-40e6-ac04-e74f3b07d58c", + "Name": "W12x152", + "CellId": 249, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cf463490-a6f5-4054-b9a8-aa2560ec9864": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cf463490-a6f5-4054-b9a8-aa2560ec9864", + "Name": null + }, + "df2cb33c-030f-4c8d-9bcb-a859decfa455": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "df2cb33c-030f-4c8d-9bcb-a859decfa455", + "Name": "W12x152", + "CellId": 250, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "a9effb7a-af8e-4219-a14d-b1fd51719f34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "a9effb7a-af8e-4219-a14d-b1fd51719f34", + "Name": null + }, + "7473238f-88ec-43bc-ad2a-0c73fd07e393": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7473238f-88ec-43bc-ad2a-0c73fd07e393", + "Name": "W12x152", + "CellId": 250, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "9de1bd77-70f7-4d49-b601-67079cb94294": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9de1bd77-70f7-4d49-b601-67079cb94294", + "Name": null + }, + "16820ee6-9dc4-4324-9ad9-aa79becf0601": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "16820ee6-9dc4-4324-9ad9-aa79becf0601", + "Name": "W12x152", + "CellId": 250, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "98aed35a-480a-433f-a928-3fc6959e5d1b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "98aed35a-480a-433f-a928-3fc6959e5d1b", + "Name": null + }, + "443754f2-27ca-4e63-bf19-8cb8d5d4904a": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "443754f2-27ca-4e63-bf19-8cb8d5d4904a", + "Name": "W12x152", + "CellId": 251, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41d16b7d-f2ea-43e8-88ef-b3092ca281c8": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41d16b7d-f2ea-43e8-88ef-b3092ca281c8", + "Name": null + }, + "f419123f-0b3d-4f1c-8ccb-8f2b4899187e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f419123f-0b3d-4f1c-8ccb-8f2b4899187e", + "Name": "W12x152", + "CellId": 251, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0ba689d3-f39e-4730-971d-8e91c1cb7eb0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0ba689d3-f39e-4730-971d-8e91c1cb7eb0", + "Name": null + }, + "5f3a62be-74a9-44df-952e-155390397ac1": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5f3a62be-74a9-44df-952e-155390397ac1", + "Name": "W12x152", + "CellId": 251, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "86327474-4649-4060-a0b2-c5ce9814ff95": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "86327474-4649-4060-a0b2-c5ce9814ff95", + "Name": null + }, + "a4577dba-fca3-4d3f-9ad9-bc7066cd86b8": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a4577dba-fca3-4d3f-9ad9-bc7066cd86b8", + "Name": "W12x152", + "CellId": 252, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cad17d14-1b7e-4416-add4-a3a5481e684a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cad17d14-1b7e-4416-add4-a3a5481e684a", + "Name": null + }, + "6c33a11b-c08b-4217-8e60-17b3e339d48f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "6c33a11b-c08b-4217-8e60-17b3e339d48f", + "Name": "W12x152", + "CellId": 252, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "566b174f-383b-4657-ab0a-10c8e42e1257": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "566b174f-383b-4657-ab0a-10c8e42e1257", + "Name": null + }, + "d76e5f68-d384-41ba-9338-acf5e565b26c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d76e5f68-d384-41ba-9338-acf5e565b26c", + "Name": "W12x152", + "CellId": 252, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4527cc90-6e18-437e-bf44-429dc97f1689": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4527cc90-6e18-437e-bf44-429dc97f1689", + "Name": null + }, + "873f52f7-4d94-42c5-bef1-9e5724c0df8e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "873f52f7-4d94-42c5-bef1-9e5724c0df8e", + "Name": "W12x152", + "CellId": 253, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5253dbca-0546-4d16-81b1-7253886db9ee": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5253dbca-0546-4d16-81b1-7253886db9ee", + "Name": null + }, + "ae10f866-38ed-4026-a627-23218bada770": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ae10f866-38ed-4026-a627-23218bada770", + "Name": "W12x152", + "CellId": 253, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "72224995-fe0e-49f1-b734-437661ae909d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "72224995-fe0e-49f1-b734-437661ae909d", + "Name": null + }, + "9150b0a7-b2c0-42c8-8340-4675dee03140": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -50.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9150b0a7-b2c0-42c8-8340-4675dee03140", + "Name": "W12x152", + "CellId": 253, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ee78cbd5-0c32-4f68-b68f-0ada1d5e7169": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -50.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -45.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ee78cbd5-0c32-4f68-b68f-0ada1d5e7169", + "Name": null + }, + "2f4d8014-07ff-4c8d-a693-95aa68237191": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "2f4d8014-07ff-4c8d-a693-95aa68237191", + "Name": "W12x152", + "CellId": 254, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "411ef4f3-d050-4274-8ee6-69403f44208b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "411ef4f3-d050-4274-8ee6-69403f44208b", + "Name": null + }, + "d65f119f-2ba9-4532-82f4-1bb2e9859fea": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d65f119f-2ba9-4532-82f4-1bb2e9859fea", + "Name": "W12x152", + "CellId": 254, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "60af6a0d-44af-4395-96a7-c826f119faf9": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "60af6a0d-44af-4395-96a7-c826f119faf9", + "Name": null + }, + "ca5a7a69-0a2a-4ae9-9401-492b61a74f4b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -48.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "ca5a7a69-0a2a-4ae9-9401-492b61a74f4b", + "Name": "W12x152", + "CellId": 255, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "c4dbab9c-9eb3-4bdb-9e57-8b95f971d8f0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -48.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -48.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c4dbab9c-9eb3-4bdb-9e57-8b95f971d8f0", + "Name": null + }, + "149036c1-d7f1-4cec-973f-615b557f18e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -46.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "149036c1-d7f1-4cec-973f-615b557f18e5", + "Name": "W12x152", + "CellId": 255, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "2d44e3b4-b048-473d-a459-7b683b3b9bcc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -46.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -46.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d44e3b4-b048-473d-a459-7b683b3b9bcc", + "Name": null + }, + "a7017c19-bc35-45c7-867e-7f6043c6e936": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a7017c19-bc35-45c7-867e-7f6043c6e936", + "Name": "W12x152", + "CellId": 256, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41525725-aa89-4235-9ce5-c490b094ea9c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41525725-aa89-4235-9ce5-c490b094ea9c", + "Name": null + }, + "3538d801-2160-48c7-bfbd-13a025c01ccd": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "3538d801-2160-48c7-bfbd-13a025c01ccd", + "Name": "W12x152", + "CellId": 256, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d1a72875-efe4-48c0-80e8-5e1589400419": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d1a72875-efe4-48c0-80e8-5e1589400419", + "Name": null + }, + "246e9b6d-c577-4de7-ba7d-2c67e09f0c0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "246e9b6d-c577-4de7-ba7d-2c67e09f0c0e", + "Name": "W12x152", + "CellId": 256, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1be20819-dc87-4828-93d3-3b64ff7edf52": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1be20819-dc87-4828-93d3-3b64ff7edf52", + "Name": null + }, + "5e7f2f0b-ef5e-47fe-b656-e066d75351cc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5e7f2f0b-ef5e-47fe-b656-e066d75351cc", + "Name": "W12x152", + "CellId": 257, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5e57cd56-af58-4928-8f7d-95877cb417a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5e57cd56-af58-4928-8f7d-95877cb417a6", + "Name": null + }, + "16f4c555-b3a4-433f-bae0-9a2606d44bc5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "16f4c555-b3a4-433f-bae0-9a2606d44bc5", + "Name": "W12x152", + "CellId": 257, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "413a0db5-cf3e-469e-aab7-57ec80fc6367": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "413a0db5-cf3e-469e-aab7-57ec80fc6367", + "Name": null + }, + "c313180a-d7d8-4886-abc8-ba83456a767d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c313180a-d7d8-4886-abc8-ba83456a767d", + "Name": "W12x152", + "CellId": 257, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97976d78-2b8f-42b2-8021-7fd11c9d442a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97976d78-2b8f-42b2-8021-7fd11c9d442a", + "Name": null + }, + "d87f3bea-564d-4371-bdc6-3bd6eebd30c7": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d87f3bea-564d-4371-bdc6-3bd6eebd30c7", + "Name": "W12x152", + "CellId": 258, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "3813856e-47a5-4ec3-86e8-60bb9098a640": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "3813856e-47a5-4ec3-86e8-60bb9098a640", + "Name": null + }, + "1670dc25-da98-481b-ad39-2d88c2790003": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1670dc25-da98-481b-ad39-2d88c2790003", + "Name": "W12x152", + "CellId": 258, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c8afeb62-331d-45f3-af3c-7054ec969ef0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c8afeb62-331d-45f3-af3c-7054ec969ef0", + "Name": null + }, + "156a8484-51bc-4d59-86b5-8e10ca0485fc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "156a8484-51bc-4d59-86b5-8e10ca0485fc", + "Name": "W12x152", + "CellId": 258, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "911bc420-2b57-4e6f-8288-ad88fb2780be": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "911bc420-2b57-4e6f-8288-ad88fb2780be", + "Name": null + }, + "6a1e5b5a-09cc-468b-95db-f1f020bdea60": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "6a1e5b5a-09cc-468b-95db-f1f020bdea60", + "Name": "W12x152", + "CellId": 259, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "bee6abd3-b6d1-4925-8545-b6d18874df51": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "bee6abd3-b6d1-4925-8545-b6d18874df51", + "Name": null + }, + "5c8c79b0-1335-49d7-b6bf-6a9e16da3efc": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5c8c79b0-1335-49d7-b6bf-6a9e16da3efc", + "Name": "W12x152", + "CellId": 259, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "ed8c49cc-c239-4679-85c7-78529eac0874": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "ed8c49cc-c239-4679-85c7-78529eac0874", + "Name": null + }, + "be7bf444-9662-4021-86bd-79de80328ec4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "be7bf444-9662-4021-86bd-79de80328ec4", + "Name": "W12x152", + "CellId": 259, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "0c94689a-4c67-4aa5-a603-bff5c59fe504": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "0c94689a-4c67-4aa5-a603-bff5c59fe504", + "Name": null + }, + "1bc744f5-79f3-4d6f-82af-f078d0e7f0ee": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "1bc744f5-79f3-4d6f-82af-f078d0e7f0ee", + "Name": "W12x152", + "CellId": 260, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "42bbaf5c-4116-4570-a43a-cf8e8883d965": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "42bbaf5c-4116-4570-a43a-cf8e8883d965", + "Name": null + }, + "048943f4-a51c-4616-9e13-7bdffac362fe": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "048943f4-a51c-4616-9e13-7bdffac362fe", + "Name": "W12x152", + "CellId": 260, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6b696faa-20c2-4947-a1b2-9ec79df578db": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6b696faa-20c2-4947-a1b2-9ec79df578db", + "Name": null + }, + "f972a672-4859-4bec-b0ef-b80822ee2b0e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "f972a672-4859-4bec-b0ef-b80822ee2b0e", + "Name": "W12x152", + "CellId": 260, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e79f37b5-a7c0-47ca-aa18-b02b781a7dba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e79f37b5-a7c0-47ca-aa18-b02b781a7dba", + "Name": null + }, + "2cefb9a0-5285-4584-9dde-4f3162116893": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "2cefb9a0-5285-4584-9dde-4f3162116893", + "Name": "W12x152", + "CellId": 261, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6eff5319-96fc-4c64-8271-e75f566631a2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6eff5319-96fc-4c64-8271-e75f566631a2", + "Name": null + }, + "f8f4967a-5420-4e7d-af42-82e5bfa9dc89": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f8f4967a-5420-4e7d-af42-82e5bfa9dc89", + "Name": "W12x152", + "CellId": 261, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "412fe3ef-5827-43c6-b24f-683966d143bc": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "412fe3ef-5827-43c6-b24f-683966d143bc", + "Name": null + }, + "5e357f0a-5698-4516-9ca6-b20637f8ecde": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5e357f0a-5698-4516-9ca6-b20637f8ecde", + "Name": "W12x152", + "CellId": 261, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "55da54ec-2cdf-4ce7-856c-1653bb4a193b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "55da54ec-2cdf-4ce7-856c-1653bb4a193b", + "Name": null + }, + "e76ca618-0f58-4388-94cc-757cefd6a01c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "e76ca618-0f58-4388-94cc-757cefd6a01c", + "Name": "W12x152", + "CellId": 262, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "4efb47d9-897a-48d7-9b8e-04b2d914e397": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "4efb47d9-897a-48d7-9b8e-04b2d914e397", + "Name": null + }, + "4c6ad451-6f4c-482a-a810-c820d4931e91": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "4c6ad451-6f4c-482a-a810-c820d4931e91", + "Name": "W12x152", + "CellId": 262, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "b68fba6a-0c19-40b2-a997-9e1a3d7cfe58": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b68fba6a-0c19-40b2-a997-9e1a3d7cfe58", + "Name": null + }, + "09d91bb1-e826-47c4-a20e-2f3799b3913f": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "09d91bb1-e826-47c4-a20e-2f3799b3913f", + "Name": "W12x152", + "CellId": 262, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "462f7acf-6443-480f-b047-4f1d18497669": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "462f7acf-6443-480f-b047-4f1d18497669", + "Name": null + }, + "8fdfef3a-2092-431d-b3bc-3198971c5b3e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8fdfef3a-2092-431d-b3bc-3198971c5b3e", + "Name": "W12x152", + "CellId": 263, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "d17dab8a-14c6-4ed8-a3b7-9a0eef759859": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "d17dab8a-14c6-4ed8-a3b7-9a0eef759859", + "Name": null + }, + "f033586d-b5cf-4305-bb33-2a90fdb2a009": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f033586d-b5cf-4305-bb33-2a90fdb2a009", + "Name": "W12x152", + "CellId": 263, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5d57755c-039e-4eb7-a9d1-924b2f5db8a0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5d57755c-039e-4eb7-a9d1-924b2f5db8a0", + "Name": null + }, + "f379c24e-e809-4141-9bc7-99a3eb08c692": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b835b073-27e7-4087-a023-3557ecf67ad3", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -55.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "f379c24e-e809-4141-9bc7-99a3eb08c692", + "Name": "W12x152", + "CellId": 263, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "878a8c32-7829-48fb-baf5-3b72e91d0f2b": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -55.0, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -50.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "878a8c32-7829-48fb-baf5-3b72e91d0f2b", + "Name": null + }, + "a9317422-7903-4d44-8b83-a69138a19246": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a9317422-7903-4d44-8b83-a69138a19246", + "Name": "W12x152", + "CellId": 264, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "388f554e-f1db-487c-beed-eeaf1cdb91a6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "388f554e-f1db-487c-beed-eeaf1cdb91a6", + "Name": null + }, + "444e31a9-b442-4a6a-a1a0-0675734fd896": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "444e31a9-b442-4a6a-a1a0-0675734fd896", + "Name": "W12x152", + "CellId": 264, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "e36f8b53-d537-4d45-9d83-59c60c9948de": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e36f8b53-d537-4d45-9d83-59c60c9948de", + "Name": null + }, + "5229ba1f-76f0-4c56-a9b4-677e5f14fb7e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -53.333333333333336, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5229ba1f-76f0-4c56-a9b4-677e5f14fb7e", + "Name": "W12x152", + "CellId": 265, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9b9bfc3c-69c5-47aa-becf-e3f44ecc38c3": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -53.333333333333336, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -53.333333333333336, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9b9bfc3c-69c5-47aa-becf-e3f44ecc38c3", + "Name": null + }, + "280ca4c5-fdab-41a3-96b2-5cfd62c3b52e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -51.666666666666664, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "280ca4c5-fdab-41a3-96b2-5cfd62c3b52e", + "Name": "W12x152", + "CellId": 265, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b14eb587-28c2-4c27-a824-4f1cb8ecff44": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -51.666666666666664, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -51.666666666666664, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b14eb587-28c2-4c27-a824-4f1cb8ecff44", + "Name": null + }, + "bc5f6760-d8e3-457e-b263-3f27315c8bef": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "bc5f6760-d8e3-457e-b263-3f27315c8bef", + "Name": "W12x152", + "CellId": 266, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "2d76032c-5167-4eaf-b533-15a5d0a0e1d6": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "2d76032c-5167-4eaf-b533-15a5d0a0e1d6", + "Name": null + }, + "9ff6d3a4-4e1b-40a8-939e-ba9372e6b653": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "9ff6d3a4-4e1b-40a8-939e-ba9372e6b653", + "Name": "W12x152", + "CellId": 266, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "e4dff7bc-5d64-4d24-b65f-0bf31fa180a5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "e4dff7bc-5d64-4d24-b65f-0bf31fa180a5", + "Name": null + }, + "32e04c9f-57cd-4e0c-8d6b-bd931556ab1e": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "32e04c9f-57cd-4e0c-8d6b-bd931556ab1e", + "Name": "W12x152", + "CellId": 266, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "43a886f3-3a6c-4277-9d1b-b8631fc69730": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "43a886f3-3a6c-4277-9d1b-b8631fc69730", + "Name": null + }, + "d999c815-d4e7-41cd-a54a-97f0c6599679": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 24.625, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "d999c815-d4e7-41cd-a54a-97f0c6599679", + "Name": "W12x152", + "CellId": 267, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "14fac723-342d-4afe-9317-f567a2a76bab": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 24.625, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 24.625, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "14fac723-342d-4afe-9317-f567a2a76bab", + "Name": null + }, + "9883b48f-2ac0-4a0e-9798-c5367a0cb6ba": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 26.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "9883b48f-2ac0-4a0e-9798-c5367a0cb6ba", + "Name": "W12x152", + "CellId": 267, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "5f064f21-d776-4257-9c80-7fc752be4d20": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 26.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 26.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5f064f21-d776-4257-9c80-7fc752be4d20", + "Name": null + }, + "c3b789ee-6fbf-453c-8532-e907bd9c4c38": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 27.875, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "c3b789ee-6fbf-453c-8532-e907bd9c4c38", + "Name": "W12x152", + "CellId": 267, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "74dda031-834c-4a01-b4eb-89665cb5f69d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 27.875, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 27.875, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "74dda031-834c-4a01-b4eb-89665cb5f69d", + "Name": null + }, + "d59f2f4a-6f65-49af-8114-98769cbffcd0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d59f2f4a-6f65-49af-8114-98769cbffcd0", + "Name": "W12x152", + "CellId": 268, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1396e7b8-80d2-4c3b-9934-d3d9cce40d8d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1396e7b8-80d2-4c3b-9934-d3d9cce40d8d", + "Name": null + }, + "a97f33cd-19b1-492d-95c9-ff0b87f383f4": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a97f33cd-19b1-492d-95c9-ff0b87f383f4", + "Name": "W12x152", + "CellId": 268, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "745ea2ae-e26b-4d69-b9c1-afaac1ea181c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "745ea2ae-e26b-4d69-b9c1-afaac1ea181c", + "Name": null + }, + "13a39e14-51fe-4535-a4ea-7ed181947930": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "13a39e14-51fe-4535-a4ea-7ed181947930", + "Name": "W12x152", + "CellId": 268, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "41027711-0a10-4e07-9646-77d1fd896100": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "41027711-0a10-4e07-9646-77d1fd896100", + "Name": null + }, + "0f78be49-af48-461e-89e5-df2a556d406b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 17.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "0f78be49-af48-461e-89e5-df2a556d406b", + "Name": "W12x152", + "CellId": 269, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1b1bf6d5-6bf3-4990-9bf5-712d4f1e771c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 17.75, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 17.75, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b1bf6d5-6bf3-4990-9bf5-712d4f1e771c", + "Name": null + }, + "13a2150b-ed26-4c73-98e3-11bbf1594b96": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 19.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "13a2150b-ed26-4c73-98e3-11bbf1594b96", + "Name": "W12x152", + "CellId": 269, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "f2dd9e84-9745-4f50-8484-4243385f01b4": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 19.5, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 19.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "f2dd9e84-9745-4f50-8484-4243385f01b4", + "Name": null + }, + "a42d84c3-ce88-4459-aa43-1714ce5285c5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 21.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "a42d84c3-ce88-4459-aa43-1714ce5285c5", + "Name": "W12x152", + "CellId": 269, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "c9a59aa1-f9e8-447f-bbc4-526ed65e1567": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 21.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 21.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "c9a59aa1-f9e8-447f-bbc4-526ed65e1567", + "Name": null + }, + "71500eb7-44b5-410a-ac2e-821c46f2b0d5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "71500eb7-44b5-410a-ac2e-821c46f2b0d5", + "Name": "W12x152", + "CellId": 270, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "cefdf73a-a9eb-4207-820f-6c684f1ebaf5": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "cefdf73a-a9eb-4207-820f-6c684f1ebaf5", + "Name": null + }, + "748b51f4-b37d-41ab-a7f1-fb4c95f6b87b": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "748b51f4-b37d-41ab-a7f1-fb4c95f6b87b", + "Name": "W12x152", + "CellId": 270, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "97ea8fc6-866d-431f-80a3-9fb7874b6331": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "97ea8fc6-866d-431f-80a3-9fb7874b6331", + "Name": null + }, + "ba71dab4-412d-42c3-9da3-a3a2cf1c5d74": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "ba71dab4-412d-42c3-9da3-a3a2cf1c5d74", + "Name": "W12x152", + "CellId": 270, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "390e1daa-5313-48c4-90cc-85262a0adc2c": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "390e1daa-5313-48c4-90cc-85262a0adc2c", + "Name": null + }, + "eefcb350-7559-40bc-bd6b-03f49138a1e5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 10.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "eefcb350-7559-40bc-bd6b-03f49138a1e5", + "Name": "W12x152", + "CellId": 271, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fe9b5fe2-9171-4350-85fe-f165fe2e5b34": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 10.75, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 10.75, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fe9b5fe2-9171-4350-85fe-f165fe2e5b34", + "Name": null + }, + "bee869ce-3cba-44af-9b05-a52f1edd012c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 12.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "bee869ce-3cba-44af-9b05-a52f1edd012c", + "Name": "W12x152", + "CellId": 271, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "50f20255-5701-45d2-b9d4-d04a2972d03a": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 12.5, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 12.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "50f20255-5701-45d2-b9d4-d04a2972d03a", + "Name": null + }, + "8fb765da-b3f0-4794-afb5-bba89e4e5fb0": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 14.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "8fb765da-b3f0-4794-afb5-bba89e4e5fb0", + "Name": "W12x152", + "CellId": 271, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6c4afac9-cb8d-4d1c-8129-c23fbb5ecbc7": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 14.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 14.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6c4afac9-cb8d-4d1c-8129-c23fbb5ecbc7", + "Name": null + }, + "7d9f43ce-53b5-45f0-93d7-b79a14756407": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "7d9f43ce-53b5-45f0-93d7-b79a14756407", + "Name": "W12x152", + "CellId": 272, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6131b992-e1c1-483a-9a64-c33ebbc90dd0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6131b992-e1c1-483a-9a64-c33ebbc90dd0", + "Name": null + }, + "45ec6bd2-d8e0-427b-b22d-a2b4d4e87816": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "45ec6bd2-d8e0-427b-b22d-a2b4d4e87816", + "Name": "W12x152", + "CellId": 272, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "fcecb8b9-633f-4c1d-a66c-5333076ece4f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "fcecb8b9-633f-4c1d-a66c-5333076ece4f", + "Name": null + }, + "d15e65f4-7369-4487-870d-5cea884dde8d": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "d15e65f4-7369-4487-870d-5cea884dde8d", + "Name": "W12x152", + "CellId": 272, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1b6200e3-049b-40fa-a04c-c3aa421122b2": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 12.2 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b6200e3-049b-40fa-a04c-c3aa421122b2", + "Name": null + }, + "57cccd3c-36f6-43f4-aa93-b2a3c4ce3e8c": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 3.75, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "57cccd3c-36f6-43f4-aa93-b2a3c4ce3e8c", + "Name": "W12x152", + "CellId": 273, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "22e47cff-164b-4caf-9bdf-4fc5fd166054": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 3.75, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 3.75, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "22e47cff-164b-4caf-9bdf-4fc5fd166054", + "Name": null + }, + "66bedf0a-43ef-48b3-933f-d94499bd09a5": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 5.5, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "66bedf0a-43ef-48b3-933f-d94499bd09a5", + "Name": "W12x152", + "CellId": 273, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "1b4389c9-9d7f-431b-9174-360210e8aed1": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 5.5, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 5.5, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "1b4389c9-9d7f-431b-9174-360210e8aed1", + "Name": null + }, + "cf1fca3d-49e2-493f-8a0e-1acd16f9e469": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "b9a5c1bf-ec34-4289-94bf-bd23932fc8cb", + "Transform": { + "Matrix": { + "Components": [ + 0.0, + -1.0, + 0.0, + 7.25, + 1.0, + 0.0, + 0.0, + -59.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cf1fca3d-49e2-493f-8a0e-1acd16f9e469", + "Name": "W12x152", + "CellId": 273, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": 0.0, + "Y": 1.0, + "Z": 0.0 + } + } + }, + "6feed7bc-0c30-4474-9390-68c7b3162f4d": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 7.25, + "Y": -59.5, + "Z": 20.0 + }, + "End": { + "X": 7.25, + "Y": -55.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "6feed7bc-0c30-4474-9390-68c7b3162f4d", + "Name": null + }, + "a01530e4-6aae-4644-b01c-73e9643425af": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "a01530e4-6aae-4644-b01c-73e9643425af", + "Name": "W12x152", + "CellId": 274, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "682f5afe-b727-495e-ad4e-0f1aee3d1b90": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "682f5afe-b727-495e-ad4e-0f1aee3d1b90", + "Name": null + }, + "82d7a3b5-934c-4816-9fa5-f232cbd03614": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 12.2 + ] + } + }, + "Id": "82d7a3b5-934c-4816-9fa5-f232cbd03614", + "Name": "W12x152", + "CellId": 274, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "9a51c66f-00b9-4e36-bf68-270d72af299f": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 12.2 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 12.2 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "9a51c66f-00b9-4e36-bf68-270d72af299f", + "Name": null + }, + "cfe5a9d8-68e0-4c21-a9a1-6cf29eea4779": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -58.0, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "cfe5a9d8-68e0-4c21-a9a1-6cf29eea4779", + "Name": "W12x152", + "CellId": 275, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "b065c194-aae9-49f6-897b-0b818b83edba": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -58.0, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -58.0, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "b065c194-aae9-49f6-897b-0b818b83edba", + "Name": null + }, + "5e49c96a-87d6-440e-8b30-f005b23fe570": { + "discriminator": "Elements.ElementInstance", + "BaseDefinition": "671f5123-41bb-4c51-acf5-878316d496f4", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 0.0, + 0.0, + 2.0, + 0.0, + -1.0, + 0.0, + -56.5, + 0.0, + 0.0, + 1.0, + 20.0 + ] + } + }, + "Id": "5e49c96a-87d6-440e-8b30-f005b23fe570", + "Name": "W12x152", + "CellId": 275, + "LabelConfiguration": { + "discriminator": "Elements.LabelConfiguration", + "Color": { + "Red": 1.0, + "Green": 1.0, + "Blue": 1.0, + "Alpha": 0.0 + }, + "Offset": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Direction": { + "X": -1.0, + "Y": 0.0, + "Z": 0.0 + } + } + }, + "5251f782-70ab-48e9-b27f-16ff7f4e05d0": { + "discriminator": "Elements.ModelCurve", + "Curve": { + "discriminator": "Elements.Geometry.Line", + "Start": { + "X": 2.0, + "Y": -56.5, + "Z": 20.0 + }, + "End": { + "X": 0.5, + "Y": -56.5, + "Z": 20.0 + } + }, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Material": "0dd0b2da-f4ca-47c5-a50e-6d4f8b044c36", + "Representation": null, + "IsElementDefinition": false, + "Id": "5251f782-70ab-48e9-b27f-16ff7f4e05d0", + "Name": null + }, + "8ee6a4e1-c16e-4107-9d52-d829cd99f9d4": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": -1.0 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 1.0 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "8ee6a4e1-c16e-4107-9d52-d829cd99f9d4", + "Name": "Structure elevation 0" + }, + "28c13cc4-c6a9-4c09-a188-6393d21c8567": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 3.5 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 5.5 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "28c13cc4-c6a9-4c09-a188-6393d21c8567", + "Name": "Structure elevation 4.5" + }, + "00ee9017-7840-4190-89fc-13099697449d": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 7.35 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 9.35 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "00ee9017-7840-4190-89fc-13099697449d", + "Name": "Structure elevation 8.35" + }, + "47a069c2-7e15-4f66-a4d0-9b09e74492fc": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 11.2 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 13.2 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "47a069c2-7e15-4f66-a4d0-9b09e74492fc", + "Name": "Structure elevation 12.2" + }, + "8f602a08-fa4f-4c4b-a208-728c0c39ba41": { + "discriminator": "Elements.ViewScope", + "Bounding Box": { + "discriminator": "Elements.Geometry.BBox3", + "Min": { + "X": 0.5, + "Y": -59.5, + "Z": 19.0 + }, + "Max": { + "X": 29.5, + "Y": -0.5, + "Z": 21.0 + } + }, + "Camera": { + "discriminator": "Elements.Camera", + "angle": { + "X": 0.0, + "Y": 0.0, + "Z": -1.0 + }, + "projection": "orthographic" + }, + "Inclusive": false, + "Id": "8f602a08-fa4f-4c4b-a208-728c0c39ba41", + "Name": "Structure elevation 20" + } + } +} \ No newline at end of file diff --git a/global.json b/global.json index 5d561e03f..278e9d1ef 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "3.1", + "version": "6.0.200", "rollForward": "minor" } } \ No newline at end of file