From b96c227e4e81ad83ed836f008626044d882523c3 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 14 Sep 2023 08:46:14 -0400 Subject: [PATCH 1/4] only check against circulation in 2d --- LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs b/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs index 0e3beef6..f8f8b4bb 100644 --- a/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs +++ b/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs @@ -52,7 +52,7 @@ public static class WallGeneration { var wallCandidateOptions = new List<(Line OrientationGuideEdge, List<(Line Line, string Type)> WallCandidates)>(); var allSegments = room.Boundary.Perimeter.Segments().Select(s => s.TransformedLine(room.Transform)).ToList(); - var orientationGuideEdges = SortEdgesByPrimaryAccess(allSegments, corridorSegments, levelProfile); + var orientationGuideEdges = SortEdgesByPrimaryAccess(allSegments, corridorSegments, levelProfile, 0.3); foreach (var orientationGuideEdge in orientationGuideEdges) { var wallCandidateLines = new List<(Line line, string type)> @@ -379,9 +379,10 @@ public static Line FindEdgeAdjacentToSegments(IEnumerable edgesToClassify, for (int i = 0; i < allEdges.Count; i++) { var edge = allEdges[i]; - var midpt = edge.Mid(); + var midpt = edge.Mid().Project(Plane.XY); foreach (var seg in segmentsToTestAgainst) { + var segProjected = seg.Projected(Plane.XY); var dist = midpt.DistanceTo(seg); // if two segments are basically the same distance to the corridor segment, // prefer the longer one. From fe7b0be4e8ec68f477ce1d124bac8814f59499ee Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 14 Sep 2023 10:21:13 -0400 Subject: [PATCH 2/4] fix room orientation for meeting rooms and phone booths --- .../LayoutFunctionCommon.csproj | 3 +- .../LayoutFunctionCommon/WallGeneration.cs | 12 +- .../MeetingRoomLayout/.vscode/launch.json | 65 +- .../MeetingRoomLayout/.vscode/tasks.json | 90 +- .../ConferenceRoomConfigurations-old-2.json | 5502 +++++ .../ConferenceRoomConfigurations.json | 16988 +++++++++++----- .../MeetingRoomLayout.Dependencies.csproj | 9 +- .../dependencies/ThickenedPolyline.g.cs | 64 - .../server/MeetingRoomLayout.Server.csproj | 17 + .../MeetingRoomLayout/server/Program.cs | 26 + .../MeetingRoomLayout/src/Function.g.cs | 9 +- .../dependencies/CirculationSegment.g.cs | 1 + .../dependencies/LevelElements.g.cs | 1 + .../dependencies/LevelVolume.g.cs | 1 + .../dependencies/SpaceBoundary.g.cs | 1 + .../dependencies/ThickenedPolyline.g.cs | 1 + 16 files changed, 17152 insertions(+), 5638 deletions(-) create mode 100644 LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations-old-2.json delete mode 100644 LayoutFunctions/MeetingRoomLayout/dependencies/ThickenedPolyline.g.cs create mode 100644 LayoutFunctions/MeetingRoomLayout/server/MeetingRoomLayout.Server.csproj create mode 100644 LayoutFunctions/MeetingRoomLayout/server/Program.cs diff --git a/LayoutFunctions/LayoutFunctionCommon/LayoutFunctionCommon.csproj b/LayoutFunctions/LayoutFunctionCommon/LayoutFunctionCommon.csproj index 5cae8af5..89d257cb 100644 --- a/LayoutFunctions/LayoutFunctionCommon/LayoutFunctionCommon.csproj +++ b/LayoutFunctions/LayoutFunctionCommon/LayoutFunctionCommon.csproj @@ -19,8 +19,7 @@ - - + diff --git a/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs b/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs index f8f8b4bb..f4daeb92 100644 --- a/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs +++ b/LayoutFunctions/LayoutFunctionCommon/WallGeneration.cs @@ -445,14 +445,22 @@ public static Line FindEdgeAdjacentToSegments(IEnumerable edgesToClassify, { var edgesByDist = edgesToClassify.Select(e => { - var midpt = e.Mid(); + var midpt = e.Mid().Project(Plane.XY); (Line line, double dist) edge = (e, segmentsToTestAgainst.Min(s => midpt.DistanceTo(s))); return edge; }); if (maxDist != 0) { - edgesByDist = edgesByDist.Where(e => e.dist < maxDist); + var edgesUnderMaxDist = edgesByDist.Where(e => e.dist < maxDist); + if (edgesUnderMaxDist.Count() > 0) + { + edgesByDist = edgesUnderMaxDist; + } + else + { + Console.WriteLine($"no matches under max dist — using all edges: {maxDist}"); + } } var comparer = new EdgesComparer(); diff --git a/LayoutFunctions/MeetingRoomLayout/.vscode/launch.json b/LayoutFunctions/MeetingRoomLayout/.vscode/launch.json index d2803cc4..2b5b9131 100644 --- a/LayoutFunctions/MeetingRoomLayout/.vscode/launch.json +++ b/LayoutFunctions/MeetingRoomLayout/.vscode/launch.json @@ -1,24 +1,45 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/test/bin/Debug/netcoreapp3.1/MeetingRoomLayout.Tests.dll", - "args": [], - "cwd": "${workspaceFolder}/test", - "console": "internalConsole", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + "program": "${workspaceFolder}/test/bin/Debug/netcoreapp3.1/MeetingRoomLayout.Tests.dll", + "args": [], + "cwd": "${workspaceFolder}/test", + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + }, + { + "name": "Attach to Hypar Run", + "type": "coreclr", + "request": "attach", + "processName": "MeetingRoomLayout.Server" + }, + { + "name": "Launch Hypar Run (Run once only)", + "type": "coreclr", + "request": "launch", + "program": "${workspaceFolder}/server/bin/Debug/net6.0/MeetingRoomLayout.Server.dll", + "args": [ + "--workflow-id", + "${input:workflowId}" + ], + "preLaunchTask": "server-build" + } + ], + "inputs": [ + { + "id": "workflowId", + "type": "promptString", + "description": "Enter the workflow id to run." + } + ] } \ No newline at end of file diff --git a/LayoutFunctions/MeetingRoomLayout/.vscode/tasks.json b/LayoutFunctions/MeetingRoomLayout/.vscode/tasks.json index f32bdc70..283916b8 100644 --- a/LayoutFunctions/MeetingRoomLayout/.vscode/tasks.json +++ b/LayoutFunctions/MeetingRoomLayout/.vscode/tasks.json @@ -1,42 +1,52 @@ { - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/test/MeetingRoomLayout.Tests.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/test/MeetingRoomLayout.Tests.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/test/MeetingRoomLayout.Tests.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/test/MeetingRoomLayout.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/test/MeetingRoomLayout.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/test/MeetingRoomLayout.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "server-build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/server/MeetingRoomLayout.Server.csproj" + ], + "problemMatcher": "$msCompile" + } + ] } \ No newline at end of file diff --git a/LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations-old-2.json b/LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations-old-2.json new file mode 100644 index 00000000..c4a0b968 --- /dev/null +++ b/LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations-old-2.json @@ -0,0 +1,5502 @@ +{ + "22P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 9.7835271845941385, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3304923425587774, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.1296517437310847, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7763568394002505E-15, + 0.0, + 4.9304349075230789, + -1.7763568394002505E-15, + -1.0, + 0.0, + 5.729593593439648, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7763568394002505E-15, + 0.0, + 8.530376846638589, + -1.7763568394002505E-15, + -1.0, + 0.0, + 5.729593593439648, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.3304924319657445, + 1.7763568394002505E-15, + 1.0, + 0.0, + 2.1296518831892812, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.9304343710812688, + 1.7763568394002505E-15, + 1.0, + 0.0, + 2.1296518831892812, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.7515709447065078, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.9246446447064898, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.1339132447064877, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.6033956982777973, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.4533156982777982, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.3083556982777971, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.158275698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.5971541481194187, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.2997639572152409, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 4.3975383944618756, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310337, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 3.5476183944618782, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 2.6925783944618757, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 1.8426583944618784, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 1.8379633067906127, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 2.68788330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 3.5429233067906125, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 4.39284330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 7.9495457461620305, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 7.0996257461620331, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 6.2445857461620307, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 5.3946657461620333, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 5.399360833833299, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 6.2492808338333035, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 7.1043208338332988, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 7.9542408338333033, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310337, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.953999232457079, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414156, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.1270729324570681, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414191, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.3363415324570553, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414191, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.5539411715726033, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414227, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.7270148715725853, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414262, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 7.93628347157258, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414262, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 1.9387603027582685, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807397, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 3.1480289027582558, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807455, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 4.3211026027582307, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807548, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 5.5387022418737786, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807642, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 6.74797084187378, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.54512622658077, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 7.9210445418737585, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807792, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.4467139876435553, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Transform": { + "Matrix": { + "Components": [ + -4.2188474935755949E-15, + 1.0, + 0.0, + 9.779979371441069, + -1.0, + -4.2188474935755949E-15, + 0.0, + 3.8733912316737231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.7835271845941385, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Transform": { + "Matrix": { + "Components": [ + -4.2188474935755949E-15, + 1.0, + 0.0, + 9.779979371441069, + -1.0, + -4.2188474935755949E-15, + 0.0, + 6.3575640744232285, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.7835271845941385, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 9.60572718488024, + -1.0, + -7.2164496600635175E-16, + 0.0, + 0.60960000753402721, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.7835271845941385, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.99999999999999933, + 0.0, + 9.5943098066503012, + -0.99999999999999933, + -3.7001027927304506E-08, + 0.0, + 7.0166859727954165, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 9.7835271845941385, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.99999999999998312, + 0.0, + 9.5769673124635979, + 0.99999999999998312, + -1.8360831914747982E-07, + 0.0, + 7.2596671071392045, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 9.7835271845941385, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 9.6057271848802337, + -1.0, + -7.2164496600635175E-16, + 0.0, + 7.2596671279125182, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.7835271845941385, + "Y": 7.8692671354465471, + "Z": 0.0 + } + } + ] + }, + "20P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 6.6576337586205483, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 5.9396931817445875E-15, + 0.0, + 1.3304924319657161, + -5.9396931817445875E-15, + 1.0, + 0.0, + 2.129651121449025, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -6.4948046940571658E-15, + 1.0, + 0.0, + 4.9304349969300461, + -1.0, + -6.4948046940571658E-15, + 0.0, + 5.7295939439387293, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -6.4948046940571658E-15, + 1.0, + 0.0, + 2.5303887604387576, + -1.0, + -6.4948046940571658E-15, + 0.0, + 5.7295934575481642, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -5.9396931817445875E-15, + 0.0, + 4.9304346321733767, + 5.9396931817445875E-15, + -1.0, + 0.0, + 5.7295935934396489, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.7763568394002505E-15, + 1.0, + 0.0, + 4.9321238388180433, + -1.0, + 1.7763568394002505E-15, + 0.0, + 6.2605042153841985, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.7763568394002505E-15, + 1.0, + 0.0, + 4.9321238388180433, + -1.0, + 1.7763568394002505E-15, + 0.0, + 1.5578944062883764, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -8.1601392309949E-15, + 1.0, + 0.0, + 4.3305374393021232, + -1.0, + -8.1601392309949E-15, + 0.0, + 2.7237451187971047, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -8.1601392309949E-15, + 1.0, + 0.0, + 4.3305374393021374, + -1.0, + -8.1601392309949E-15, + 0.0, + 3.933013718797099, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -8.1601392309949E-15, + 1.0, + 0.0, + 4.3305374393021445, + -1.0, + -8.1601392309949E-15, + 0.0, + 5.1060874187970811, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -5.4400928206632663E-15, + 1.0, + 0.0, + 4.8807563190917307, + -1.0, + -5.4400928206632663E-15, + 0.0, + 2.7057877565363775, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -5.4400928206632663E-15, + 1.0, + 0.0, + 4.8807563190917378, + -1.0, + -5.4400928206632663E-15, + 0.0, + 3.5557077565363819, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -5.4400928206632663E-15, + 1.0, + 0.0, + 4.8807563190917449, + -1.0, + -5.4400928206632663E-15, + 0.0, + 4.4107477565363773, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -5.4400928206632663E-15, + 1.0, + 0.0, + 4.8807563190917485, + -1.0, + -5.4400928206632663E-15, + 0.0, + 5.2606677565363817, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.7515709447065078, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.9246446447064898, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.1339132447064877, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.6033956982777973, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.4533156982777982, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.3083556982777971, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.158275698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.5971541481194187, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.2997639572152409, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 4.3975383944618756, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310337, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 3.5476183944618782, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 2.6925783944618757, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 1.8426583944618784, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 1.8379633067906127, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 2.68788330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 3.5429233067906125, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 4.39284330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.953999232457079, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414156, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.1270729324570681, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414191, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.3363415324570553, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414191, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 1.9387603027582685, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807397, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 3.1480289027582558, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807455, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 4.3211026027582307, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807548, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.9724281584310681, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Transform": { + "Matrix": { + "Components": [ + -4.2188474935755949E-15, + 1.0, + 0.0, + 6.6540859454674788, + -1.0, + -4.2188474935755949E-15, + 0.0, + 6.3575640744232285, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.6576337586205483, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Transform": { + "Matrix": { + "Components": [ + -4.2188474935755949E-15, + 1.0, + 0.0, + 6.6540859454674788, + -1.0, + -4.2188474935755949E-15, + 0.0, + 3.8733912316737231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.6576337586205483, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 6.4798337589066506, + -1.0, + -7.2164496600635175E-16, + 0.0, + 0.60960000753402721, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.6576337586205483, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.99999999999999933, + 0.0, + 6.469826192219827, + -0.99999999999999933, + -3.7001027927304506E-08, + 0.0, + 7.01674104355882, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 6.6576337586205483, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 6.4798337589066435, + -1.0, + -7.2164496600635175E-16, + 0.0, + 7.2596671279125182, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.6576337586205483, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.99999999999998312, + 0.0, + 6.4510738864900077, + 0.99999999999998312, + -1.8360831914747982E-07, + 0.0, + 7.2596671071392045, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 6.6576337586205483, + "Y": 7.8692671354465471, + "Z": 0.0 + } + } + ] + }, + "14P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 6.5524058757989252, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7763568394002505E-15, + 0.0, + 4.9304346393021738, + -1.7763568394002505E-15, + -1.0, + 0.0, + 5.7295939510675176, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3304923425587845, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.1296517437310847, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.3304924319657516, + 1.7763568394002505E-15, + 1.0, + 0.0, + 2.1296518831892812, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.930389900186686, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.7515709447065078, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.9246446447064898, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.1339132447064877, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.6033956982777973, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.4533156982777982, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.3083556982777971, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001866986, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.158275698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.5971541481194187, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001866986, + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.2997639572152409, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 4.3975383944618827, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310337, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 3.5476183944618782, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 2.6925783944618829, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.4964032497318848E-15, + 0.0, + 1.8426583944618784, + 4.4964032497318848E-15, + 1.0, + 0.0, + 6.8798116088310231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 1.8379633067906127, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 2.68788330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 3.5429233067906125, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 4.39284330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.9539992324570861, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414227, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.1270729324570681, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414262, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.3363415324570624, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.3295927290414262, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 1.9387603027582649, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807642, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 3.1480289027582593, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.54512622658077, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 4.3211026027582413, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807792, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Transform": { + "Matrix": { + "Components": [ + -4.2188474935755949E-15, + 1.0, + 0.0, + 6.5488580626458557, + -1.0, + -4.2188474935755949E-15, + 0.0, + 6.3575640744232285, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.5524058757989252, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Transform": { + "Matrix": { + "Components": [ + -4.2188474935755949E-15, + 1.0, + 0.0, + 6.5488580626458557, + -1.0, + -4.2188474935755949E-15, + 0.0, + 3.8733912316737231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.5524058757989252, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 6.3746058760850275, + -1.0, + -7.2164496600635175E-16, + 0.0, + 0.60960000753402721, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.5524058757989252, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.99999999999999933, + 0.0, + 6.36333804290153, + -0.99999999999999933, + -3.7001027927304506E-08, + 0.0, + 7.0223287052432726, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 6.5524058757989252, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 6.37460587608502, + -1.0, + -7.2164496600635175E-16, + 0.0, + 7.2596671279125209, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.5524058757989252, + "Y": 7.8692671354465471, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.99999999999998312, + 0.0, + 6.3458460036683846, + 0.99999999999998312, + -1.8360831914747982E-07, + 0.0, + 7.2596671071392072, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 6.5524058757989252, + "Y": 7.8692671354465471, + "Z": 0.0 + } + } + ] + }, + "6P-B": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 4.6138069609294412, + "Y": 3.7614112552492056, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 2.5292799214557071, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.7424146576095358, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 3.2150795096591374, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.7424146576095367, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 1.8434803332522769, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.7424146576095425, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 3.3125840571950782, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.1015642814600142, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 2.536296557195076, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.0856892814600192, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 1.6865019143379278, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.1015642814600159, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.5633567784153613E-15, + 0.0, + 1.7298821674221045, + -4.5633567784153613E-15, + 1.0, + 0.0, + 2.3939851426483458, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.5633567784153613E-15, + 0.0, + 2.564525913154867, + -4.5633567784153613E-15, + 1.0, + 0.0, + 2.3952488009811694, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.6427876096865367, + 0.76604444311898023, + 0.0, + 3.2622433664925339, + -0.76604444311898023, + 0.6427876096865367, + 0.0, + 2.632269140551474, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.8563033877797981, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 4.60897985624452, + 8.88178419700125E-16, + -1.0, + 0.0, + 0.70840782963176174, + 0.0, + 0.0, + 1.0, + 1.3075995944976782 + ] + } + }, + "Anchor": { + "X": 4.6138069609294448, + "Y": 5.3290705182007514E-15, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 4.60897985624452, + 8.88178419700125E-16, + -1.0, + 0.0, + -0.00208962851095984, + 0.0, + 0.0, + 1.0, + 0.88136598777771413 + ] + } + }, + "Anchor": { + "X": 4.6138069609294448, + "Y": 5.3290705182007514E-15, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 4.6129799905449751, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.4174694947705215, + 0.0, + 0.0, + 1.0, + 0.72959999122619379 + ] + } + }, + "Anchor": { + "X": 4.6138069609294412, + "Y": 2.5676307829760163, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", + "Transform": { + "Matrix": { + "Components": [ + 6.4392935428259079E-15, + -1.0, + 0.0, + 0.11794846300852058, + 1.0, + 6.4392935428259079E-15, + 0.0, + 0.808578816390451, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.5527136788005009E-15, + "Y": 1.8807056276246001, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 0.44010982611666805, + 8.88178419700125E-16, + -1.0, + 0.0, + 3.300046199301367, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 3.7614112552492003, + "Z": 0.0 + } + } + ] + }, + "8P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 5.6170627266646349, + "Y": 3.6208515120402538, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 0.86460467659548712, + 4.2743586448068527E-15, + 1.0, + 0.0, + 2.4340496206322073, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.0432694959416792E-15, + 0.0, + 1.338348631142221, + -1.0432694959416792E-15, + -1.0, + 0.0, + 1.2341537493948986, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.0432694959416792E-15, + 0.0, + 2.1882686311422219, + -1.0432694959416792E-15, + -1.0, + 0.0, + 1.2341537493949026, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.0432694959416792E-15, + 0.0, + 3.0433086311422244, + -1.0432694959416792E-15, + -1.0, + 0.0, + 1.2341537493949049, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.1102230246251565E-15, + 0.0, + 3.8932286311422253, + -1.1102230246251565E-15, + -1.0, + 0.0, + 1.2341537493949102, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 3.8932286311422004, + 4.2743586448068527E-15, + 1.0, + 0.0, + 2.4341513493948783, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 3.0433086311421995, + 4.2743586448068527E-15, + 1.0, + 0.0, + 2.4341513493948739, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 2.1882686311422006, + 4.2743586448068527E-15, + 1.0, + 0.0, + 2.4341513493948721, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 1.3383486311421997, + 4.2743586448068527E-15, + 1.0, + 0.0, + 2.4341513493948681, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 3.8688661775708919, + 4.2743586448068527E-15, + 1.0, + 0.0, + 1.834152549394894, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 2.659597577570894, + 4.2743586448068527E-15, + 1.0, + 0.0, + 1.8341525493948891, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.2743586448068527E-15, + 0.0, + 1.486523877570912, + 4.2743586448068527E-15, + 1.0, + 0.0, + 1.8341525493948847, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Transform": { + "Matrix": { + "Components": [ + -2.7755575615628914E-16, + 1.0, + 0.0, + 5.6274514819041741, + -1.0, + -2.7755575615628914E-16, + 0.0, + 2.9966151262210796, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 5.617062726664626, + "Y": 1.8104257560201331, + "Z": 0.0 + } + } + ] + }, + "6P-A": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 6.0185057921995337, + "Y": 3.7614112552492118, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", + "Transform": { + "Matrix": { + "Components": [ + 5.6621374255882984E-15, + -1.0, + 0.0, + 0.11794846300852413, + 1.0, + 5.6621374255882984E-15, + 0.0, + 0.80857881639045148, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.5527136788005009E-15, + "Y": 1.8807056276246001, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 0.44010982611666805, + 1.1102230246251605E-16, + -1.0, + 0.0, + 3.3000461993013674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 3.7614112552492003, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.64278760968653736, + 0.76604444311897979, + 0.0, + 3.6865078890766441, + -0.76604444311897979, + 0.64278760968653736, + 0.0, + 2.6322691405514771, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.7862006611777517E-15, + 0.0, + 2.9887904357389807, + -3.7862006611777517E-15, + 1.0, + 0.0, + 2.3952488009811721, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.7862006611777517E-15, + 0.0, + 2.1541466900062147, + -3.7862006611777517E-15, + 1.0, + 0.0, + 2.3939851426483476, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.110766436922038, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.1015642814600182, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.9605610797791861, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.0856892814600223, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 3.7368485797791884, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.1015642814600177, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.2677448558363835, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.7424146576095447, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 3.639344032243244, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.7424146576095403, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.9535444440398138, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.742414657609539, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 3.0028888489342549, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 6.0174494785878281, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.4174694947705282, + 0.0, + 0.0, + 1.0, + 0.72959999122619379 + ] + } + }, + "Anchor": { + "X": 6.01850579219953, + "Y": 2.5676307829760225, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.970295726275996, + 0.24192189559967006, + 0.0, + 5.6112414638825072, + -0.24192189559967006, + 0.970295726275996, + 0.0, + 1.4180300518687723, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.0185057921995337, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.78801075360672157, + -0.61566147532565885, + 0.0, + 5.2743393471705993, + 0.61566147532565885, + -0.78801075360672157, + 0.0, + 0.7358513078126232, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.0185057921995337, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ea778d60-2d48-41e9-afab-689676589b87.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 5.5091961558318872, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.0428508239554652, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.0185057921995337, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 6.013764560624594, + 1.1102230246251605E-16, + -1.0, + 0.0, + 0.708407829631768, + 0.0, + 0.0, + 1.0, + 1.3075995944976782 + ] + } + }, + "Anchor": { + "X": 6.0185057921995337, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 6.01376456062459, + 1.1102230246251605E-16, + -1.0, + 0.0, + -0.0026234437739770522, + 0.0, + 0.0, + 1.0, + 0.88136598777771413 + ] + } + }, + "Anchor": { + "X": 6.0185057921995337, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + } + ] + }, + "4P-A": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.4430551255076267, + "Y": 3.6455956363801625, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.60876144345812488, + 0.79335332920381718, + 0.0, + 2.22485670204329, + -0.79335332920381718, + -0.60876144345812488, + 0.0, + 1.2940073672861843, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.60876137410097664, + 0.793353382423426, + 0.0, + 2.1764183410692866, + -0.793353382423426, + 0.60876137410097664, + 0.0, + 2.0929857882968896, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.688024467947835, + -0.72568748887182744, + 0.0, + 1.3105989535460552, + 0.72568748887182744, + -0.688024467947835, + 0.0, + 1.2648336450858948, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.71307174090805736, + -0.70109107277040161, + 0.0, + 1.2946813385974778, + 0.70109107277040161, + 0.71307174090805736, + 0.0, + 2.1263652273854792, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.6653345369377348E-15, + 0.0, + 1.7945531189951325, + -1.6653345369377348E-15, + 1.0, + 0.0, + 1.5993982295654949, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Transform": { + "Matrix": { + "Components": [ + -6.3282712403633931E-15, + 1.0, + 0.0, + 3.4308630154047535, + -1.0, + -6.3282712403633931E-15, + 0.0, + 2.7076557317365384, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.4430551255076196, + "Y": 1.8227978181900788, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.9984014443252818E-15, + -1.0, + 0.0, + -0.00044320245327611474, + 1.0, + 1.9984014443252818E-15, + 0.0, + 0.87885573173652887, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 1.8227978181900832, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Transform": { + "Matrix": { + "Components": [ + -2.5535129566378593E-15, + -1.0, + 0.0, + 0.036070264911444383, + 1.0, + -2.5535129566378593E-15, + 0.0, + 0.88285767009239979, + 0.0, + 0.0, + 1.0, + -0.63499999999999979 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 1.8227978181900832, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Transform": { + "Matrix": { + "Components": [ + -6.2172489379008766E-15, + 1.0, + 0.0, + 0.23970017251293996, + -1.0, + -6.2172489379008766E-15, + 0.0, + 0.24767492391655566, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 4.4408920985006262E-15, + "Z": 0.0 + } + } + ] + }, + "4P-B": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.2112433205801239, + "Y": 2.5950894288843602, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.4988010832439615E-15, + 0.0, + 1.5627413140676296, + -1.4988010832439615E-15, + 1.0, + 0.0, + 1.1833257591827988, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.71307174090805714, + -0.70109107277040172, + 0.0, + 1.0628695336699749, + 0.70109107277040172, + 0.71307174090805714, + 0.0, + 1.7102927570027826, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.68802446794783512, + -0.72568748887182732, + 0.0, + 1.0787871486185594, + 0.72568748887182732, + -0.68802446794783512, + 0.0, + 0.84876117470319867, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.60876137410097686, + 0.7933533824234259, + 0.0, + 1.9446065361417837, + -0.7933533824234259, + 0.60876137410097686, + 0.0, + 1.6769133179141935, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.60876144345812466, + 0.79335332920381729, + 0.0, + 1.9930448971157873, + -0.79335332920381729, + -0.60876144345812466, + 0.0, + 0.87793489690348814, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Transform": { + "Matrix": { + "Components": [ + -6.3282712403633931E-15, + 1.0, + 0.0, + 3.1990512104772577, + -1.0, + -6.3282712403633931E-15, + 0.0, + 2.1824026279886377, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.2112433205801239, + "Y": 1.2975447144421781, + "Z": 0.0 + } + } + ] + }, + "13P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 8.40267824883557, + "Y": 4.6217047722458542, + "Z": 0.0 + } + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.25881924277568774, + -0.96592577332268126, + 0.0, + 1.2401396292303652, + 0.96592577332268126, + 0.25881924277568774, + 0.0, + 2.334758570636092, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.99999999999997913, + -2.0464843727731114E-07, + 0.0, + 1.6971429604882224, + 2.0464843727731114E-07, + -0.99999999999997913, + 0.0, + 1.6732928188945175, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.99999999999997913, + -2.0464722171435887E-07, + 0.0, + 2.5797028531682189, + 2.0464722171435887E-07, + -0.99999999999997913, + 0.0, + 1.6490761491232746, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.99999999999997913, + -2.0464821358554083E-07, + 0.0, + 3.5736895676851406, + 2.0464821358554083E-07, + -0.99999999999997913, + 0.0, + 1.5984585909544879, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.99999999999997913, + -2.0464722171435887E-07, + 0.0, + 4.5513040567377852, + 2.0464722171435887E-07, + -0.99999999999997913, + 0.0, + 1.5902374834325075, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.99999999999997913, + -2.0464821358554083E-07, + 0.0, + 5.4807650252030173, + 2.0464821358554083E-07, + -0.99999999999997913, + 0.0, + 1.6222667307331289, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + -0.99999999999997913, + -2.0464821358554083E-07, + 0.0, + 6.4147281542623569, + 2.0464821358554083E-07, + -0.99999999999997913, + 0.0, + 1.6792937942571227, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999997913, + -2.0464711325358409E-07, + 0.0, + 6.4108453997733816, + 2.0464711325358409E-07, + 0.99999999999997913, + 0.0, + 3.00724692015262, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999997913, + -2.0464711325358409E-07, + 0.0, + 5.4768829198469, + 2.0464711325358409E-07, + 0.99999999999997913, + 0.0, + 3.0493491798462369, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999997913, + -2.0464711325358409E-07, + 0.0, + 4.5482157047231437, + 2.0464711325358409E-07, + 0.99999999999997913, + 0.0, + 3.0936163836254567, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999997913, + -2.0464711325358409E-07, + 0.0, + 3.5706005946054331, + 2.0464711325358409E-07, + 0.99999999999997913, + 0.0, + 3.0764371321509909, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999997913, + -2.0464711325358409E-07, + 0.0, + 2.5766145076277729, + 2.0464711325358409E-07, + 0.99999999999997913, + 0.0, + 3.03489144138897, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999997913, + -2.0464711325358409E-07, + 0.0, + 1.6940552539634648, + 2.0464711325358409E-07, + 0.99999999999997913, + 0.0, + 3.0064301349128426, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/b65b427c-a433-43d5-85be-2e786db516e6.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999977174, + 6.75876076932025E-07, + 0.0, + 4.59950106530402, + -6.75876076932025E-07, + 0.99999999999977174, + 0.0, + 2.2893753028018429, + 0.0, + 0.0, + 1.0, + -0.40639999999990889 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/30bc1e06-9efb-49ef-93bd-25bc7fb53c48.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999998312, + -1.8360832092383666E-07, + 0.0, + 4.1019650308545419, + 1.8360832092383666E-07, + 0.99999999999998312, + 0.0, + 2.2893752957294486, + 0.0, + 0.0, + 1.0, + -0.40639999999990895 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.99999999999998312, + 0.0, + 5.9149408627915054, + -0.99999999999998312, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987132, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.99999999999998312, + 0.0, + 4.7719408627915048, + -0.99999999999998312, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987132, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.99999999999998312, + 0.0, + 2.2573408627915068, + -0.99999999999998312, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.99999999999998312, + 0.0, + 3.39975976047055, + -0.99999999999998312, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987186, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/8d7bc923-e5e2-4720-9c14-b120d56b67c8.glb", + "Transform": { + "Matrix": { + "Components": [ + 0.99999999999998324, + -1.8360834036468342E-07, + 0.0, + 4.1019650308546094, + 1.8360834036468342E-07, + 0.99999999999998324, + 0.0, + 2.2893752957294522, + 0.0, + 0.0, + 1.0, + 1.962696671853337E-14 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Transform": { + "Matrix": { + "Components": [ + -4.6629367034256583E-15, + 1.0, + 0.0, + 8.4100950927378939, + -1.0, + -4.6629367034256583E-15, + 0.0, + 3.2415535770581676, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 2.3108523861229271, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.99999999999999933, + 0.0, + 8.2130301591429156, + -0.99999999999999933, + -3.7001027927304506E-08, + 0.0, + 3.7711246376591836, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 4.6217047722458542, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.99999999999998312, + 0.0, + 8.19611837670503, + 0.99999999999998312, + -1.8360831914747982E-07, + 0.0, + 4.0121047439385134, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 4.6217047722458542, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 8.2248782491216659, + -1.0, + -7.2164496600635175E-16, + 0.0, + 4.0121047647118271, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 4.6217047722458542, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Transform": { + "Matrix": { + "Components": [ + -7.2164496600635175E-16, + 1.0, + 0.0, + 8.224878249121673, + -1.0, + -7.2164496600635175E-16, + 0.0, + 0.60960000753402721, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 0.0, + "Z": 0.0 + } + } + ] + } +} diff --git a/LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations.json b/LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations.json index c4a0b968..d7080949 100644 --- a/LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations.json +++ b/LayoutFunctions/MeetingRoomLayout/ConferenceRoomConfigurations.json @@ -1,5502 +1,11486 @@ -{ - "22P": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 9.7835271845941385, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3304923425587774, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.1296517437310847, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 1.7763568394002505E-15, - 0.0, - 4.9304349075230789, - -1.7763568394002505E-15, - -1.0, - 0.0, - 5.729593593439648, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 1.7763568394002505E-15, - 0.0, - 8.530376846638589, - -1.7763568394002505E-15, - -1.0, - 0.0, - 5.729593593439648, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.3304924319657445, - 1.7763568394002505E-15, - 1.0, - 0.0, - 2.1296518831892812, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 4.9304343710812688, - 1.7763568394002505E-15, - 1.0, - 0.0, - 2.1296518831892812, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.7515709447065078, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.9246446447064898, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 5.1339132447064877, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.6033956982777973, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.4533156982777982, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 4.3083556982777971, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 5.158275698277798, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.5971541481194187, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 6.2997639572152409, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 4.3975383944618756, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310337, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 3.5476183944618782, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 2.6925783944618757, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 1.8426583944618784, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310231, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 1.8379633067906127, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594505991, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 2.68788330679061, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450608, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 3.5429233067906125, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594506133, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 4.39284330679061, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450624, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 7.9495457461620305, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450624, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 7.0996257461620331, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594506133, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 6.2445857461620307, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450608, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 5.3946657461620333, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594505991, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 5.399360833833299, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310231, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 6.2492808338333035, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 7.1043208338332988, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 7.9542408338333033, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310337, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.953999232457079, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414156, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.1270729324570681, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414191, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 4.3363415324570553, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414191, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 5.5539411715726033, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414227, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 6.7270148715725853, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414262, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 7.93628347157258, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414262, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 1.9387603027582685, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807397, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 3.1480289027582558, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807455, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 4.3211026027582307, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807548, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 5.5387022418737786, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807642, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 6.74797084187378, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.54512622658077, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 7.9210445418737585, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807792, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 4.4467139876435553, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", - "Transform": { - "Matrix": { - "Components": [ - -4.2188474935755949E-15, - 1.0, - 0.0, - 9.779979371441069, - -1.0, - -4.2188474935755949E-15, - 0.0, - 3.8733912316737231, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 9.7835271845941385, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", - "Transform": { - "Matrix": { - "Components": [ - -4.2188474935755949E-15, - 1.0, - 0.0, - 9.779979371441069, - -1.0, - -4.2188474935755949E-15, - 0.0, - 6.3575640744232285, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 9.7835271845941385, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 9.60572718488024, - -1.0, - -7.2164496600635175E-16, - 0.0, - 0.60960000753402721, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 9.7835271845941385, - "Y": 0.0, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", - "Transform": { - "Matrix": { - "Components": [ - -3.7001027927304506E-08, - 0.99999999999999933, - 0.0, - 9.5943098066503012, - -0.99999999999999933, - -3.7001027927304506E-08, - 0.0, - 7.0166859727954165, - 0.0, - 0.0, - 1.0, - 1.8505311444854733 - ] - } - }, - "Anchor": { - "X": 9.7835271845941385, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.8360831914747982E-07, - -0.99999999999998312, - 0.0, - 9.5769673124635979, - 0.99999999999998312, - -1.8360831914747982E-07, - 0.0, - 7.2596671071392045, - 0.0, - 0.0, - 1.0, - -0.13158813079830256 - ] - } - }, - "Anchor": { - "X": 9.7835271845941385, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 9.6057271848802337, - -1.0, - -7.2164496600635175E-16, - 0.0, - 7.2596671279125182, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 9.7835271845941385, - "Y": 7.8692671354465471, - "Z": 0.0 - } - } - ] - }, - "20P": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 6.6576337586205483, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - 5.9396931817445875E-15, - 0.0, - 1.3304924319657161, - -5.9396931817445875E-15, - 1.0, - 0.0, - 2.129651121449025, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -6.4948046940571658E-15, - 1.0, - 0.0, - 4.9304349969300461, - -1.0, - -6.4948046940571658E-15, - 0.0, - 5.7295939439387293, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -6.4948046940571658E-15, - 1.0, - 0.0, - 2.5303887604387576, - -1.0, - -6.4948046940571658E-15, - 0.0, - 5.7295934575481642, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -5.9396931817445875E-15, - 0.0, - 4.9304346321733767, - 5.9396931817445875E-15, - -1.0, - 0.0, - 5.7295935934396489, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.7763568394002505E-15, - 1.0, - 0.0, - 4.9321238388180433, - -1.0, - 1.7763568394002505E-15, - 0.0, - 6.2605042153841985, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.7763568394002505E-15, - 1.0, - 0.0, - 4.9321238388180433, - -1.0, - 1.7763568394002505E-15, - 0.0, - 1.5578944062883764, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -8.1601392309949E-15, - 1.0, - 0.0, - 4.3305374393021232, - -1.0, - -8.1601392309949E-15, - 0.0, - 2.7237451187971047, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -8.1601392309949E-15, - 1.0, - 0.0, - 4.3305374393021374, - -1.0, - -8.1601392309949E-15, - 0.0, - 3.933013718797099, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -8.1601392309949E-15, - 1.0, - 0.0, - 4.3305374393021445, - -1.0, - -8.1601392309949E-15, - 0.0, - 5.1060874187970811, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -5.4400928206632663E-15, - 1.0, - 0.0, - 4.8807563190917307, - -1.0, - -5.4400928206632663E-15, - 0.0, - 2.7057877565363775, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -5.4400928206632663E-15, - 1.0, - 0.0, - 4.8807563190917378, - -1.0, - -5.4400928206632663E-15, - 0.0, - 3.5557077565363819, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -5.4400928206632663E-15, - 1.0, - 0.0, - 4.8807563190917449, - -1.0, - -5.4400928206632663E-15, - 0.0, - 4.4107477565363773, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -5.4400928206632663E-15, - 1.0, - 0.0, - 4.8807563190917485, - -1.0, - -5.4400928206632663E-15, - 0.0, - 5.2606677565363817, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.7515709447065078, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.9246446447064898, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 5.1339132447064877, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.6033956982777973, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.4533156982777982, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 4.3083556982777971, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 5.158275698277798, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.5971541481194187, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 6.2997639572152409, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 4.3975383944618756, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310337, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 3.5476183944618782, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 2.6925783944618757, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 1.8426583944618784, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310231, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 1.8379633067906127, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594505991, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 2.68788330679061, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450608, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 3.5429233067906125, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594506133, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 4.39284330679061, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450624, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.953999232457079, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414156, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.1270729324570681, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414191, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 4.3363415324570553, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414191, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 1.9387603027582685, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807397, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 3.1480289027582558, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807455, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 4.3211026027582307, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807548, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.9724281584310681, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", - "Transform": { - "Matrix": { - "Components": [ - -4.2188474935755949E-15, - 1.0, - 0.0, - 6.6540859454674788, - -1.0, - -4.2188474935755949E-15, - 0.0, - 6.3575640744232285, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.6576337586205483, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", - "Transform": { - "Matrix": { - "Components": [ - -4.2188474935755949E-15, - 1.0, - 0.0, - 6.6540859454674788, - -1.0, - -4.2188474935755949E-15, - 0.0, - 3.8733912316737231, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.6576337586205483, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 6.4798337589066506, - -1.0, - -7.2164496600635175E-16, - 0.0, - 0.60960000753402721, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.6576337586205483, - "Y": 0.0, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", - "Transform": { - "Matrix": { - "Components": [ - -3.7001027927304506E-08, - 0.99999999999999933, - 0.0, - 6.469826192219827, - -0.99999999999999933, - -3.7001027927304506E-08, - 0.0, - 7.01674104355882, - 0.0, - 0.0, - 1.0, - 1.8505311444854733 - ] - } - }, - "Anchor": { - "X": 6.6576337586205483, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 6.4798337589066435, - -1.0, - -7.2164496600635175E-16, - 0.0, - 7.2596671279125182, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.6576337586205483, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.8360831914747982E-07, - -0.99999999999998312, - 0.0, - 6.4510738864900077, - 0.99999999999998312, - -1.8360831914747982E-07, - 0.0, - 7.2596671071392045, - 0.0, - 0.0, - 1.0, - -0.13158813079830256 - ] - } - }, - "Anchor": { - "X": 6.6576337586205483, - "Y": 7.8692671354465471, - "Z": 0.0 - } - } - ] - }, - "14P": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 6.5524058757989252, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 1.7763568394002505E-15, - 0.0, - 4.9304346393021738, - -1.7763568394002505E-15, - -1.0, - 0.0, - 5.7295939510675176, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3304923425587845, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.1296517437310847, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.3304924319657516, - 1.7763568394002505E-15, - 1.0, - 0.0, - 2.1296518831892812, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.930389900186686, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.7515709447065078, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.9246446447064898, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.9303899001866824, - 1.0, - -1.7763568394002505E-15, - 0.0, - 5.1339132447064877, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 2.6033956982777973, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.4533156982777982, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 4.3083556982777971, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001866986, - 1.0, - -1.7763568394002505E-15, - 0.0, - 5.158275698277798, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001867021, - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.5971541481194187, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.7763568394002505E-15, - -1.0, - 0.0, - 1.3303911001866986, - 1.0, - -1.7763568394002505E-15, - 0.0, - 6.2997639572152409, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 4.3975383944618827, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310337, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 3.5476183944618782, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 2.6925783944618829, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.87981160883103, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.4964032497318848E-15, - 0.0, - 1.8426583944618784, - 4.4964032497318848E-15, - 1.0, - 0.0, - 6.8798116088310231, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 1.8379633067906127, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594505991, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 2.68788330679061, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450608, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 3.5429233067906125, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.0130561594506133, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 9.936496070395151E-15, - 0.0, - 4.39284330679061, - -9.936496070395151E-15, - -1.0, - 0.0, - 1.013056159450624, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 1.9539992324570861, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414227, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 3.1270729324570681, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414262, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -1.7763568394002505E-15, - 0.0, - 4.3363415324570624, - 1.7763568394002505E-15, - 1.0, - 0.0, - 6.3295927290414262, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 1.9387603027582649, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807642, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 3.1480289027582593, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.54512622658077, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 6.5503158452884236E-15, - 0.0, - 4.3211026027582413, - -6.5503158452884236E-15, - -1.0, - 0.0, - 1.5451262265807792, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.8623686818349032, - "Y": 3.9381535437547353, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", - "Transform": { - "Matrix": { - "Components": [ - -4.2188474935755949E-15, - 1.0, - 0.0, - 6.5488580626458557, - -1.0, - -4.2188474935755949E-15, - 0.0, - 6.3575640744232285, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.5524058757989252, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", - "Transform": { - "Matrix": { - "Components": [ - -4.2188474935755949E-15, - 1.0, - 0.0, - 6.5488580626458557, - -1.0, - -4.2188474935755949E-15, - 0.0, - 3.8733912316737231, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.5524058757989252, - "Y": 3.9346335677232736, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 6.3746058760850275, - -1.0, - -7.2164496600635175E-16, - 0.0, - 0.60960000753402721, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.5524058757989252, - "Y": 0.0, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", - "Transform": { - "Matrix": { - "Components": [ - -3.7001027927304506E-08, - 0.99999999999999933, - 0.0, - 6.36333804290153, - -0.99999999999999933, - -3.7001027927304506E-08, - 0.0, - 7.0223287052432726, - 0.0, - 0.0, - 1.0, - 1.8505311444854733 - ] - } - }, - "Anchor": { - "X": 6.5524058757989252, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 6.37460587608502, - -1.0, - -7.2164496600635175E-16, - 0.0, - 7.2596671279125209, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.5524058757989252, - "Y": 7.8692671354465471, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.8360831914747982E-07, - -0.99999999999998312, - 0.0, - 6.3458460036683846, - 0.99999999999998312, - -1.8360831914747982E-07, - 0.0, - 7.2596671071392072, - 0.0, - 0.0, - 1.0, - -0.13158813079830256 - ] - } - }, - "Anchor": { - "X": 6.5524058757989252, - "Y": 7.8692671354465471, - "Z": 0.0 - } - } - ] - }, - "6P-B": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 4.6138069609294412, - "Y": 3.7614112552492056, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 2.5292799214557071, - 8.88178419700125E-16, - -1.0, - 0.0, - 1.7424146576095358, - 0.0, - 0.0, - 1.0, - 1.7927566927725118E-27 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 3.2150795096591374, - 8.88178419700125E-16, - -1.0, - 0.0, - 1.7424146576095367, - 0.0, - 0.0, - 1.0, - 1.7927566927725118E-27 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 1.8434803332522769, - 8.88178419700125E-16, - -1.0, - 0.0, - 1.7424146576095425, - 0.0, - 0.0, - 1.0, - 1.7927566927725118E-27 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 3.3125840571950782, - 8.88178419700125E-16, - -1.0, - 0.0, - 1.1015642814600142, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 2.536296557195076, - 8.88178419700125E-16, - -1.0, - 0.0, - 1.0856892814600192, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 1.6865019143379278, - 8.88178419700125E-16, - -1.0, - 0.0, - 1.1015642814600159, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - 4.5633567784153613E-15, - 0.0, - 1.7298821674221045, - -4.5633567784153613E-15, - 1.0, - 0.0, - 2.3939851426483458, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - 4.5633567784153613E-15, - 0.0, - 2.564525913154867, - -4.5633567784153613E-15, - 1.0, - 0.0, - 2.3952488009811694, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.6427876096865367, - 0.76604444311898023, - 0.0, - 3.2622433664925339, - -0.76604444311898023, - 0.6427876096865367, - 0.0, - 2.632269140551474, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.5279652577827534, - "Y": 1.8563033877797981, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 4.60897985624452, - 8.88178419700125E-16, - -1.0, - 0.0, - 0.70840782963176174, - 0.0, - 0.0, - 1.0, - 1.3075995944976782 - ] - } - }, - "Anchor": { - "X": 4.6138069609294448, - "Y": 5.3290705182007514E-15, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 4.60897985624452, - 8.88178419700125E-16, - -1.0, - 0.0, - -0.00208962851095984, - 0.0, - 0.0, - 1.0, - 0.88136598777771413 - ] - } - }, - "Anchor": { - "X": 4.6138069609294448, - "Y": 5.3290705182007514E-15, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 4.6129799905449751, - 8.88178419700125E-16, - -1.0, - 0.0, - 1.4174694947705215, - 0.0, - 0.0, - 1.0, - 0.72959999122619379 - ] - } - }, - "Anchor": { - "X": 4.6138069609294412, - "Y": 2.5676307829760163, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", - "Transform": { - "Matrix": { - "Components": [ - 6.4392935428259079E-15, - -1.0, - 0.0, - 0.11794846300852058, - 1.0, - 6.4392935428259079E-15, - 0.0, - 0.808578816390451, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.5527136788005009E-15, - "Y": 1.8807056276246001, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -8.88178419700125E-16, - 0.0, - 0.44010982611666805, - 8.88178419700125E-16, - -1.0, - 0.0, - 3.300046199301367, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 0.0, - "Y": 3.7614112552492003, - "Z": 0.0 - } - } - ] - }, - "8P": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 5.6170627266646349, - "Y": 3.6208515120402538, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 0.86460467659548712, - 4.2743586448068527E-15, - 1.0, - 0.0, - 2.4340496206322073, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 1.0432694959416792E-15, - 0.0, - 1.338348631142221, - -1.0432694959416792E-15, - -1.0, - 0.0, - 1.2341537493948986, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 1.0432694959416792E-15, - 0.0, - 2.1882686311422219, - -1.0432694959416792E-15, - -1.0, - 0.0, - 1.2341537493949026, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 1.0432694959416792E-15, - 0.0, - 3.0433086311422244, - -1.0432694959416792E-15, - -1.0, - 0.0, - 1.2341537493949049, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - 1.1102230246251565E-15, - 0.0, - 3.8932286311422253, - -1.1102230246251565E-15, - -1.0, - 0.0, - 1.2341537493949102, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 3.8932286311422004, - 4.2743586448068527E-15, - 1.0, - 0.0, - 2.4341513493948783, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 3.0433086311421995, - 4.2743586448068527E-15, - 1.0, - 0.0, - 2.4341513493948739, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 2.1882686311422006, - 4.2743586448068527E-15, - 1.0, - 0.0, - 2.4341513493948721, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 1.3383486311421997, - 4.2743586448068527E-15, - 1.0, - 0.0, - 2.4341513493948681, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 3.8688661775708919, - 4.2743586448068527E-15, - 1.0, - 0.0, - 1.834152549394894, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 2.659597577570894, - 4.2743586448068527E-15, - 1.0, - 0.0, - 1.8341525493948891, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - -4.2743586448068527E-15, - 0.0, - 1.486523877570912, - 4.2743586448068527E-15, - 1.0, - 0.0, - 1.8341525493948847, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 2.654822923624554, - "Y": 1.8110737764750215, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", - "Transform": { - "Matrix": { - "Components": [ - -2.7755575615628914E-16, - 1.0, - 0.0, - 5.6274514819041741, - -1.0, - -2.7755575615628914E-16, - 0.0, - 2.9966151262210796, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 5.617062726664626, - "Y": 1.8104257560201331, - "Z": 0.0 - } - } - ] - }, - "6P-A": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 6.0185057921995337, - "Y": 3.7614112552492118, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", - "Transform": { - "Matrix": { - "Components": [ - 5.6621374255882984E-15, - -1.0, - 0.0, - 0.11794846300852413, - 1.0, - 5.6621374255882984E-15, - 0.0, - 0.80857881639045148, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.5527136788005009E-15, - "Y": 1.8807056276246001, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 0.44010982611666805, - 1.1102230246251605E-16, - -1.0, - 0.0, - 3.3000461993013674, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 0.0, - "Y": 3.7614112552492003, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.64278760968653736, - 0.76604444311897979, - 0.0, - 3.6865078890766441, - -0.76604444311897979, - 0.64278760968653736, - 0.0, - 2.6322691405514771, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - 3.7862006611777517E-15, - 0.0, - 2.9887904357389807, - -3.7862006611777517E-15, - 1.0, - 0.0, - 2.3952488009811721, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - 3.7862006611777517E-15, - 0.0, - 2.1541466900062147, - -3.7862006611777517E-15, - 1.0, - 0.0, - 2.3939851426483476, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 2.110766436922038, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.1015642814600182, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 2.9605610797791861, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.0856892814600223, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 3.7368485797791884, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.1015642814600177, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 2.2677448558363835, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.7424146576095447, - 0.0, - 0.0, - 1.0, - 1.7927566927725118E-27 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 3.639344032243244, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.7424146576095403, - 0.0, - 0.0, - 1.0, - 1.7927566927725118E-27 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 2.9535444440398138, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.742414657609539, - 0.0, - 0.0, - 1.0, - 1.7927566927725118E-27 - ] - } - }, - "Anchor": { - "X": 3.0028888489342549, - "Y": 1.8136649680465773, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 6.0174494785878281, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.4174694947705282, - 0.0, - 0.0, - 1.0, - 0.72959999122619379 - ] - } - }, - "Anchor": { - "X": 6.01850579219953, - "Y": 2.5676307829760225, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.970295726275996, - 0.24192189559967006, - 0.0, - 5.6112414638825072, - -0.24192189559967006, - 0.970295726275996, - 0.0, - 1.4180300518687723, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.0185057921995337, - "Y": 1.1546319456101628E-14, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.78801075360672157, - -0.61566147532565885, - 0.0, - 5.2743393471705993, - 0.61566147532565885, - -0.78801075360672157, - 0.0, - 0.7358513078126232, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.0185057921995337, - "Y": 1.1546319456101628E-14, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ea778d60-2d48-41e9-afab-689676589b87.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 5.5091961558318872, - 1.1102230246251605E-16, - -1.0, - 0.0, - 1.0428508239554652, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 6.0185057921995337, - "Y": 1.1546319456101628E-14, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 6.013764560624594, - 1.1102230246251605E-16, - -1.0, - 0.0, - 0.708407829631768, - 0.0, - 0.0, - 1.0, - 1.3075995944976782 - ] - } - }, - "Anchor": { - "X": 6.0185057921995337, - "Y": 1.1546319456101628E-14, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.0, - -1.1102230246251605E-16, - 0.0, - 6.01376456062459, - 1.1102230246251605E-16, - -1.0, - 0.0, - -0.0026234437739770522, - 0.0, - 0.0, - 1.0, - 0.88136598777771413 - ] - } - }, - "Anchor": { - "X": 6.0185057921995337, - "Y": 1.1546319456101628E-14, - "Z": 0.0 - } - } - ] - }, - "4P-A": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 3.4430551255076267, - "Y": 3.6455956363801625, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.60876144345812488, - 0.79335332920381718, - 0.0, - 2.22485670204329, - -0.79335332920381718, - -0.60876144345812488, - 0.0, - 1.2940073672861843, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.8238093604970373, - "Y": 1.7145862920093684, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.60876137410097664, - 0.793353382423426, - 0.0, - 2.1764183410692866, - -0.793353382423426, - 0.60876137410097664, - 0.0, - 2.0929857882968896, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.8238093604970373, - "Y": 1.7145862920093684, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.688024467947835, - -0.72568748887182744, - 0.0, - 1.3105989535460552, - 0.72568748887182744, - -0.688024467947835, - 0.0, - 1.2648336450858948, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.8238093604970373, - "Y": 1.7145862920093684, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.71307174090805736, - -0.70109107277040161, - 0.0, - 1.2946813385974778, - 0.70109107277040161, - 0.71307174090805736, - 0.0, - 2.1263652273854792, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.8238093604970373, - "Y": 1.7145862920093684, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - 1.6653345369377348E-15, - 0.0, - 1.7945531189951325, - -1.6653345369377348E-15, - 1.0, - 0.0, - 1.5993982295654949, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.8238093604970373, - "Y": 1.7145862920093684, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", - "Transform": { - "Matrix": { - "Components": [ - -6.3282712403633931E-15, - 1.0, - 0.0, - 3.4308630154047535, - -1.0, - -6.3282712403633931E-15, - 0.0, - 2.7076557317365384, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.4430551255076196, - "Y": 1.8227978181900788, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.9984014443252818E-15, - -1.0, - 0.0, - -0.00044320245327611474, - 1.0, - 1.9984014443252818E-15, - 0.0, - 0.87885573173652887, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 0.0, - "Y": 1.8227978181900832, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", - "Transform": { - "Matrix": { - "Components": [ - -2.5535129566378593E-15, - -1.0, - 0.0, - 0.036070264911444383, - 1.0, - -2.5535129566378593E-15, - 0.0, - 0.88285767009239979, - 0.0, - 0.0, - 1.0, - -0.63499999999999979 - ] - } - }, - "Anchor": { - "X": 0.0, - "Y": 1.8227978181900832, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", - "Transform": { - "Matrix": { - "Components": [ - -6.2172489379008766E-15, - 1.0, - 0.0, - 0.23970017251293996, - -1.0, - -6.2172489379008766E-15, - 0.0, - 0.24767492391655566, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 0.0, - "Y": 4.4408920985006262E-15, - "Z": 0.0 - } - } - ] - }, - "4P-B": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 3.2112433205801239, - "Y": 2.5950894288843602, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.0, - 1.4988010832439615E-15, - 0.0, - 1.5627413140676296, - -1.4988010832439615E-15, - 1.0, - 0.0, - 1.1833257591827988, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.5198663979142992, - "Y": 1.3070371759209318, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.71307174090805714, - -0.70109107277040172, - 0.0, - 1.0628695336699749, - 0.70109107277040172, - 0.71307174090805714, - 0.0, - 1.7102927570027826, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.5198663979142992, - "Y": 1.3070371759209318, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.68802446794783512, - -0.72568748887182732, - 0.0, - 1.0787871486185594, - 0.72568748887182732, - -0.68802446794783512, - 0.0, - 0.84876117470319867, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.5198663979142992, - "Y": 1.3070371759209318, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.60876137410097686, - 0.7933533824234259, - 0.0, - 1.9446065361417837, - -0.7933533824234259, - 0.60876137410097686, - 0.0, - 1.6769133179141935, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.5198663979142992, - "Y": 1.3070371759209318, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.60876144345812466, - 0.79335332920381729, - 0.0, - 1.9930448971157873, - -0.79335332920381729, - -0.60876144345812466, - 0.0, - 0.87793489690348814, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 1.5198663979142992, - "Y": 1.3070371759209318, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", - "Transform": { - "Matrix": { - "Components": [ - -6.3282712403633931E-15, - 1.0, - 0.0, - 3.1990512104772577, - -1.0, - -6.3282712403633931E-15, - 0.0, - 2.1824026279886377, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.2112433205801239, - "Y": 1.2975447144421781, - "Z": 0.0 - } - } - ] - }, - "13P": { - "CellBoundary": { - "Min": { - "X": 0.0, - "Y": 0.0, - "Z": 0.0 - }, - "Max": { - "X": 8.40267824883557, - "Y": 4.6217047722458542, - "Z": 0.0 - } - }, - "ContentItems": [ - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.25881924277568774, - -0.96592577332268126, - 0.0, - 1.2401396292303652, - 0.96592577332268126, - 0.25881924277568774, - 0.0, - 2.334758570636092, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.99999999999997913, - -2.0464843727731114E-07, - 0.0, - 1.6971429604882224, - 2.0464843727731114E-07, - -0.99999999999997913, - 0.0, - 1.6732928188945175, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.99999999999997913, - -2.0464722171435887E-07, - 0.0, - 2.5797028531682189, - 2.0464722171435887E-07, - -0.99999999999997913, - 0.0, - 1.6490761491232746, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.99999999999997913, - -2.0464821358554083E-07, - 0.0, - 3.5736895676851406, - 2.0464821358554083E-07, - -0.99999999999997913, - 0.0, - 1.5984585909544879, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.99999999999997913, - -2.0464722171435887E-07, - 0.0, - 4.5513040567377852, - 2.0464722171435887E-07, - -0.99999999999997913, - 0.0, - 1.5902374834325075, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.99999999999997913, - -2.0464821358554083E-07, - 0.0, - 5.4807650252030173, - 2.0464821358554083E-07, - -0.99999999999997913, - 0.0, - 1.6222667307331289, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - -0.99999999999997913, - -2.0464821358554083E-07, - 0.0, - 6.4147281542623569, - 2.0464821358554083E-07, - -0.99999999999997913, - 0.0, - 1.6792937942571227, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999997913, - -2.0464711325358409E-07, - 0.0, - 6.4108453997733816, - 2.0464711325358409E-07, - 0.99999999999997913, - 0.0, - 3.00724692015262, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999997913, - -2.0464711325358409E-07, - 0.0, - 5.4768829198469, - 2.0464711325358409E-07, - 0.99999999999997913, - 0.0, - 3.0493491798462369, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999997913, - -2.0464711325358409E-07, - 0.0, - 4.5482157047231437, - 2.0464711325358409E-07, - 0.99999999999997913, - 0.0, - 3.0936163836254567, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999997913, - -2.0464711325358409E-07, - 0.0, - 3.5706005946054331, - 2.0464711325358409E-07, - 0.99999999999997913, - 0.0, - 3.0764371321509909, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999997913, - -2.0464711325358409E-07, - 0.0, - 2.5766145076277729, - 2.0464711325358409E-07, - 0.99999999999997913, - 0.0, - 3.03489144138897, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999997913, - -2.0464711325358409E-07, - 0.0, - 1.6940552539634648, - 2.0464711325358409E-07, - 0.99999999999997913, - 0.0, - 3.0064301349128426, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/b65b427c-a433-43d5-85be-2e786db516e6.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999977174, - 6.75876076932025E-07, - 0.0, - 4.59950106530402, - -6.75876076932025E-07, - 0.99999999999977174, - 0.0, - 2.2893753028018429, - 0.0, - 0.0, - 1.0, - -0.40639999999990889 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/30bc1e06-9efb-49ef-93bd-25bc7fb53c48.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999998312, - -1.8360832092383666E-07, - 0.0, - 4.1019650308545419, - 1.8360832092383666E-07, - 0.99999999999998312, - 0.0, - 2.2893752957294486, - 0.0, - 0.0, - 1.0, - -0.40639999999990895 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.8360834025966565E-07, - 0.99999999999998312, - 0.0, - 5.9149408627915054, - -0.99999999999998312, - 1.8360834025966565E-07, - 0.0, - 2.2893751667987132, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.8360834025966565E-07, - 0.99999999999998312, - 0.0, - 4.7719408627915048, - -0.99999999999998312, - 1.8360834025966565E-07, - 0.0, - 2.2893751667987132, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.8360834025966565E-07, - 0.99999999999998312, - 0.0, - 2.2573408627915068, - -0.99999999999998312, - 1.8360834025966565E-07, - 0.0, - 2.2893751667987194, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", - "Transform": { - "Matrix": { - "Components": [ - 1.8360834025966565E-07, - 0.99999999999998312, - 0.0, - 3.39975976047055, - -0.99999999999998312, - 1.8360834025966565E-07, - 0.0, - 2.2893751667987186, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/8d7bc923-e5e2-4720-9c14-b120d56b67c8.glb", - "Transform": { - "Matrix": { - "Components": [ - 0.99999999999998324, - -1.8360834036468342E-07, - 0.0, - 4.1019650308546094, - 1.8360834036468342E-07, - 0.99999999999998324, - 0.0, - 2.2893752957294522, - 0.0, - 0.0, - 1.0, - 1.962696671853337E-14 - ] - } - }, - "Anchor": { - "X": 3.815613263519865, - "Y": 2.2450481885374622, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", - "Transform": { - "Matrix": { - "Components": [ - -4.6629367034256583E-15, - 1.0, - 0.0, - 8.4100950927378939, - -1.0, - -4.6629367034256583E-15, - 0.0, - 3.2415535770581676, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 8.40267824883557, - "Y": 2.3108523861229271, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", - "Transform": { - "Matrix": { - "Components": [ - -3.7001027927304506E-08, - 0.99999999999999933, - 0.0, - 8.2130301591429156, - -0.99999999999999933, - -3.7001027927304506E-08, - 0.0, - 3.7711246376591836, - 0.0, - 0.0, - 1.0, - 1.8505311444854733 - ] - } - }, - "Anchor": { - "X": 8.40267824883557, - "Y": 4.6217047722458542, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", - "Transform": { - "Matrix": { - "Components": [ - -1.8360831914747982E-07, - -0.99999999999998312, - 0.0, - 8.19611837670503, - 0.99999999999998312, - -1.8360831914747982E-07, - 0.0, - 4.0121047439385134, - 0.0, - 0.0, - 1.0, - -0.13158813079830256 - ] - } - }, - "Anchor": { - "X": 8.40267824883557, - "Y": 4.6217047722458542, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 8.2248782491216659, - -1.0, - -7.2164496600635175E-16, - 0.0, - 4.0121047647118271, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 8.40267824883557, - "Y": 4.6217047722458542, - "Z": 0.0 - } - }, - { - "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", - "Transform": { - "Matrix": { - "Components": [ - -7.2164496600635175E-16, - 1.0, - 0.0, - 8.224878249121673, - -1.0, - -7.2164496600635175E-16, - 0.0, - 0.60960000753402721, - 0.0, - 0.0, - 1.0, - 0.0 - ] - } - }, - "Anchor": { - "X": 8.40267824883557, - "Y": 0.0, - "Z": 0.0 - } - } - ] - } -} +{ + "22P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 9.783527184594139, + "Y": 7.869267135446547, + "Z": 0.0 + }, + "Width": 9.783527184594139, + "Depth": 7.869267135446547 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3304923425587774, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.1296517437310847, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7763568394002505E-15, + 0.0, + 4.930434907523079, + -1.7763568394002505E-15, + -1.0, + 0.0, + 5.729593593439648, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7763568394002505E-15, + 0.0, + 8.530376846638589, + -1.7763568394002505E-15, + -1.0, + 0.0, + 5.729593593439648, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.3304924319657445, + 1.7763568394002505E-15, + 1.0, + 0.0, + 2.1296518831892812, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.930434371081269, + 1.7763568394002505E-15, + 1.0, + 0.0, + 2.1296518831892812, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.7515709447065078, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.9246446447064898, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.133913244706488, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.6033956982777973, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.453315698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.308355698277797, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.158275698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.5971541481194187, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.299763957215241, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 4.3975383944618756, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831034, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 3.547618394461878, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 2.6925783944618757, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 1.8426583944618784, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831023, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 1.8379633067906127, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 2.68788330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 3.5429233067906125, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 4.39284330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 7.9495457461620305, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 7.099625746162033, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 6.244585746162031, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 5.394665746162033, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 5.399360833833299, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831023, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 6.2492808338333035, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 7.104320833833299, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 7.954240833833303, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831034, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.953999232457079, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041416, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.127072932457068, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041419, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.336341532457055, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041419, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.553941171572603, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041423, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.727014871572585, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041426, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 7.93628347157258, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041426, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 1.9387603027582685, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807397, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 3.1480289027582558, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807455, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 4.321102602758231, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807548, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 5.538702241873779, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807642, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 6.74797084187378, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.54512622658077, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 7.9210445418737585, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807792, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.446713987643555, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.218847493575595E-15, + 1.0, + 0.0, + 9.779979371441069, + -1.0, + -4.218847493575595E-15, + 0.0, + 3.873391231673723, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.783527184594139, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.218847493575595E-15, + 1.0, + 0.0, + 9.779979371441069, + -1.0, + -4.218847493575595E-15, + 0.0, + 6.3575640744232285, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.783527184594139, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 9.60572718488024, + -1.0, + -7.216449660063518E-16, + 0.0, + 0.6096000075340272, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.783527184594139, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.9999999999999993, + 0.0, + 9.594309806650301, + -0.9999999999999993, + -3.7001027927304506E-08, + 0.0, + 7.0166859727954165, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 9.783527184594139, + "Y": 7.869267135446547, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.9999999999999831, + 0.0, + 9.576967312463598, + 0.9999999999999831, + -1.8360831914747982E-07, + 0.0, + 7.2596671071392045, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 9.783527184594139, + "Y": 7.869267135446547, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 9.605727184880234, + -1.0, + -7.216449660063518E-16, + 0.0, + 7.259667127912518, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 9.783527184594139, + "Y": 7.869267135446547, + "Z": 0.0 + } + } + ], + "Width": 9.783527184594139, + "Depth": 7.869267135446547 + }, + "20P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 6.657633758620548, + "Y": 7.869267135446547, + "Z": 0.0 + }, + "Width": 6.657633758620548, + "Depth": 7.869267135446547 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 5.9396931817445875E-15, + 0.0, + 1.330492431965716, + -5.9396931817445875E-15, + 1.0, + 0.0, + 2.129651121449025, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -6.494804694057166E-15, + 1.0, + 0.0, + 4.930434996930046, + -1.0, + -6.494804694057166E-15, + 0.0, + 5.729593943938729, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -6.494804694057166E-15, + 1.0, + 0.0, + 2.5303887604387576, + -1.0, + -6.494804694057166E-15, + 0.0, + 5.729593457548164, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -5.9396931817445875E-15, + 0.0, + 4.930434632173377, + 5.9396931817445875E-15, + -1.0, + 0.0, + 5.729593593439649, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.7763568394002505E-15, + 1.0, + 0.0, + 4.932123838818043, + -1.0, + 1.7763568394002505E-15, + 0.0, + 6.2605042153841985, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.7763568394002505E-15, + 1.0, + 0.0, + 4.932123838818043, + -1.0, + 1.7763568394002505E-15, + 0.0, + 1.5578944062883764, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -8.1601392309949E-15, + 1.0, + 0.0, + 4.330537439302123, + -1.0, + -8.1601392309949E-15, + 0.0, + 2.7237451187971047, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -8.1601392309949E-15, + 1.0, + 0.0, + 4.330537439302137, + -1.0, + -8.1601392309949E-15, + 0.0, + 3.933013718797099, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -8.1601392309949E-15, + 1.0, + 0.0, + 4.3305374393021445, + -1.0, + -8.1601392309949E-15, + 0.0, + 5.106087418797081, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -5.440092820663266E-15, + 1.0, + 0.0, + 4.880756319091731, + -1.0, + -5.440092820663266E-15, + 0.0, + 2.7057877565363775, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -5.440092820663266E-15, + 1.0, + 0.0, + 4.880756319091738, + -1.0, + -5.440092820663266E-15, + 0.0, + 3.555707756536382, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -5.440092820663266E-15, + 1.0, + 0.0, + 4.880756319091745, + -1.0, + -5.440092820663266E-15, + 0.0, + 4.410747756536377, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -5.440092820663266E-15, + 1.0, + 0.0, + 4.8807563190917485, + -1.0, + -5.440092820663266E-15, + 0.0, + 5.260667756536382, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.7515709447065078, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.9246446447064898, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.133913244706488, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.6033956982777973, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.453315698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.308355698277797, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.158275698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.5971541481194187, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.299763957215241, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 4.3975383944618756, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831034, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 3.547618394461878, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 2.6925783944618757, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 1.8426583944618784, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831023, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 1.8379633067906127, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 2.68788330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 3.5429233067906125, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 4.39284330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.953999232457079, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041416, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.127072932457068, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041419, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.336341532457055, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041419, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 1.9387603027582685, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807397, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 3.1480289027582558, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807455, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 4.321102602758231, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807548, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.972428158431068, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.218847493575595E-15, + 1.0, + 0.0, + 6.654085945467479, + -1.0, + -4.218847493575595E-15, + 0.0, + 6.3575640744232285, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.657633758620548, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.218847493575595E-15, + 1.0, + 0.0, + 6.654085945467479, + -1.0, + -4.218847493575595E-15, + 0.0, + 3.873391231673723, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.657633758620548, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 6.479833758906651, + -1.0, + -7.216449660063518E-16, + 0.0, + 0.6096000075340272, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.657633758620548, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.9999999999999993, + 0.0, + 6.469826192219827, + -0.9999999999999993, + -3.7001027927304506E-08, + 0.0, + 7.01674104355882, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 6.657633758620548, + "Y": 7.869267135446547, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 6.4798337589066435, + -1.0, + -7.216449660063518E-16, + 0.0, + 7.259667127912518, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.657633758620548, + "Y": 7.869267135446547, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.9999999999999831, + 0.0, + 6.451073886490008, + 0.9999999999999831, + -1.8360831914747982E-07, + 0.0, + 7.2596671071392045, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 6.657633758620548, + "Y": 7.869267135446547, + "Z": 0.0 + } + } + ], + "Width": 6.657633758620548, + "Depth": 7.869267135446547 + }, + "14P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 6.552405875798925, + "Y": 7.869267135446547, + "Z": 0.0 + }, + "Width": 6.552405875798925, + "Depth": 7.869267135446547 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7763568394002505E-15, + 0.0, + 4.930434639302174, + -1.7763568394002505E-15, + -1.0, + 0.0, + 5.729593951067518, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3304923425587845, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.1296517437310847, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.3304924319657516, + 1.7763568394002505E-15, + 1.0, + 0.0, + 2.1296518831892812, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.930389900186686, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.7515709447065078, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.9246446447064898, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.9303899001866824, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.133913244706488, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 2.6033956982777973, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.453315698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.308355698277797, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001866986, + 1.0, + -1.7763568394002505E-15, + 0.0, + 5.158275698277798, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001867021, + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.5971541481194187, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7763568394002505E-15, + -1.0, + 0.0, + 1.3303911001866986, + 1.0, + -1.7763568394002505E-15, + 0.0, + 6.299763957215241, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 4.397538394461883, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831034, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 3.547618394461878, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 2.692578394461883, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.87981160883103, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.496403249731885E-15, + 0.0, + 1.8426583944618784, + 4.496403249731885E-15, + 1.0, + 0.0, + 6.879811608831023, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 1.8379633067906127, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594505991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 2.68788330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450608, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 3.5429233067906125, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.0130561594506133, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 9.936496070395151E-15, + 0.0, + 4.39284330679061, + -9.936496070395151E-15, + -1.0, + 0.0, + 1.013056159450624, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 1.953999232457086, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041423, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 3.127072932457068, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041426, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7763568394002505E-15, + 0.0, + 4.336341532457062, + 1.7763568394002505E-15, + 1.0, + 0.0, + 6.329592729041426, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 1.938760302758265, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807642, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 3.1480289027582593, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.54512622658077, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 6.5503158452884236E-15, + 0.0, + 4.321102602758241, + -6.5503158452884236E-15, + -1.0, + 0.0, + 1.5451262265807792, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.8623686818349032, + "Y": 3.9381535437547353, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.218847493575595E-15, + 1.0, + 0.0, + 6.548858062645856, + -1.0, + -4.218847493575595E-15, + 0.0, + 6.3575640744232285, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.552405875798925, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.218847493575595E-15, + 1.0, + 0.0, + 6.548858062645856, + -1.0, + -4.218847493575595E-15, + 0.0, + 3.873391231673723, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.552405875798925, + "Y": 3.9346335677232736, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 6.3746058760850275, + -1.0, + -7.216449660063518E-16, + 0.0, + 0.6096000075340272, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.552405875798925, + "Y": 0.0, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.9999999999999993, + 0.0, + 6.36333804290153, + -0.9999999999999993, + -3.7001027927304506E-08, + 0.0, + 7.022328705243273, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 6.552405875798925, + "Y": 7.869267135446547, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 6.37460587608502, + -1.0, + -7.216449660063518E-16, + 0.0, + 7.259667127912521, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.552405875798925, + "Y": 7.869267135446547, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.9999999999999831, + 0.0, + 6.345846003668385, + 0.9999999999999831, + -1.8360831914747982E-07, + 0.0, + 7.259667107139207, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 6.552405875798925, + "Y": 7.869267135446547, + "Z": 0.0 + } + } + ], + "Width": 6.552405875798925, + "Depth": 7.869267135446547 + }, + "6P-B": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 4.613806960929441, + "Y": 3.7614112552492056, + "Z": 0.0 + }, + "Width": 4.613806960929441, + "Depth": 3.7614112552492056 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 2.529279921455707, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.7424146576095358, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 3.2150795096591374, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.7424146576095367, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 1.843480333252277, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.7424146576095425, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 3.312584057195078, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.1015642814600142, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 2.536296557195076, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.0856892814600192, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 1.6865019143379278, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.101564281460016, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.563356778415361E-15, + 0.0, + 1.7298821674221045, + -4.563356778415361E-15, + 1.0, + 0.0, + 2.393985142648346, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.563356778415361E-15, + 0.0, + 2.564525913154867, + -4.563356778415361E-15, + 1.0, + 0.0, + 2.3952488009811694, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.6427876096865367, + 0.7660444431189802, + 0.0, + 3.262243366492534, + -0.7660444431189802, + 0.6427876096865367, + 0.0, + 2.632269140551474, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.5279652577827534, + "Y": 1.856303387779798, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 4.60897985624452, + 8.88178419700125E-16, + -1.0, + 0.0, + 0.7084078296317617, + 0.0, + 0.0, + 1.0, + 1.3075995944976782 + ] + } + }, + "Anchor": { + "X": 4.613806960929445, + "Y": 5.329070518200751E-15, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 4.60897985624452, + 8.88178419700125E-16, + -1.0, + 0.0, + -0.00208962851095984, + 0.0, + 0.0, + 1.0, + 0.8813659877777141 + ] + } + }, + "Anchor": { + "X": 4.613806960929445, + "Y": 5.329070518200751E-15, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 4.612979990544975, + 8.88178419700125E-16, + -1.0, + 0.0, + 1.4174694947705215, + 0.0, + 0.0, + 1.0, + 0.7295999912261938 + ] + } + }, + "Anchor": { + "X": 4.613806960929441, + "Y": 2.5676307829760163, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.439293542825908E-15, + -1.0, + 0.0, + 0.11794846300852058, + 1.0, + 6.439293542825908E-15, + 0.0, + 0.808578816390451, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.552713678800501E-15, + "Y": 1.8807056276246001, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -8.88178419700125E-16, + 0.0, + 0.44010982611666805, + 8.88178419700125E-16, + -1.0, + 0.0, + 3.300046199301367, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 3.7614112552492003, + "Z": 0.0 + } + } + ], + "Width": 4.613806960929441, + "Depth": 3.7614112552492056 + }, + "8P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 5.617062726664635, + "Y": 3.620851512040254, + "Z": 0.0 + }, + "Width": 5.617062726664635, + "Depth": 3.620851512040254 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 0.8646046765954871, + 4.274358644806853E-15, + 1.0, + 0.0, + 2.4340496206322073, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.0432694959416792E-15, + 0.0, + 1.338348631142221, + -1.0432694959416792E-15, + -1.0, + 0.0, + 1.2341537493948986, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.0432694959416792E-15, + 0.0, + 2.188268631142222, + -1.0432694959416792E-15, + -1.0, + 0.0, + 1.2341537493949026, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.0432694959416792E-15, + 0.0, + 3.0433086311422244, + -1.0432694959416792E-15, + -1.0, + 0.0, + 1.2341537493949049, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.1102230246251565E-15, + 0.0, + 3.8932286311422253, + -1.1102230246251565E-15, + -1.0, + 0.0, + 1.2341537493949102, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 3.8932286311422004, + 4.274358644806853E-15, + 1.0, + 0.0, + 2.4341513493948783, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 3.0433086311421995, + 4.274358644806853E-15, + 1.0, + 0.0, + 2.434151349394874, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 2.1882686311422006, + 4.274358644806853E-15, + 1.0, + 0.0, + 2.434151349394872, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 1.3383486311421997, + 4.274358644806853E-15, + 1.0, + 0.0, + 2.434151349394868, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 3.868866177570892, + 4.274358644806853E-15, + 1.0, + 0.0, + 1.834152549394894, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 2.659597577570894, + 4.274358644806853E-15, + 1.0, + 0.0, + 1.8341525493948891, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -4.274358644806853E-15, + 0.0, + 1.486523877570912, + 4.274358644806853E-15, + 1.0, + 0.0, + 1.8341525493948847, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.654822923624554, + "Y": 1.8110737764750215, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.7755575615628914E-16, + 1.0, + 0.0, + 5.627451481904174, + -1.0, + -2.7755575615628914E-16, + 0.0, + 2.9966151262210796, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 5.617062726664626, + "Y": 1.8104257560201331, + "Z": 0.0 + } + } + ], + "Width": 5.617062726664635, + "Depth": 3.620851512040254 + }, + "6P-A": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 6.018505792199534, + "Y": 3.761411255249212, + "Z": 0.0 + }, + "Width": 6.018505792199534, + "Depth": 3.761411255249212 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 5.662137425588298E-15, + -1.0, + 0.0, + 0.11794846300852413, + 1.0, + 5.662137425588298E-15, + 0.0, + 0.8085788163904515, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.552713678800501E-15, + "Y": 1.8807056276246001, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 0.44010982611666805, + 1.1102230246251605E-16, + -1.0, + 0.0, + 3.3000461993013674, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 3.7614112552492003, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.6427876096865374, + 0.7660444431189798, + 0.0, + 3.686507889076644, + -0.7660444431189798, + 0.6427876096865374, + 0.0, + 2.632269140551477, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.786200661177752E-15, + 0.0, + 2.9887904357389807, + -3.786200661177752E-15, + 1.0, + 0.0, + 2.395248800981172, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.786200661177752E-15, + 0.0, + 2.1541466900062147, + -3.786200661177752E-15, + 1.0, + 0.0, + 2.3939851426483476, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.110766436922038, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.1015642814600182, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.960561079779186, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.0856892814600223, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 3.7368485797791884, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.1015642814600177, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.2677448558363835, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.7424146576095447, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 3.639344032243244, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.7424146576095403, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 2.9535444440398138, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.742414657609539, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 3.002888848934255, + "Y": 1.8136649680465773, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 6.017449478587828, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.4174694947705282, + 0.0, + 0.0, + 1.0, + 0.7295999912261938 + ] + } + }, + "Anchor": { + "X": 6.01850579219953, + "Y": 2.5676307829760225, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.970295726275996, + 0.24192189559967006, + 0.0, + 5.611241463882507, + -0.24192189559967006, + 0.970295726275996, + 0.0, + 1.4180300518687723, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.018505792199534, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.7880107536067216, + -0.6156614753256588, + 0.0, + 5.274339347170599, + 0.6156614753256588, + -0.7880107536067216, + 0.0, + 0.7358513078126232, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.018505792199534, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ea778d60-2d48-41e9-afab-689676589b87.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 5.509196155831887, + 1.1102230246251605E-16, + -1.0, + 0.0, + 1.0428508239554652, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 6.018505792199534, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 6.013764560624594, + 1.1102230246251605E-16, + -1.0, + 0.0, + 0.708407829631768, + 0.0, + 0.0, + 1.0, + 1.3075995944976782 + ] + } + }, + "Anchor": { + "X": 6.018505792199534, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -1.1102230246251605E-16, + 0.0, + 6.01376456062459, + 1.1102230246251605E-16, + -1.0, + 0.0, + -0.002623443773977052, + 0.0, + 0.0, + 1.0, + 0.8813659877777141 + ] + } + }, + "Anchor": { + "X": 6.018505792199534, + "Y": 1.1546319456101628E-14, + "Z": 0.0 + } + } + ], + "Width": 6.018505792199534, + "Depth": 3.761411255249212 + }, + "4P-A": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.4430551255076267, + "Y": 3.6455956363801625, + "Z": 0.0 + }, + "Width": 3.4430551255076267, + "Depth": 3.6455956363801625 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.6087614434581249, + 0.7933533292038172, + 0.0, + 2.22485670204329, + -0.7933533292038172, + -0.6087614434581249, + 0.0, + 1.2940073672861843, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.6087613741009766, + 0.793353382423426, + 0.0, + 2.1764183410692866, + -0.793353382423426, + 0.6087613741009766, + 0.0, + 2.0929857882968896, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.688024467947835, + -0.7256874888718274, + 0.0, + 1.3105989535460552, + 0.7256874888718274, + -0.688024467947835, + 0.0, + 1.2648336450858948, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.7130717409080574, + -0.7010910727704016, + 0.0, + 1.2946813385974778, + 0.7010910727704016, + 0.7130717409080574, + 0.0, + 2.126365227385479, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.6653345369377348E-15, + 0.0, + 1.7945531189951325, + -1.6653345369377348E-15, + 1.0, + 0.0, + 1.599398229565495, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8238093604970373, + "Y": 1.7145862920093684, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -6.328271240363393E-15, + 1.0, + 0.0, + 3.4308630154047535, + -1.0, + -6.328271240363393E-15, + 0.0, + 2.7076557317365384, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.4430551255076196, + "Y": 1.8227978181900788, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.9984014443252818E-15, + -1.0, + 0.0, + -0.00044320245327611474, + 1.0, + 1.9984014443252818E-15, + 0.0, + 0.8788557317365289, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 1.8227978181900832, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.5535129566378593E-15, + -1.0, + 0.0, + 0.03607026491144438, + 1.0, + -2.5535129566378593E-15, + 0.0, + 0.8828576700923998, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 1.8227978181900832, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -6.217248937900877E-15, + 1.0, + 0.0, + 0.23970017251293996, + -1.0, + -6.217248937900877E-15, + 0.0, + 0.24767492391655566, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 4.440892098500626E-15, + "Z": 0.0 + } + } + ], + "Width": 3.4430551255076267, + "Depth": 3.6455956363801625 + }, + "4P-B": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.211243320580124, + "Y": 2.5950894288843602, + "Z": 0.0 + }, + "Width": 3.211243320580124, + "Depth": 2.5950894288843602 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 1.4988010832439615E-15, + 0.0, + 1.5627413140676296, + -1.4988010832439615E-15, + 1.0, + 0.0, + 1.1833257591827988, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.7130717409080571, + -0.7010910727704017, + 0.0, + 1.062869533669975, + 0.7010910727704017, + 0.7130717409080571, + 0.0, + 1.7102927570027826, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.6880244679478351, + -0.7256874888718273, + 0.0, + 1.0787871486185594, + 0.7256874888718273, + -0.6880244679478351, + 0.0, + 0.8487611747031987, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.6087613741009769, + 0.7933533824234259, + 0.0, + 1.9446065361417837, + -0.7933533824234259, + 0.6087613741009769, + 0.0, + 1.6769133179141935, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.6087614434581247, + 0.7933533292038173, + 0.0, + 1.9930448971157873, + -0.7933533292038173, + -0.6087614434581247, + 0.0, + 0.8779348969034881, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.5198663979142992, + "Y": 1.3070371759209318, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -6.328271240363393E-15, + 1.0, + 0.0, + 3.1990512104772577, + -1.0, + -6.328271240363393E-15, + 0.0, + 2.1824026279886377, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.211243320580124, + "Y": 1.2975447144421781, + "Z": 0.0 + } + } + ], + "Width": 3.211243320580124, + "Depth": 2.5950894288843602 + }, + "13P": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 8.40267824883557, + "Y": 4.621704772245854, + "Z": 0.0 + }, + "Width": 8.40267824883557, + "Depth": 4.621704772245854 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.25881924277568774, + -0.9659257733226813, + 0.0, + 1.2401396292303652, + 0.9659257733226813, + 0.25881924277568774, + 0.0, + 2.334758570636092, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999791, + -2.0464843727731114E-07, + 0.0, + 1.6971429604882224, + 2.0464843727731114E-07, + -0.9999999999999791, + 0.0, + 1.6732928188945175, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999791, + -2.0464722171435887E-07, + 0.0, + 2.579702853168219, + 2.0464722171435887E-07, + -0.9999999999999791, + 0.0, + 1.6490761491232746, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999791, + -2.0464821358554083E-07, + 0.0, + 3.5736895676851406, + 2.0464821358554083E-07, + -0.9999999999999791, + 0.0, + 1.598458590954488, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999791, + -2.0464722171435887E-07, + 0.0, + 4.551304056737785, + 2.0464722171435887E-07, + -0.9999999999999791, + 0.0, + 1.5902374834325075, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999791, + -2.0464821358554083E-07, + 0.0, + 5.480765025203017, + 2.0464821358554083E-07, + -0.9999999999999791, + 0.0, + 1.6222667307331289, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999791, + -2.0464821358554083E-07, + 0.0, + 6.414728154262357, + 2.0464821358554083E-07, + -0.9999999999999791, + 0.0, + 1.6792937942571227, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999791, + -2.046471132535841E-07, + 0.0, + 6.410845399773382, + 2.046471132535841E-07, + 0.9999999999999791, + 0.0, + 3.00724692015262, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999791, + -2.046471132535841E-07, + 0.0, + 5.4768829198469, + 2.046471132535841E-07, + 0.9999999999999791, + 0.0, + 3.049349179846237, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999791, + -2.046471132535841E-07, + 0.0, + 4.548215704723144, + 2.046471132535841E-07, + 0.9999999999999791, + 0.0, + 3.0936163836254567, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999791, + -2.046471132535841E-07, + 0.0, + 3.570600594605433, + 2.046471132535841E-07, + 0.9999999999999791, + 0.0, + 3.076437132150991, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999791, + -2.046471132535841E-07, + 0.0, + 2.576614507627773, + 2.046471132535841E-07, + 0.9999999999999791, + 0.0, + 3.03489144138897, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999791, + -2.046471132535841E-07, + 0.0, + 1.6940552539634648, + 2.046471132535841E-07, + 0.9999999999999791, + 0.0, + 3.0064301349128426, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/b65b427c-a433-43d5-85be-2e786db516e6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999997717, + 6.75876076932025E-07, + 0.0, + 4.59950106530402, + -6.75876076932025E-07, + 0.9999999999997717, + 0.0, + 2.289375302801843, + 0.0, + 0.0, + 1.0, + -0.4063999999999089 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/30bc1e06-9efb-49ef-93bd-25bc7fb53c48.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999831, + -1.8360832092383666E-07, + 0.0, + 4.101965030854542, + 1.8360832092383666E-07, + 0.9999999999999831, + 0.0, + 2.2893752957294486, + 0.0, + 0.0, + 1.0, + -0.40639999999990895 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.9999999999999831, + 0.0, + 5.914940862791505, + -0.9999999999999831, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987132, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.9999999999999831, + 0.0, + 4.771940862791505, + -0.9999999999999831, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987132, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.9999999999999831, + 0.0, + 2.257340862791507, + -0.9999999999999831, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987194, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.8360834025966565E-07, + 0.9999999999999831, + 0.0, + 3.39975976047055, + -0.9999999999999831, + 1.8360834025966565E-07, + 0.0, + 2.2893751667987186, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/8d7bc923-e5e2-4720-9c14-b120d56b67c8.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999832, + -1.8360834036468342E-07, + 0.0, + 4.101965030854609, + 1.8360834036468342E-07, + 0.9999999999999832, + 0.0, + 2.289375295729452, + 0.0, + 0.0, + 1.0, + 1.962696671853337E-14 + ] + } + }, + "Anchor": { + "X": 3.815613263519865, + "Y": 2.2450481885374622, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.662936703425658E-15, + 1.0, + 0.0, + 8.410095092737894, + -1.0, + -4.662936703425658E-15, + 0.0, + 3.2415535770581676, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 2.310852386122927, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -3.7001027927304506E-08, + 0.9999999999999993, + 0.0, + 8.213030159142916, + -0.9999999999999993, + -3.7001027927304506E-08, + 0.0, + 3.7711246376591836, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 4.621704772245854, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.8360831914747982E-07, + -0.9999999999999831, + 0.0, + 8.19611837670503, + 0.9999999999999831, + -1.8360831914747982E-07, + 0.0, + 4.012104743938513, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 4.621704772245854, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 8.224878249121666, + -1.0, + -7.216449660063518E-16, + 0.0, + 4.012104764711827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 4.621704772245854, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -7.216449660063518E-16, + 1.0, + 0.0, + 8.224878249121673, + -1.0, + -7.216449660063518E-16, + 0.0, + 0.6096000075340272, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.40267824883557, + "Y": 0.0, + "Z": 0.0 + } + } + ], + "Width": 8.40267824883557, + "Depth": 4.621704772245854 + }, + "22P Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 7.869267135446547, + "Y": 9.783527184594139, + "Z": 0.0 + }, + "Width": 7.869267135446547, + "Depth": 9.783527184594139 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.739615391715462, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3304923425587776, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.7151244994428829E-15, + 1.0, + 0.0, + 2.139673542006899, + -1.0, + 1.7151244994428829E-15, + 0.0, + 4.930434907523079, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.7151244994428829E-15, + 1.0, + 0.0, + 2.1396735420069, + -1.0, + 1.7151244994428829E-15, + 0.0, + 8.530376846638589, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 5.739615252257266, + 1.0, + -1.7151244994428829E-15, + 0.0, + 1.3304924319657447, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 5.739615252257266, + 1.0, + -1.7151244994428829E-15, + 0.0, + 4.930434371081269, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.117696190740039, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 3.9446224907400573, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 2.7353538907400594, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.26587143716875, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 4.415951437168749, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 3.56091143716875, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 2.710991437168749, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 6.272112987327128, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867021, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 1.5695031782313063, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867026, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.9894555266155134, + 1.0, + -4.435170909774517E-15, + 0.0, + 4.3975383944618756, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 3.5476183944618787, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 2.692578394461876, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615524, + 1.0, + -4.435170909774517E-15, + 0.0, + 1.8426583944618788, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995948, + -1.0, + 9.875263730437783E-15, + 0.0, + 1.8379633067906127, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995939, + -1.0, + 9.875263730437783E-15, + 0.0, + 2.68788330679061, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995934, + -1.0, + 9.875263730437783E-15, + 0.0, + 3.5429233067906125, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995923, + -1.0, + 9.875263730437783E-15, + 0.0, + 4.39284330679061, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995923, + -1.0, + 9.875263730437783E-15, + 0.0, + 7.9495457461620305, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995934, + -1.0, + 9.875263730437783E-15, + 0.0, + 7.099625746162033, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995939, + -1.0, + 9.875263730437783E-15, + 0.0, + 6.244585746162031, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995948, + -1.0, + 9.875263730437783E-15, + 0.0, + 5.394665746162033, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615524, + 1.0, + -4.435170909774517E-15, + 0.0, + 5.399360833833299, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 6.2492808338333035, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 7.104320833833299, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.9894555266155143, + 1.0, + -4.435170909774517E-15, + 0.0, + 7.954240833833303, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051315, + 1.0, + -1.7151244994428829E-15, + 0.0, + 1.9539992324570794, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.539674406405128, + 1.0, + -1.7151244994428829E-15, + 0.0, + 3.1270729324570685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.539674406405128, + 1.0, + -1.7151244994428829E-15, + 0.0, + 4.336341532457055, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051244, + 1.0, + -1.7151244994428829E-15, + 0.0, + 5.553941171572603, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051209, + 1.0, + -1.7151244994428829E-15, + 0.0, + 6.727014871572585, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051218, + 1.0, + -1.7151244994428829E-15, + 0.0, + 7.93628347157258, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865807, + -1.0, + 6.489083505331056E-15, + 0.0, + 1.9387603027582685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865802, + -1.0, + 6.489083505331056E-15, + 0.0, + 3.1480289027582558, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865792, + -1.0, + 6.489083505331056E-15, + 0.0, + 4.321102602758231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865783, + -1.0, + 6.489083505331056E-15, + 0.0, + 5.538702241873779, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865777, + -1.0, + 6.489083505331056E-15, + 0.0, + 6.74797084187378, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865768, + -1.0, + 6.489083505331056E-15, + 0.0, + 7.9210445418737585, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 4.446713987643555, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.2800798335329624E-15, + 0.0, + 3.9958759037728244, + -4.2800798335329624E-15, + 1.0, + 0.0, + 9.779979371441069, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 9.783527184594139, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.2800798335329624E-15, + 0.0, + 1.5117030610233195, + -4.2800798335329624E-15, + 1.0, + 0.0, + 9.779979371441069, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 9.783527184594139, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 7.25966712791252, + -7.828773059637194E-16, + 1.0, + 0.0, + 9.60572718488024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 7.869267135446548, + "Y": 9.783527184594139, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999993, + 3.700102798853685E-08, + 0.0, + 0.8525811626511315, + -3.700102798853685E-08, + 0.9999999999999993, + 0.0, + 9.594309806650301, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 8.881784197001252E-16, + "Y": 9.783527184594139, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999831, + 1.836083190862475E-07, + 0.0, + 0.6096000283073435, + -1.836083190862475E-07, + -0.9999999999999831, + 0.0, + 9.576967312463598, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 8.881784197001252E-16, + "Y": 9.783527184594139, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 0.6096000075340298, + -7.828773059637194E-16, + 1.0, + 0.0, + 9.605727184880234, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.881784197001252E-16, + "Y": 9.783527184594139, + "Z": 0.0 + } + } + ], + "Width": 7.869267135446547, + "Depth": 9.783527184594139 + }, + "20P Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 7.869267135446547, + "Y": 6.657633758620548, + "Z": 0.0 + }, + "Width": 7.869267135446547, + "Depth": 6.657633758620548 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.000925521701955E-15, + -1.0, + 0.0, + 5.739616013997522, + 1.0, + 6.000925521701955E-15, + 0.0, + 1.3304924319657163, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.556037034014533E-15, + 0.0, + 2.1396731915078178, + -6.556037034014533E-15, + 1.0, + 0.0, + 4.930434996930046, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.556037034014533E-15, + 0.0, + 2.139673677898383, + -6.556037034014533E-15, + 1.0, + 0.0, + 2.530388760438758, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -6.000925521701955E-15, + 1.0, + 0.0, + 2.139673542006898, + -1.0, + -6.000925521701955E-15, + 0.0, + 4.930434632173377, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7151244994428829E-15, + 0.0, + 1.6087629200623486, + 1.7151244994428829E-15, + 1.0, + 0.0, + 4.932123838818043, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + -1.7151244994428829E-15, + 0.0, + 6.311372729158171, + 1.7151244994428829E-15, + 1.0, + 0.0, + 4.932123838818043, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.221371570952268E-15, + 0.0, + 5.145522016649442, + -8.221371570952268E-15, + 1.0, + 0.0, + 4.330537439302123, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.221371570952268E-15, + 0.0, + 3.9362534166494485, + -8.221371570952268E-15, + 1.0, + 0.0, + 4.330537439302137, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 8.221371570952268E-15, + 0.0, + 2.763179716649466, + -8.221371570952268E-15, + 1.0, + 0.0, + 4.3305374393021445, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 5.501325160620634E-15, + 0.0, + 5.16347937891017, + -5.501325160620634E-15, + 1.0, + 0.0, + 4.880756319091731, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 5.501325160620634E-15, + 0.0, + 4.313559378910165, + -5.501325160620634E-15, + 1.0, + 0.0, + 4.880756319091738, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 5.501325160620634E-15, + 0.0, + 3.45851937891017, + -5.501325160620634E-15, + 1.0, + 0.0, + 4.880756319091745, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 5.501325160620634E-15, + 0.0, + 2.6085993789101654, + -5.501325160620634E-15, + 1.0, + 0.0, + 4.8807563190917485, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.117696190740039, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 3.9446224907400573, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 2.7353538907400594, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.26587143716875, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 4.415951437168749, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 3.56091143716875, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 2.710991437168749, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 6.272112987327128, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867021, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 1.5695031782313063, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867026, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.9894555266155134, + 1.0, + -4.435170909774517E-15, + 0.0, + 4.3975383944618756, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 3.5476183944618787, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 2.692578394461876, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615524, + 1.0, + -4.435170909774517E-15, + 0.0, + 1.8426583944618788, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995948, + -1.0, + 9.875263730437783E-15, + 0.0, + 1.8379633067906127, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995939, + -1.0, + 9.875263730437783E-15, + 0.0, + 2.68788330679061, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995934, + -1.0, + 9.875263730437783E-15, + 0.0, + 3.5429233067906125, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995923, + -1.0, + 9.875263730437783E-15, + 0.0, + 4.39284330679061, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051315, + 1.0, + -1.7151244994428829E-15, + 0.0, + 1.9539992324570794, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.539674406405128, + 1.0, + -1.7151244994428829E-15, + 0.0, + 3.1270729324570685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.539674406405128, + 1.0, + -1.7151244994428829E-15, + 0.0, + 4.336341532457055, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865807, + -1.0, + 6.489083505331056E-15, + 0.0, + 1.9387603027582685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865802, + -1.0, + 6.489083505331056E-15, + 0.0, + 3.1480289027582558, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865792, + -1.0, + 6.489083505331056E-15, + 0.0, + 4.321102602758231, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.9346335677232736, + "Y": 2.9724281584310686, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.2800798335329624E-15, + 0.0, + 1.5117030610233186, + -4.2800798335329624E-15, + 1.0, + 0.0, + 6.654085945467479, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 6.657633758620548, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.2800798335329624E-15, + 0.0, + 3.9958759037728244, + -4.2800798335329624E-15, + 1.0, + 0.0, + 6.654085945467479, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 6.657633758620548, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 7.25966712791252, + -7.828773059637194E-16, + 1.0, + 0.0, + 6.479833758906651, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 7.869267135446547, + "Y": 6.657633758620548, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999993, + 3.700102798853685E-08, + 0.0, + 0.8525260918877269, + -3.700102798853685E-08, + 0.9999999999999993, + 0.0, + 6.469826192219827, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 6.657633758620549, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 0.6096000075340289, + -7.828773059637194E-16, + 1.0, + 0.0, + 6.479833758906644, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 6.657633758620549, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999831, + 1.836083190862475E-07, + 0.0, + 0.6096000283073426, + -1.836083190862475E-07, + -0.9999999999999831, + 0.0, + 6.451073886490009, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 6.657633758620549, + "Z": 0.0 + } + } + ], + "Width": 7.869267135446547, + "Depth": 6.657633758620548 + }, + "14P Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 7.869267135446547, + "Y": 6.552405875798925, + "Z": 0.0 + }, + "Width": 7.869267135446547, + "Depth": 6.552405875798925 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.7151244994428829E-15, + 1.0, + 0.0, + 2.1396731843790295, + -1.0, + 1.7151244994428829E-15, + 0.0, + 4.930434639302174, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.739615391715462, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3304923425587847, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 5.739615252257266, + 1.0, + -1.7151244994428829E-15, + 0.0, + 1.3304924319657518, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.117696190740039, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866862, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 3.9446224907400573, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 2.7353538907400594, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.9303899001866827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 5.26587143716875, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 4.415951437168749, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 3.56091143716875, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867024, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 2.710991437168749, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001866988, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 6.272112987327128, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.3303911001867021, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 1.7151244994428829E-15, + 0.0, + 1.5695031782313063, + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.330391100186699, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.9894555266155134, + 1.0, + -4.435170909774517E-15, + 0.0, + 4.397538394461883, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 3.5476183944618787, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615517, + 1.0, + -4.435170909774517E-15, + 0.0, + 2.6925783944618833, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.435170909774517E-15, + -1.0, + 0.0, + 0.989455526615524, + 1.0, + -4.435170909774517E-15, + 0.0, + 1.8426583944618788, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995948, + -1.0, + 9.875263730437783E-15, + 0.0, + 1.8379633067906127, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995939, + -1.0, + 9.875263730437783E-15, + 0.0, + 2.68788330679061, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995934, + -1.0, + 9.875263730437783E-15, + 0.0, + 3.5429233067906125, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.875263730437783E-15, + 1.0, + 0.0, + 6.856210975995923, + -1.0, + 9.875263730437783E-15, + 0.0, + 4.39284330679061, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051244, + 1.0, + -1.7151244994428829E-15, + 0.0, + 1.9539992324570865, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051209, + 1.0, + -1.7151244994428829E-15, + 0.0, + 3.1270729324570685, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7151244994428829E-15, + -1.0, + 0.0, + 1.5396744064051209, + 1.0, + -1.7151244994428829E-15, + 0.0, + 4.336341532457062, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865783, + -1.0, + 6.489083505331056E-15, + 0.0, + 1.938760302758265, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865777, + -1.0, + 6.489083505331056E-15, + 0.0, + 3.1480289027582593, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.489083505331056E-15, + 1.0, + 0.0, + 6.324140908865768, + -1.0, + 6.489083505331056E-15, + 0.0, + 4.321102602758241, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.931113591691812, + "Y": 2.8623686818349037, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.2800798335329624E-15, + 0.0, + 1.5117030610233186, + -4.2800798335329624E-15, + 1.0, + 0.0, + 6.548858062645856, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 6.552405875798925, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.2800798335329624E-15, + 0.0, + 3.9958759037728244, + -4.2800798335329624E-15, + 1.0, + 0.0, + 6.548858062645856, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.934633567723274, + "Y": 6.552405875798925, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 7.25966712791252, + -7.828773059637194E-16, + 1.0, + 0.0, + 6.3746058760850275, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 7.869267135446547, + "Y": 6.552405875798925, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999993, + 3.700102798853685E-08, + 0.0, + 0.8469384302032745, + -3.700102798853685E-08, + 0.9999999999999993, + 0.0, + 6.36333804290153, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 6.552405875798926, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 0.6096000075340262, + -7.828773059637194E-16, + 1.0, + 0.0, + 6.374605876085021, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 6.552405875798926, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999831, + 1.836083190862475E-07, + 0.0, + 0.60960002830734, + -1.836083190862475E-07, + -0.9999999999999831, + 0.0, + 6.3458460036683855, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 0.0, + "Y": 6.552405875798926, + "Z": 0.0 + } + } + ], + "Width": 7.869267135446547, + "Depth": 6.552405875798925 + }, + "6P-B Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.7614112552492056, + "Y": 4.613806960929441, + "Z": 0.0 + }, + "Width": 3.7614112552492056, + "Depth": 4.613806960929441 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 2.0189965976396698, + -1.0, + -9.494107596574926E-16, + 0.0, + 2.529279921455707, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 2.018996597639669, + -1.0, + -9.494107596574926E-16, + 0.0, + 3.2150795096591374, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 2.0189965976396635, + -1.0, + -9.494107596574926E-16, + 0.0, + 1.843480333252277, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 2.6598469737891914, + -1.0, + -9.494107596574926E-16, + 0.0, + 3.312584057195078, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 2.6757219737891864, + -1.0, + -9.494107596574926E-16, + 0.0, + 2.536296557195076, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 2.6598469737891897, + -1.0, + -9.494107596574926E-16, + 0.0, + 1.6865019143379278, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 4.624589118372729E-15, + -1.0, + 0.0, + 1.3674261126008598, + 1.0, + 4.624589118372729E-15, + 0.0, + 1.7298821674221048, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 4.624589118372729E-15, + -1.0, + 0.0, + 1.3661624542680362, + 1.0, + 4.624589118372729E-15, + 0.0, + 2.564525913154867, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.7660444431189802, + -0.6427876096865367, + 0.0, + 1.1291421146977316, + 0.6427876096865367, + 0.7660444431189802, + 0.0, + 3.262243366492534, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9051078674694077, + "Y": 2.5279652577827534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 3.0530034256174443, + -1.0, + -9.494107596574926E-16, + 0.0, + 4.60897985624452, + 0.0, + 0.0, + 1.0, + 1.3075995944976782 + ] + } + }, + "Anchor": { + "X": 3.7614112552492007, + "Y": 4.613806960929445, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 3.7635008837601656, + -1.0, + -9.494107596574926E-16, + 0.0, + 4.60897985624452, + 0.0, + 0.0, + 1.0, + 0.8813659877777141 + ] + } + }, + "Anchor": { + "X": 3.7614112552492007, + "Y": 4.613806960929445, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 2.3439417604786845, + -1.0, + -9.494107596574926E-16, + 0.0, + 4.612979990544975, + 0.0, + 0.0, + 1.0, + 0.7295999912261938 + ] + } + }, + "Anchor": { + "X": 1.1937804722731897, + "Y": 4.613806960929441, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -6.5005258827832755E-15, + 0.0, + 2.9528324388587546, + 6.5005258827832755E-15, + -1.0, + 0.0, + 0.11794846300852063, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8807056276246055, + "Y": 3.667873685150945E-15, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -9.494107596574926E-16, + 1.0, + 0.0, + 0.4613650559478386, + -1.0, + -9.494107596574926E-16, + 0.0, + 0.44010982611666827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 5.329070518200751E-15, + "Y": 2.3032001270088808E-16, + "Z": 0.0 + } + } + ], + "Width": 3.7614112552492056, + "Depth": 4.613806960929441 + }, + "8P Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.620851512040254, + "Y": 5.617062726664635, + "Z": 0.0 + }, + "Width": 3.620851512040254, + "Depth": 5.617062726664635 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/5a84e2c4-b76a-48b7-bd28-5c9e7aa09570.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.1868018914080465, + 1.0, + -4.213126304849485E-15, + 0.0, + 0.8646046765954872, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.820371559843116E-16, + 1.0, + 0.0, + 2.386697762645355, + -1.0, + 9.820371559843116E-16, + 0.0, + 1.338348631142221, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.820371559843116E-16, + 1.0, + 0.0, + 2.386697762645351, + -1.0, + 9.820371559843116E-16, + 0.0, + 2.188268631142222, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 9.820371559843116E-16, + 1.0, + 0.0, + 2.3866977626453494, + -1.0, + 9.820371559843116E-16, + 0.0, + 3.0433086311422244, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.048990684667789E-15, + 1.0, + 0.0, + 2.386697762645344, + -1.0, + 1.048990684667789E-15, + 0.0, + 3.8932286311422253, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.186700162645376, + 1.0, + -4.213126304849485E-15, + 0.0, + 3.8932286311422004, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.18670016264538, + 1.0, + -4.213126304849485E-15, + 0.0, + 3.0433086311421995, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.1867001626453817, + 1.0, + -4.213126304849485E-15, + 0.0, + 2.1882686311422006, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2ce793a-16d0-42bf-8f76-80fa5a19143c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.1867001626453857, + 1.0, + -4.213126304849485E-15, + 0.0, + 1.3383486311422, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.78669896264536, + 1.0, + -4.213126304849485E-15, + 0.0, + 3.868866177570892, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.7866989626453649, + 1.0, + -4.213126304849485E-15, + 0.0, + 2.659597577570894, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/7b098818-c277-4944-b5d0-f4203849dd06.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -4.213126304849485E-15, + -1.0, + 0.0, + 1.786698962645369, + 1.0, + -4.213126304849485E-15, + 0.0, + 1.4865238775709122, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8097777355652325, + "Y": 2.654822923624554, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d6653158-00b0-46f3-b452-0b48d1a2f446.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 3.387880961136568E-16, + 0.0, + 0.6242363858191746, + -3.387880961136568E-16, + 1.0, + 0.0, + 5.627451481904174, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8104257560201211, + "Y": 5.617062726664626, + "Z": 0.0 + } + } + ], + "Width": 3.620851512040254, + "Depth": 5.617062726664635 + }, + "6P-A Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.761411255249212, + "Y": 6.018505792199534, + "Z": 0.0 + }, + "Width": 3.761411255249212, + "Depth": 6.018505792199534 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/d491a251-0a57-4624-91d8-803d15a687a3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -5.723369765545666E-15, + 0.0, + 2.9528324388587603, + 5.723369765545666E-15, + -1.0, + 0.0, + 0.11794846300852418, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8807056276246117, + "Y": 3.667873685150945E-15, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ed36d2da-815c-469a-9c7b-97ffdd406ce3.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 0.4613650559478444, + -1.0, + -1.7225464241988372E-16, + 0.0, + 0.44010982611666827, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.1546319456101628E-14, + "Y": 2.3032001270088808E-16, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.7660444431189798, + -0.6427876096865374, + 0.0, + 1.1291421146977352, + 0.6427876096865374, + 0.7660444431189798, + 0.0, + 3.686507889076644, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 3.847433001135119E-15, + -1.0, + 0.0, + 1.3661624542680397, + 1.0, + 3.847433001135119E-15, + 0.0, + 2.9887904357389807, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 3.847433001135119E-15, + -1.0, + 0.0, + 1.3674261126008642, + 1.0, + 3.847433001135119E-15, + 0.0, + 2.1541466900062147, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.659846973789194, + -1.0, + -1.7225464241988372E-16, + 0.0, + 2.110766436922038, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.67572197378919, + -1.0, + -1.7225464241988372E-16, + 0.0, + 2.960561079779186, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ecb4208a-893e-4ea1-a6db-42a6b73fb8d1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.659846973789194, + -1.0, + -1.7225464241988372E-16, + 0.0, + 3.7368485797791884, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.018996597639667, + -1.0, + -1.7225464241988372E-16, + 0.0, + 2.2677448558363835, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/0a2acd6a-089a-4a88-8e73-6ce74d322673.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.0189965976396715, + -1.0, + -1.7225464241988372E-16, + 0.0, + 3.639344032243244, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/58220d95-2ee1-4e15-8d70-e0632d0240bf.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.0189965976396733, + -1.0, + -1.7225464241988372E-16, + 0.0, + 2.9535444440398138, + 0.0, + 0.0, + 1.0, + 1.7927566927725118E-27 + ] + } + }, + "Anchor": { + "X": 1.9477462872026348, + "Y": 3.002888848934255, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/bf9413f0-3a16-4689-b12c-725ded776e24.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.343941760478684, + -1.0, + -1.7225464241988372E-16, + 0.0, + 6.017449478587828, + 0.0, + 0.0, + 1.0, + 0.7295999912261938 + ] + } + }, + "Anchor": { + "X": 1.1937804722731897, + "Y": 6.01850579219953, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.24192189559967012, + -0.970295726275996, + 0.0, + 2.34338120338044, + 0.970295726275996, + 0.24192189559967012, + 0.0, + 5.611241463882507, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.7614112552492007, + "Y": 6.018505792199534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/e3096149-d71a-4200-a856-793f283d0af9.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.6156614753256588, + 0.7880107536067216, + 0.0, + 3.025559947436589, + -0.7880107536067216, + -0.6156614753256588, + 0.0, + 5.274339347170599, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.7614112552492007, + "Y": 6.018505792199534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ea778d60-2d48-41e9-afab-689676589b87.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 2.718560431293747, + -1.0, + -1.7225464241988372E-16, + 0.0, + 5.509196155831887, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.7614112552492007, + "Y": 6.018505792199534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 3.0530034256174443, + -1.0, + -1.7225464241988372E-16, + 0.0, + 6.013764560624594, + 0.0, + 0.0, + 1.0, + 1.3075995944976782 + ] + } + }, + "Anchor": { + "X": 3.7614112552492007, + "Y": 6.018505792199534, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d2399fd9-2eed-480b-875a-2fc210f91a0b.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.7225464241988372E-16, + 1.0, + 0.0, + 3.764034699023189, + -1.0, + -1.7225464241988372E-16, + 0.0, + 6.01376456062459, + 0.0, + 0.0, + 1.0, + 0.8813659877777141 + ] + } + }, + "Anchor": { + "X": 3.7614112552492007, + "Y": 6.018505792199534, + "Z": 0.0 + } + } + ], + "Width": 3.761411255249212, + "Depth": 6.018505792199534 + }, + "4P-A Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 3.6455956363801625, + "Y": 3.4430551255076267, + "Z": 0.0 + }, + "Width": 3.6455956363801625, + "Depth": 3.4430551255076267 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.7933533292038172, + 0.6087614434581249, + 0.0, + 2.3515882690939787, + -0.6087614434581249, + 0.7933533292038172, + 0.0, + 2.22485670204329, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9310093443707943, + "Y": 1.8238093604970373, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.793353382423426, + -0.6087613741009766, + 0.0, + 1.5526098480832728, + 0.6087613741009766, + 0.793353382423426, + 0.0, + 2.1764183410692866, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9310093443707943, + "Y": 1.8238093604970373, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.7256874888718274, + 0.688024467947835, + 0.0, + 2.3807619912942677, + -0.688024467947835, + -0.7256874888718274, + 0.0, + 1.3105989535460552, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9310093443707943, + "Y": 1.8238093604970373, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.7010910727704016, + -0.7130717409080574, + 0.0, + 1.5192304089946833, + 0.7130717409080574, + -0.7010910727704016, + 0.0, + 1.294681338597478, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9310093443707943, + "Y": 1.8238093604970373, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.7265668768951024E-15, + -1.0, + 0.0, + 2.0461974068146676, + 1.0, + 1.7265668768951024E-15, + 0.0, + 1.7945531189951325, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.9310093443707943, + "Y": 1.8238093604970373, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.389503580320761E-15, + 0.0, + 0.9379399046436241, + -6.389503580320761E-15, + 1.0, + 0.0, + 3.4308630154047535, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.822797818190084, + "Y": 3.4430551255076196, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + -2.0596337842826493E-15, + 0.0, + 2.7667399046436336, + 2.0596337842826493E-15, + -1.0, + 0.0, + -0.0004432024532760609, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.8227978181900792, + "Y": 1.1161417567696322E-16, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76a71115-280c-4674-a95b-753ea87220b1.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.0, + 2.4922806166804917E-15, + 0.0, + 2.7627379662877627, + -2.4922806166804917E-15, + -1.0, + 0.0, + 0.03607026491144444, + 0.0, + 0.0, + 1.0, + -0.6349999999999998 + ] + } + }, + "Anchor": { + "X": 1.8227978181900792, + "Y": 1.1161417567696322E-16, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/55446cf6-3c68-4ee0-a472-60fff534ea4a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.278481277858244E-15, + 0.0, + 3.397920712463607, + -6.278481277858244E-15, + 1.0, + 0.0, + 0.23970017251293999, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 3.645595636380158, + "Y": 2.7192621468937822E-31, + "Z": 0.0 + } + } + ], + "Width": 3.6455956363801625, + "Depth": 3.4430551255076267 + }, + "4P-B Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 2.5950894288843602, + "Y": 3.211243320580124, + "Z": 0.0 + }, + "Width": 2.5950894288843602, + "Depth": 3.211243320580124 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/d99d9778-fbef-49d8-a9fd-380fc99736b4.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.5600334232013291E-15, + -1.0, + 0.0, + 1.4117636697015614, + 1.0, + 1.5600334232013291E-15, + 0.0, + 1.5627413140676296, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.2880522529634284, + "Y": 1.5198663979142992, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.7010910727704017, + -0.7130717409080571, + 0.0, + 0.8847966718815776, + 0.7130717409080571, + -0.7010910727704017, + 0.0, + 1.062869533669975, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.2880522529634284, + "Y": 1.5198663979142992, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.7256874888718273, + 0.6880244679478351, + 0.0, + 1.7463282541811616, + -0.6880244679478351, + -0.7256874888718273, + 0.0, + 1.0787871486185594, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.2880522529634284, + "Y": 1.5198663979142992, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.7933533824234259, + -0.6087613741009769, + 0.0, + 0.9181761109701669, + 0.6087613741009769, + 0.7933533824234259, + 0.0, + 1.9446065361417837, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.2880522529634284, + "Y": 1.5198663979142992, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/76bf024f-2305-4ba7-bb66-c15328c4c283.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.7933533292038173, + 0.6087614434581247, + 0.0, + 1.717154531980872, + -0.6087614434581247, + 0.7933533292038173, + 0.0, + 1.9930448971157873, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.2880522529634284, + "Y": 1.5198663979142992, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 6.389503580320761E-15, + 0.0, + 0.4126868008957225, + -6.389503580320761E-15, + 1.0, + 0.0, + 3.1990512104772577, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 1.2975447144421823, + "Y": 3.211243320580124, + "Z": 0.0 + } + } + ], + "Width": 2.5950894288843602, + "Depth": 3.211243320580124 + }, + "13P Rotated": { + "CellBoundary": { + "Min": { + "X": 0.0, + "Y": 0.0, + "Z": 0.0 + }, + "Max": { + "X": 4.621704772245854, + "Y": 8.40267824883557, + "Z": 0.0 + }, + "Width": 4.621704772245854, + "Depth": 8.40267824883557 + }, + "ContentItems": [ + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9659257733226813, + -0.2588192427756878, + 0.0, + 2.286946201609762, + 0.2588192427756878, + -0.9659257733226813, + 0.0, + 1.2401396292303655, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464843733854347E-07, + 0.9999999999999791, + 0.0, + 2.9484119533513367, + -0.9999999999999791, + -2.0464843733854347E-07, + 0.0, + 1.6971429604882224, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.046472217755912E-07, + 0.9999999999999791, + 0.0, + 2.9726286231225796, + -0.9999999999999791, + -2.046472217755912E-07, + 0.0, + 2.579702853168219, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464821364677316E-07, + 0.9999999999999791, + 0.0, + 3.0232461812913662, + -0.9999999999999791, + -2.0464821364677316E-07, + 0.0, + 3.5736895676851406, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.046472217755912E-07, + 0.9999999999999791, + 0.0, + 3.0314672888133467, + -0.9999999999999791, + -2.046472217755912E-07, + 0.0, + 4.551304056737785, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464821364677316E-07, + 0.9999999999999791, + 0.0, + 2.9994380415127257, + -0.9999999999999791, + -2.0464821364677316E-07, + 0.0, + 5.480765025203017, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464821364677316E-07, + 0.9999999999999791, + 0.0, + 2.942410977988732, + -0.9999999999999791, + -2.0464821364677316E-07, + 0.0, + 6.414728154262357, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464711319235176E-07, + -0.9999999999999791, + 0.0, + 1.6144578520932344, + 0.9999999999999791, + -2.0464711319235176E-07, + 0.0, + 6.410845399773382, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464711319235176E-07, + -0.9999999999999791, + 0.0, + 1.5723555923996178, + 0.9999999999999791, + -2.0464711319235176E-07, + 0.0, + 5.4768829198469, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464711319235176E-07, + -0.9999999999999791, + 0.0, + 1.528088388620398, + 0.9999999999999791, + -2.0464711319235176E-07, + 0.0, + 4.548215704723144, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464711319235176E-07, + -0.9999999999999791, + 0.0, + 1.5452676400948633, + 0.9999999999999791, + -2.0464711319235176E-07, + 0.0, + 3.570600594605433, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464711319235176E-07, + -0.9999999999999791, + 0.0, + 1.5868133308568844, + 0.9999999999999791, + -2.0464711319235176E-07, + 0.0, + 2.576614507627773, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/99a9c4af-23c6-4594-b2ed-99a656eda555.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -2.0464711319235176E-07, + -0.9999999999999791, + 0.0, + 1.6152746373330116, + 0.9999999999999791, + -2.0464711319235176E-07, + 0.0, + 1.694055253963465, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/b65b427c-a433-43d5-85be-2e786db516e6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 6.758760769932573E-07, + -0.9999999999997717, + 0.0, + 2.3323294694440118, + 0.9999999999997717, + 6.758760769932573E-07, + 0.0, + 4.59950106530402, + 0.0, + 0.0, + 1.0, + -0.4063999999999089 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/30bc1e06-9efb-49ef-93bd-25bc7fb53c48.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.8360832086260433E-07, + -0.9999999999999831, + 0.0, + 2.332329476516406, + 0.9999999999999831, + -1.8360832086260433E-07, + 0.0, + 4.101965030854542, + 0.0, + 0.0, + 1.0, + -0.40639999999990895 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999831, + -1.8360834019843332E-07, + 0.0, + 2.3323296054471414, + 1.8360834019843332E-07, + 0.9999999999999831, + 0.0, + 5.914940862791505, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999831, + -1.8360834019843332E-07, + 0.0, + 2.3323296054471414, + 1.8360834019843332E-07, + 0.9999999999999831, + 0.0, + 4.771940862791505, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999831, + -1.8360834019843332E-07, + 0.0, + 2.3323296054471347, + 1.8360834019843332E-07, + 0.9999999999999831, + 0.0, + 2.257340862791507, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/57c3a35b-7058-4e6d-a276-c6a9888404a6.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999831, + -1.8360834019843332E-07, + 0.0, + 2.3323296054471356, + 1.8360834019843332E-07, + 0.9999999999999831, + 0.0, + 3.39975976047055, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/8d7bc923-e5e2-4720-9c14-b120d56b67c8.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -1.836083403034511E-07, + -0.9999999999999832, + 0.0, + 2.3323294765164024, + 0.9999999999999832, + -1.836083403034511E-07, + 0.0, + 4.101965030854609, + 0.0, + 0.0, + 1.0, + 1.962696671853337E-14 + ] + } + }, + "Anchor": { + "X": 2.3766565837083924, + "Y": 3.815613263519865, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/a1811c30-b58d-4002-9cf9-d07ab87deab0.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 4.724169043383026E-15, + 0.0, + 1.380151195187687, + -4.724169043383026E-15, + 1.0, + 0.0, + 8.410095092737894, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 2.3108523861229275, + "Y": 8.40267824883557, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/d8d4f365-b7d2-436a-ab7c-e87cf24f1f2c.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 0.9999999999999993, + 3.700102798853685E-08, + 0.0, + 0.850580134586671, + -3.700102798853685E-08, + 0.9999999999999993, + 0.0, + 8.213030159142916, + 0.0, + 0.0, + 1.0, + 1.8505311444854733 + ] + } + }, + "Anchor": { + "X": 8.881784197001252E-16, + "Y": 8.40267824883557, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/52cfbf27-5ef6-4b1a-a855-51c0b684290a.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + -0.9999999999999831, + 1.836083190862475E-07, + 0.0, + 0.6096000283073417, + -1.836083190862475E-07, + -0.9999999999999831, + 0.0, + 8.19611837670503, + 0.0, + 0.0, + 1.0, + -0.13158813079830256 + ] + } + }, + "Anchor": { + "X": 8.881784197001252E-16, + "Y": 8.40267824883557, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 0.609600007534028, + -7.828773059637194E-16, + 1.0, + 0.0, + 8.224878249121666, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 8.881784197001252E-16, + "Y": 8.40267824883557, + "Z": 0.0 + } + }, + { + "Url": "https://hypar.io/user-static/ec76f2c1-70e7-4170-b319-82f9e6ff1710.glb", + "Name": null, + "Transform": { + "Matrix": { + "Components": [ + 1.0, + 7.828773059637194E-16, + 0.0, + 4.012104764711827, + -7.828773059637194E-16, + 1.0, + 0.0, + 8.224878249121673, + 0.0, + 0.0, + 1.0, + 0.0 + ] + } + }, + "Anchor": { + "X": 4.621704772245855, + "Y": 8.40267824883557, + "Z": 0.0 + } + } + ], + "Width": 4.621704772245854, + "Depth": 8.40267824883557 + } +} \ No newline at end of file diff --git a/LayoutFunctions/MeetingRoomLayout/dependencies/MeetingRoomLayout.Dependencies.csproj b/LayoutFunctions/MeetingRoomLayout/dependencies/MeetingRoomLayout.Dependencies.csproj index 6b985909..4d2d7380 100644 --- a/LayoutFunctions/MeetingRoomLayout/dependencies/MeetingRoomLayout.Dependencies.csproj +++ b/LayoutFunctions/MeetingRoomLayout/dependencies/MeetingRoomLayout.Dependencies.csproj @@ -3,13 +3,12 @@ net6.0 - - - - - + + + + \ No newline at end of file diff --git a/LayoutFunctions/MeetingRoomLayout/dependencies/ThickenedPolyline.g.cs b/LayoutFunctions/MeetingRoomLayout/dependencies/ThickenedPolyline.g.cs deleted file mode 100644 index cc1ed83c..00000000 --- a/LayoutFunctions/MeetingRoomLayout/dependencies/ThickenedPolyline.g.cs +++ /dev/null @@ -1,64 +0,0 @@ -//---------------------- -// -// Generated using the NJsonSchema v10.1.21.0 (Newtonsoft.Json v13.0.0.0) (http://NJsonSchema.org) -// -//---------------------- -using Elements; -using Elements.GeoJSON; -using Elements.Geometry; -using Elements.Geometry.Solids; -using Elements.Spatial; -using Elements.Validators; -using Elements.Serialization.JSON; -using Newtonsoft.Json; -using System; -using System.Collections.Generic; -using System.Linq; -using Line = Elements.Geometry.Line; -using Polygon = Elements.Geometry.Polygon; - -namespace Elements -{ - #pragma warning disable // Disable all warnings - - /// A polyline that has been thickened into a polygon. - [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 ThickenedPolyline - { - [JsonConstructor] - public ThickenedPolyline(Polyline @polyline, double? @width, bool? @flip, double @leftWidth, double @rightWidth) - { - this.Polyline = @polyline; - this.Width = @width; - this.Flip = @flip; - this.LeftWidth = @leftWidth; - this.RightWidth = @rightWidth; - } - - - // Empty constructor - public ThickenedPolyline() - { - } - - [JsonProperty("polyline", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] - public Polyline Polyline { get; set; } - - [JsonProperty("width", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] - public double? Width { get; set; } - - [JsonProperty("flip", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] - public bool? Flip { 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 = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] - 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 = Newtonsoft.Json.Required.DisallowNull, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)] - public double RightWidth { get; set; } - - - } -} \ No newline at end of file diff --git a/LayoutFunctions/MeetingRoomLayout/server/MeetingRoomLayout.Server.csproj b/LayoutFunctions/MeetingRoomLayout/server/MeetingRoomLayout.Server.csproj new file mode 100644 index 00000000..f0a659a8 --- /dev/null +++ b/LayoutFunctions/MeetingRoomLayout/server/MeetingRoomLayout.Server.csproj @@ -0,0 +1,17 @@ + + + + + + + + + + + + net6.0 + enable + enable + + + diff --git a/LayoutFunctions/MeetingRoomLayout/server/Program.cs b/LayoutFunctions/MeetingRoomLayout/server/Program.cs new file mode 100644 index 00000000..540e4ab0 --- /dev/null +++ b/LayoutFunctions/MeetingRoomLayout/server/Program.cs @@ -0,0 +1,26 @@ + +using System; +using System.IO; +using System.Reflection; +using System.Threading.Tasks; +using System.Linq; + +namespace Hypar.Server +{ + public class Program + { + public static async Task Main(string[] args) + { + await HyparServer.StartAsync( + args, + Path.GetFullPath(Path.Combine(Assembly.GetExecutingAssembly().Location, "../../../../..")), + async (executionRequest) => + { + var input = executionRequest.Args.ToObject(); + var function = new MeetingRoomLayout.Function(); + Directory.SetCurrentDirectory(Path.GetDirectoryName(typeof(MeetingRoomLayout.Function).Assembly.Location)!); + return await function.Handler(input, null); + }); + } + } +} \ No newline at end of file diff --git a/LayoutFunctions/MeetingRoomLayout/src/Function.g.cs b/LayoutFunctions/MeetingRoomLayout/src/Function.g.cs index 4822ae4f..49b3a77c 100644 --- a/LayoutFunctions/MeetingRoomLayout/src/Function.g.cs +++ b/LayoutFunctions/MeetingRoomLayout/src/Function.g.cs @@ -62,7 +62,14 @@ public async Task Handler(MeetingRoomLayoutInputs args if(this.store == null) { - this.store = new S3ModelStore(RegionEndpoint.GetBySystemName("us-west-1")); + if (args.SignedResourceUrls == null) + { + this.store = new S3ModelStore(RegionEndpoint.GetBySystemName("us-west-1")); + } + else + { + this.store = new UrlModelStore(); + } } var l = new InvocationWrapper (store, MeetingRoomLayout.Execute); diff --git a/LayoutFunctions/PhoneBoothLayout/dependencies/CirculationSegment.g.cs b/LayoutFunctions/PhoneBoothLayout/dependencies/CirculationSegment.g.cs index de3dcd58..8ebae248 100644 --- a/LayoutFunctions/PhoneBoothLayout/dependencies/CirculationSegment.g.cs +++ b/LayoutFunctions/PhoneBoothLayout/dependencies/CirculationSegment.g.cs @@ -33,6 +33,7 @@ public CirculationSegment(ThickenedPolyline @geometry, Profile @profile, double this.Geometry = @geometry; } + // Empty constructor public CirculationSegment() : base() diff --git a/LayoutFunctions/PhoneBoothLayout/dependencies/LevelElements.g.cs b/LayoutFunctions/PhoneBoothLayout/dependencies/LevelElements.g.cs index dd221b85..3b715315 100644 --- a/LayoutFunctions/PhoneBoothLayout/dependencies/LevelElements.g.cs +++ b/LayoutFunctions/PhoneBoothLayout/dependencies/LevelElements.g.cs @@ -34,6 +34,7 @@ public LevelElements(IList @elements, System.Guid @level, System.Guid @ this.Level = @level; } + // Empty constructor public LevelElements() : base() diff --git a/LayoutFunctions/PhoneBoothLayout/dependencies/LevelVolume.g.cs b/LayoutFunctions/PhoneBoothLayout/dependencies/LevelVolume.g.cs index d3164fe8..a57f0d3e 100644 --- a/LayoutFunctions/PhoneBoothLayout/dependencies/LevelVolume.g.cs +++ b/LayoutFunctions/PhoneBoothLayout/dependencies/LevelVolume.g.cs @@ -39,6 +39,7 @@ public LevelVolume(Profile @profile, double @height, double @area, string @build this.PlanView = @planView; } + // Empty constructor public LevelVolume() : base() diff --git a/LayoutFunctions/PhoneBoothLayout/dependencies/SpaceBoundary.g.cs b/LayoutFunctions/PhoneBoothLayout/dependencies/SpaceBoundary.g.cs index 38a59481..c449fdf6 100644 --- a/LayoutFunctions/PhoneBoothLayout/dependencies/SpaceBoundary.g.cs +++ b/LayoutFunctions/PhoneBoothLayout/dependencies/SpaceBoundary.g.cs @@ -43,6 +43,7 @@ public SpaceBoundary(Profile @boundary, IList @cells, double @area, dou this.HyparSpaceType = @hyparSpaceType; } + // Empty constructor public SpaceBoundary() : base() diff --git a/LayoutFunctions/PhoneBoothLayout/dependencies/ThickenedPolyline.g.cs b/LayoutFunctions/PhoneBoothLayout/dependencies/ThickenedPolyline.g.cs index 01d3fec4..cc1ed83c 100644 --- a/LayoutFunctions/PhoneBoothLayout/dependencies/ThickenedPolyline.g.cs +++ b/LayoutFunctions/PhoneBoothLayout/dependencies/ThickenedPolyline.g.cs @@ -36,6 +36,7 @@ public ThickenedPolyline(Polyline @polyline, double? @width, bool? @flip, double this.RightWidth = @rightWidth; } + // Empty constructor public ThickenedPolyline() { From 188c131d1a332b81a12d2c1f83abc1131b209a08 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 14 Sep 2023 10:24:13 -0400 Subject: [PATCH 3/4] classroom layout --- .../ClassroomLayout/dependencies/CirculationSegment.g.cs | 1 + .../dependencies/ClassroomLayout.Dependencies.csproj | 9 ++++----- .../ClassroomLayout/dependencies/LevelElements.g.cs | 1 + .../ClassroomLayout/dependencies/LevelVolume.g.cs | 1 + .../ClassroomLayout/dependencies/SpaceBoundary.g.cs | 1 + .../ClassroomLayout/dependencies/ThickenedPolyline.g.cs | 1 + LayoutFunctions/ClassroomLayout/src/Function.g.cs | 9 ++++++++- 7 files changed, 17 insertions(+), 6 deletions(-) diff --git a/LayoutFunctions/ClassroomLayout/dependencies/CirculationSegment.g.cs b/LayoutFunctions/ClassroomLayout/dependencies/CirculationSegment.g.cs index de3dcd58..8ebae248 100644 --- a/LayoutFunctions/ClassroomLayout/dependencies/CirculationSegment.g.cs +++ b/LayoutFunctions/ClassroomLayout/dependencies/CirculationSegment.g.cs @@ -33,6 +33,7 @@ public CirculationSegment(ThickenedPolyline @geometry, Profile @profile, double this.Geometry = @geometry; } + // Empty constructor public CirculationSegment() : base() diff --git a/LayoutFunctions/ClassroomLayout/dependencies/ClassroomLayout.Dependencies.csproj b/LayoutFunctions/ClassroomLayout/dependencies/ClassroomLayout.Dependencies.csproj index 6cc36e94..7fe01c1a 100644 --- a/LayoutFunctions/ClassroomLayout/dependencies/ClassroomLayout.Dependencies.csproj +++ b/LayoutFunctions/ClassroomLayout/dependencies/ClassroomLayout.Dependencies.csproj @@ -3,13 +3,12 @@ net6.0 - - - - - + + + + \ No newline at end of file diff --git a/LayoutFunctions/ClassroomLayout/dependencies/LevelElements.g.cs b/LayoutFunctions/ClassroomLayout/dependencies/LevelElements.g.cs index dd221b85..3b715315 100644 --- a/LayoutFunctions/ClassroomLayout/dependencies/LevelElements.g.cs +++ b/LayoutFunctions/ClassroomLayout/dependencies/LevelElements.g.cs @@ -34,6 +34,7 @@ public LevelElements(IList @elements, System.Guid @level, System.Guid @ this.Level = @level; } + // Empty constructor public LevelElements() : base() diff --git a/LayoutFunctions/ClassroomLayout/dependencies/LevelVolume.g.cs b/LayoutFunctions/ClassroomLayout/dependencies/LevelVolume.g.cs index d3164fe8..a57f0d3e 100644 --- a/LayoutFunctions/ClassroomLayout/dependencies/LevelVolume.g.cs +++ b/LayoutFunctions/ClassroomLayout/dependencies/LevelVolume.g.cs @@ -39,6 +39,7 @@ public LevelVolume(Profile @profile, double @height, double @area, string @build this.PlanView = @planView; } + // Empty constructor public LevelVolume() : base() diff --git a/LayoutFunctions/ClassroomLayout/dependencies/SpaceBoundary.g.cs b/LayoutFunctions/ClassroomLayout/dependencies/SpaceBoundary.g.cs index 38a59481..c449fdf6 100644 --- a/LayoutFunctions/ClassroomLayout/dependencies/SpaceBoundary.g.cs +++ b/LayoutFunctions/ClassroomLayout/dependencies/SpaceBoundary.g.cs @@ -43,6 +43,7 @@ public SpaceBoundary(Profile @boundary, IList @cells, double @area, dou this.HyparSpaceType = @hyparSpaceType; } + // Empty constructor public SpaceBoundary() : base() diff --git a/LayoutFunctions/ClassroomLayout/dependencies/ThickenedPolyline.g.cs b/LayoutFunctions/ClassroomLayout/dependencies/ThickenedPolyline.g.cs index 01d3fec4..cc1ed83c 100644 --- a/LayoutFunctions/ClassroomLayout/dependencies/ThickenedPolyline.g.cs +++ b/LayoutFunctions/ClassroomLayout/dependencies/ThickenedPolyline.g.cs @@ -36,6 +36,7 @@ public ThickenedPolyline(Polyline @polyline, double? @width, bool? @flip, double this.RightWidth = @rightWidth; } + // Empty constructor public ThickenedPolyline() { diff --git a/LayoutFunctions/ClassroomLayout/src/Function.g.cs b/LayoutFunctions/ClassroomLayout/src/Function.g.cs index c037fa4b..7acedfa8 100644 --- a/LayoutFunctions/ClassroomLayout/src/Function.g.cs +++ b/LayoutFunctions/ClassroomLayout/src/Function.g.cs @@ -62,7 +62,14 @@ public async Task Handler(ClassroomLayoutInputs args, IL if(this.store == null) { - this.store = new S3ModelStore(RegionEndpoint.GetBySystemName("us-west-1")); + if (args.SignedResourceUrls == null) + { + this.store = new S3ModelStore(RegionEndpoint.GetBySystemName("us-west-1")); + } + else + { + this.store = new UrlModelStore(); + } } var l = new InvocationWrapper (store, ClassroomLayout.Execute); From fa2525a95f63b55409f4bf420c3b8deef15e7586 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 14 Sep 2023 10:28:02 -0400 Subject: [PATCH 4/4] private office layout --- .../PrivateOfficeLayout/.vscode/launch.json | 65 +++++++++----- .../PrivateOfficeLayout/.vscode/tasks.json | 90 ++++++++++--------- .../dependencies/CirculationSegment.g.cs | 1 + .../dependencies/LevelElements.g.cs | 1 + .../dependencies/LevelVolume.g.cs | 1 + .../PrivateOfficeLayout.Dependencies.csproj | 4 +- .../dependencies/SpaceBoundary.g.cs | 1 + .../dependencies/ThickenedPolyline.g.cs | 1 + .../server/PrivateOfficeLayout.Server.csproj | 4 +- .../PrivateOfficeLayout/server/Program.cs | 9 +- .../PrivateOfficeLayout/src/Function.g.cs | 9 +- 11 files changed, 118 insertions(+), 68 deletions(-) diff --git a/LayoutFunctions/PrivateOfficeLayout/.vscode/launch.json b/LayoutFunctions/PrivateOfficeLayout/.vscode/launch.json index f5871a4d..17c7315e 100644 --- a/LayoutFunctions/PrivateOfficeLayout/.vscode/launch.json +++ b/LayoutFunctions/PrivateOfficeLayout/.vscode/launch.json @@ -1,24 +1,45 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": ".NET Core Launch (console)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - "program": "${workspaceFolder}/test/bin/Debug/netcoreapp3.1/PrivateOfficeLayout.Tests.dll", - "args": [], - "cwd": "${workspaceFolder}/test", - "console": "internalConsole", - "stopAtEntry": false - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + "program": "${workspaceFolder}/test/bin/Debug/netcoreapp3.1/PrivateOfficeLayout.Tests.dll", + "args": [], + "cwd": "${workspaceFolder}/test", + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + }, + { + "name": "Attach to Hypar Run", + "type": "coreclr", + "request": "attach", + "processName": "PrivateOfficeLayout.Server" + }, + { + "name": "Launch Hypar Run (Run once only)", + "type": "coreclr", + "request": "launch", + "program": "${workspaceFolder}/server/bin/Debug/net6.0/PrivateOfficeLayout.Server.dll", + "args": [ + "--workflow-id", + "${input:workflowId}" + ], + "preLaunchTask": "server-build" + } + ], + "inputs": [ + { + "id": "workflowId", + "type": "promptString", + "description": "Enter the workflow id to run." + } + ] } \ No newline at end of file diff --git a/LayoutFunctions/PrivateOfficeLayout/.vscode/tasks.json b/LayoutFunctions/PrivateOfficeLayout/.vscode/tasks.json index ddb6be8e..2ea92ed2 100644 --- a/LayoutFunctions/PrivateOfficeLayout/.vscode/tasks.json +++ b/LayoutFunctions/PrivateOfficeLayout/.vscode/tasks.json @@ -1,42 +1,52 @@ { - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/test/PrivateOfficeLayout.Tests.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/test/PrivateOfficeLayout.Tests.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "${workspaceFolder}/test/PrivateOfficeLayout.Tests.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" - ], - "problemMatcher": "$msCompile" - } - ] + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/test/PrivateOfficeLayout.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/test/PrivateOfficeLayout.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/test/PrivateOfficeLayout.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "server-build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/server/PrivateOfficeLayout.Server.csproj" + ], + "problemMatcher": "$msCompile" + } + ] } \ No newline at end of file diff --git a/LayoutFunctions/PrivateOfficeLayout/dependencies/CirculationSegment.g.cs b/LayoutFunctions/PrivateOfficeLayout/dependencies/CirculationSegment.g.cs index de3dcd58..8ebae248 100644 --- a/LayoutFunctions/PrivateOfficeLayout/dependencies/CirculationSegment.g.cs +++ b/LayoutFunctions/PrivateOfficeLayout/dependencies/CirculationSegment.g.cs @@ -33,6 +33,7 @@ public CirculationSegment(ThickenedPolyline @geometry, Profile @profile, double this.Geometry = @geometry; } + // Empty constructor public CirculationSegment() : base() diff --git a/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelElements.g.cs b/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelElements.g.cs index dd221b85..3b715315 100644 --- a/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelElements.g.cs +++ b/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelElements.g.cs @@ -34,6 +34,7 @@ public LevelElements(IList @elements, System.Guid @level, System.Guid @ this.Level = @level; } + // Empty constructor public LevelElements() : base() diff --git a/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelVolume.g.cs b/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelVolume.g.cs index d3164fe8..a57f0d3e 100644 --- a/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelVolume.g.cs +++ b/LayoutFunctions/PrivateOfficeLayout/dependencies/LevelVolume.g.cs @@ -39,6 +39,7 @@ public LevelVolume(Profile @profile, double @height, double @area, string @build this.PlanView = @planView; } + // Empty constructor public LevelVolume() : base() diff --git a/LayoutFunctions/PrivateOfficeLayout/dependencies/PrivateOfficeLayout.Dependencies.csproj b/LayoutFunctions/PrivateOfficeLayout/dependencies/PrivateOfficeLayout.Dependencies.csproj index 9e7efcd0..4139eb3c 100644 --- a/LayoutFunctions/PrivateOfficeLayout/dependencies/PrivateOfficeLayout.Dependencies.csproj +++ b/LayoutFunctions/PrivateOfficeLayout/dependencies/PrivateOfficeLayout.Dependencies.csproj @@ -4,10 +4,10 @@ - + - + \ No newline at end of file diff --git a/LayoutFunctions/PrivateOfficeLayout/dependencies/SpaceBoundary.g.cs b/LayoutFunctions/PrivateOfficeLayout/dependencies/SpaceBoundary.g.cs index 38a59481..c449fdf6 100644 --- a/LayoutFunctions/PrivateOfficeLayout/dependencies/SpaceBoundary.g.cs +++ b/LayoutFunctions/PrivateOfficeLayout/dependencies/SpaceBoundary.g.cs @@ -43,6 +43,7 @@ public SpaceBoundary(Profile @boundary, IList @cells, double @area, dou this.HyparSpaceType = @hyparSpaceType; } + // Empty constructor public SpaceBoundary() : base() diff --git a/LayoutFunctions/PrivateOfficeLayout/dependencies/ThickenedPolyline.g.cs b/LayoutFunctions/PrivateOfficeLayout/dependencies/ThickenedPolyline.g.cs index 01d3fec4..cc1ed83c 100644 --- a/LayoutFunctions/PrivateOfficeLayout/dependencies/ThickenedPolyline.g.cs +++ b/LayoutFunctions/PrivateOfficeLayout/dependencies/ThickenedPolyline.g.cs @@ -36,6 +36,7 @@ public ThickenedPolyline(Polyline @polyline, double? @width, bool? @flip, double this.RightWidth = @rightWidth; } + // Empty constructor public ThickenedPolyline() { diff --git a/LayoutFunctions/PrivateOfficeLayout/server/PrivateOfficeLayout.Server.csproj b/LayoutFunctions/PrivateOfficeLayout/server/PrivateOfficeLayout.Server.csproj index c8bcda39..8ff5ba77 100644 --- a/LayoutFunctions/PrivateOfficeLayout/server/PrivateOfficeLayout.Server.csproj +++ b/LayoutFunctions/PrivateOfficeLayout/server/PrivateOfficeLayout.Server.csproj @@ -5,11 +5,13 @@ - + net6.0 + enable + enable diff --git a/LayoutFunctions/PrivateOfficeLayout/server/Program.cs b/LayoutFunctions/PrivateOfficeLayout/server/Program.cs index 1054d110..48050a8e 100644 --- a/LayoutFunctions/PrivateOfficeLayout/server/Program.cs +++ b/LayoutFunctions/PrivateOfficeLayout/server/Program.cs @@ -14,8 +14,13 @@ public static async Task Main(string[] args) await HyparServer.StartAsync( args, Path.GetFullPath(Path.Combine(Assembly.GetExecutingAssembly().Location, "../../../../..")), - typeof(PrivateOfficeLayout.Function), - typeof(PrivateOfficeLayout.PrivateOfficeLayoutInputs)); + async (executionRequest) => + { + var input = executionRequest.Args.ToObject(); + var function = new PrivateOfficeLayout.Function(); + Directory.SetCurrentDirectory(Path.GetDirectoryName(typeof(PrivateOfficeLayout.Function).Assembly.Location)!); + return await function.Handler(input, null); + }); } } } \ No newline at end of file diff --git a/LayoutFunctions/PrivateOfficeLayout/src/Function.g.cs b/LayoutFunctions/PrivateOfficeLayout/src/Function.g.cs index 1f449151..50870caf 100644 --- a/LayoutFunctions/PrivateOfficeLayout/src/Function.g.cs +++ b/LayoutFunctions/PrivateOfficeLayout/src/Function.g.cs @@ -62,7 +62,14 @@ public async Task Handler(PrivateOfficeLayoutInputs if(this.store == null) { - this.store = new S3ModelStore(RegionEndpoint.GetBySystemName("us-west-1")); + if (args.SignedResourceUrls == null) + { + this.store = new S3ModelStore(RegionEndpoint.GetBySystemName("us-west-1")); + } + else + { + this.store = new UrlModelStore(); + } } var l = new InvocationWrapper (store, PrivateOfficeLayout.Execute);