{ "cells": [ { "attachments": {}, "cell_type": "markdown", "metadata": {}, "source": [ "# Syntax Flavors\n", "\n", "> ### In this tutorial we will cover:\n", "> - the different syntax flavours of building molecules" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If you have checked out some of the other tutorials you will have definitely come accross the `bam.connect` function that is used to connect two molecules together. \n", "However, BuildAMol comprises three different syntaxes to use when performing different tasks. A _functional_, a _method-based_, and an _operator-based_ syntax. \n", "\n", "### Functional API\n", "BuildAMol contains a lot of functions spread over a number of modules. Especially the `structural` module contains a great number of them. Most BuildAMol functions are intended for usage by an end-user, so it is completely fine to import whatever functions you need and use them. This gives a more R-like user experience. Many functions are also automatically imported when loading buildamol. \n", "\n", "#### Examples\n", "- `bam.connect`\n", "- `bam.read_pdb`\n", "- `bam.structural.autolabel`\n", "- `bam.get_compound`\n", "\n", "### Method API\n", "For convenience, most functions that a user is likely to use on a regular basis have already been integrated into methods of the `Molecule` or other classes. Hence, it is probably the most convenient for most users to rely on the method based API the most since it saves you the time of importing the modules necessary. Most methods support the full range of parameters that the functions they are linked to support, but this is not always the case! Of course, there are many methods that are only implemented as methods and not available as stand-alone functions. Additionally, there are some synonymous methods available such as `bam.Molecule.get_residue_graph` and `bam.Molecule.make_residue_graph` for historic reasons and compatibility in the code base.\n", "\n", "#### Examples\n", "- `bam.Molecule.attach`\n", "- `bam.Molecule.from_pdb`\n", "- `bam.Molecule.autolabel`\n", "- `bam.PDBEComponds.get`\n", "\n", "### Operator API\n", "Operators are a great way of writing very short code. BuildAMol implements a syntax called \"molecular arithmetics\" that supports the basic operations for connecting molecules together. For instance, it allows us to connect `mol_c = mol_a + mol_b`. Naturally, this syntax is the most constrained out of the three, but it offers a wonderfully short way of creating larger structures. \n", "\n", "#### Available Operators\n", "| Function | Method | Attribute | Operator |\n", "|------------------------------------------------|----------------------------------------------------|-----------------------------------------|--------------------------|\n", "| - | `mol_a.set_linkage(link)` | `mol_a.linkage = link` | `mol_a % link`\n", "| - | `mol_a.set_attach_residue(res)` | `mol_a.attach_residue = res` | `mol_a @ res` |\n", "| - | `mol_a.set_root(root_atom)` | `mol_a.root_atom = root_atom` | `mol_a ^ root_atom` |\n", "| `mol_c = bam.connect(mol_a, mol_b, link)` | `mol_c = mol_a.attach(mol_b, link, inplace=False)` | - | `mol_c = mol_a + mol_b` |\n", "| `bam.connect(mol_a, mol_b, link, copy_a=False)` | `mol_a.attach(mol_b, link)` | - | `mol_a += mol_b`\n", "| `mol_c = bam.polymerize(mol_a, n, link)` | `mol_c = mol_a.repeat(n, link, inplace=False)` | - | `mol_c = mol_a * n` |\n", "| `bam.polymerize(mol_a, n, link, inplace=True)` | `mol_a.repeat(n, link)` | - | `mol_a *= n` |\n", "\n", "\n", "" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "> ### A general note on functions versus methods\n", "> The functional API is usually taylored toward **non-inplace** operations, while the method based API is taylored toward **inplace** operations. If you look at the table above closely, you will notice that the `copy` and `inplace` arguments are always switched between the two. So, when calling `Molecule.attach`, the operation will be in-place by default, while calling `connect` will by default return a copy." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Examples" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's look at an example. Because we like sugars so much, we'll build a glycan structure (yep, not very creative, but it does the trick)... If you are unfamiliar with glycans, just tag along for the ride and don't think too much about it. It's just an example...\n", "\n", "```mermaid\n", "flowchart TB\n", " node_1[\"Glucose\"]\n", " node_2[\"Glucose\"]\n", " node_3[\"Galactose\"]\n", " node_4[\"Galactose\"]\n", " node_5[\"Galactose\"]\n", " node_6[\"Mannose\"]\n", " node_7[\"Mannose\"]\n", " node_8[\"Glucose\"]\n", " node_1 --\"beta 1-4\"--> node_2\n", " node_2 --\"alpha 1-3\"--> node_3\n", " node_3 --\"alpha 1-4\"--> node_4\n", " node_4 --\"alpha 1-3\"--> node_5\n", " node_6 --\"beta 1-4\"--> node_7\n", " node_7 --\"alpha 1-4\"--> node_8\n", " node_2 --\"beta 1-2\"--> node_6\n", "```" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import plotly\n", "plotly.offline.init_notebook_mode()" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { "model_id": "8128ab15094045078860deabd999caa1", "version_major": 2, "version_minor": 0 }, "text/plain": [] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import buildamol as bam\n", "# first get some compounds\n", "bam.load_sugars()\n", "\n", "glc = bam.molecule(\"GLC\")\n", "gal = bam.molecule(\"GAL\")\n", "man = bam.molecule(\"MAN\")\n", "fuc = bam.molecule(\"FUC\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Using functional syntax\n", "\n", "Now we will build the glycan only using the functional syntax of BuildAMol:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/noahhk/anaconda3/envs/glyco2/lib/python3.11/site-packages/plotly/express/_core.py:1985: FutureWarning:\n", "\n", "When grouping with a length-1 list-like, you will need to pass a length-1 tuple to get_group in a future version of pandas. Pass `(name,)` instead of `name` to silence this warning.\n", "\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "customdata": [ [ "C1", 1, 1, "GLC", "A" ], [ "C2", 2, 1, "GLC", "A" ], [ "C3", 3, 1, "GLC", "A" ], [ "C4", 4, 1, "GLC", "A" ], [ "C5", 5, 1, "GLC", "A" ], [ "C6", 6, 1, "GLC", "A" ], [ "C1", 24, 2, "GLC", "A" ], [ "C2", 25, 2, "GLC", "A" ], [ "C3", 26, 2, "GLC", "A" ], [ "C4", 27, 2, "GLC", "A" ], [ "C5", 28, 2, "GLC", "A" ], [ "C6", 29, 2, "GLC", "A" ], [ "C1", 44, 3, "GAL", "A" ], [ "C2", 45, 3, "GAL", "A" ], [ "C3", 46, 3, "GAL", "A" ], [ "C4", 47, 3, "GAL", "A" ], [ "C5", 48, 3, "GAL", "A" ], [ "C6", 49, 3, "GAL", "A" ], [ "C1", 65, 4, "GAL", "A" ], [ "C2", 66, 4, "GAL", "A" ], [ "C3", 67, 4, "GAL", "A" ], [ "C4", 68, 4, "GAL", "A" ], [ "C5", 69, 4, "GAL", "A" ], [ "C6", 70, 4, "GAL", "A" ], [ "C1", 86, 5, "GAL", "A" ], [ "C2", 87, 5, "GAL", "A" ], [ "C3", 88, 5, "GAL", "A" ], [ "C4", 89, 5, "GAL", "A" ], [ "C5", 90, 5, "GAL", "A" ], [ "C6", 91, 5, "GAL", "A" ], [ "C1", 108, 6, "MAN", "A" ], [ "C2", 109, 6, "MAN", "A" ], [ "C3", 110, 6, "MAN", "A" ], [ "C4", 111, 6, "MAN", "A" ], [ "C5", 112, 6, "MAN", "A" ], [ "C6", 113, 6, "MAN", "A" ], [ "C1", 129, 7, "MAN", "A" ], [ "C2", 130, 7, "MAN", "A" ], [ "C3", 131, 7, "MAN", "A" ], [ "C4", 132, 7, "MAN", "A" ], [ "C5", 133, 7, "MAN", "A" ], [ "C6", 134, 7, "MAN", "A" ], [ "C1", 150, 8, "GLC", "A" ], [ "C2", 151, 8, "GLC", "A" ], [ "C3", 152, 8, "GLC", "A" ], [ "C4", 153, 8, "GLC", "A" ], [ "C5", 154, 8, "GLC", "A" ], [ "C6", 155, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=C
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "C", "marker": { "color": "darkslategray", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "C", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.567, -1.578, -1.179, 0.249, 1.189, 2.607, 0.28739188564117757, 1.480320584831757, 2.5518550249893526, 1.921370521263502, 0.6927362615491512, 0.023121121966325875, 4.237486750862174, 5.523963815710899, 6.104282643049588, 5.060830356326785, 3.788838332467793, 2.7209660646246197, 5.554273632628825, 4.866320224547966, 5.751157293389987, 6.073302144052585, 6.739153388942172, 7.009716398925601, 5.602796079668819, 4.649374390469093, 5.295886194255522, 6.660546453315634, 7.536663942409769, 8.879838771321644, 3.370180722730016, 4.342995410058376, 4.126498442731844, 4.250016685001658, 3.298046197158006, 3.3870442548285054, 4.83195715951967, 5.329187133895838, 4.075547144567604, 3.310717872479275, 3.0099055167558433, 2.2146891356164398, 1.046863490220184, -0.20597664009523564, -0.6849548447210543, -0.8798524747248084, 0.42881389771857537, 0.22522448119490424 ], "y": [ 1.572, 0.465, -0.806, -1.195, -0.024, -0.383, -3.6208883690602627, -4.38081146590108, -4.515665510620806, -5.208421548159997, -4.415224134145273, -5.133174433051773, -6.188240615228172, -6.745677888786661, -7.757267939027173, -8.832623734551516, -8.160416923057232, -9.222950114034496, -10.66905801919593, -11.96110913350714, -13.140014988518228, -13.01384827469256, -11.65932984087781, -11.500539508206224, -15.220517327694829, -16.345365490199157, -17.276586991810067, -17.75512648362008, -16.538619563471133, -17.0070926530699, -3.245639821141027, -4.428916027255673, -5.180454296193629, -4.176529332805268, -3.0070532722253502, -2.015203681937656, -5.593195159440233, -4.870704998502978, -4.58082741581725, -5.889649502127881, -6.529673660729845, -7.820046093541282, -4.990154715796644, -4.938024944128733, -6.394654914347473, -7.090527726959768, -7.030055455882298, -7.670400784764845 ], "z": [ -0.245, -0.554, 0.203, -0.192, 0.102, -0.345, 0.17534369512279074, -0.41274579257047955, 0.7251602592474138, 1.9372280638749304, 2.387308854685343, 3.560158773959561, 1.1610816637660615, 0.6082789343354923, 1.6130244037803165, 1.93063145402505, 2.455060947684393, 2.7180305992473626, 0.3929095272013252, 0.7516217186823146, 0.30897956916399116, -1.183120178009101, -1.4415267029557932, -2.938210466440504, 1.5255678557714771, 1.8366188063795275, 2.878109820237629, 2.373372926281779, 2.0613135432581124, 1.500158178586843, -1.37362362572875, -1.396273220894092, -2.753791895336952, -3.905208375900025, -3.649247570296521, -4.811413107548858, -5.821938410794584, -7.0777973041145055, -7.972010075359489, -8.197626854306273, -6.841411899717597, -7.053272447738804, -8.177596079112483, -9.011868998951725, -9.239822694067463, -7.889153992095742, -7.098576715628343, -5.724559536238706 ] }, { "customdata": [ [ "O1", 7, 1, "GLC", "A" ], [ "O2", 8, 1, "GLC", "A" ], [ "O3", 9, 1, "GLC", "A" ], [ "O4", 10, 1, "GLC", "A" ], [ "O5", 11, 1, "GLC", "A" ], [ "O6", 12, 1, "GLC", "A" ], [ "O2", 30, 2, "GLC", "A" ], [ "O3", 31, 2, "GLC", "A" ], [ "O4", 32, 2, "GLC", "A" ], [ "O5", 33, 2, "GLC", "A" ], [ "O6", 34, 2, "GLC", "A" ], [ "O2", 50, 3, "GAL", "A" ], [ "O3", 51, 3, "GAL", "A" ], [ "O4", 52, 3, "GAL", "A" ], [ "O5", 53, 3, "GAL", "A" ], [ "O6", 54, 3, "GAL", "A" ], [ "O2", 71, 4, "GAL", "A" ], [ "O3", 72, 4, "GAL", "A" ], [ "O4", 73, 4, "GAL", "A" ], [ "O5", 74, 4, "GAL", "A" ], [ "O6", 75, 4, "GAL", "A" ], [ "O2", 92, 5, "GAL", "A" ], [ "O3", 93, 5, "GAL", "A" ], [ "O4", 94, 5, "GAL", "A" ], [ "O5", 95, 5, "GAL", "A" ], [ "O6", 96, 5, "GAL", "A" ], [ "O2", 114, 6, "MAN", "A" ], [ "O3", 115, 6, "MAN", "A" ], [ "O4", 116, 6, "MAN", "A" ], [ "O5", 117, 6, "MAN", "A" ], [ "O6", 118, 6, "MAN", "A" ], [ "O2", 135, 7, "MAN", "A" ], [ "O3", 136, 7, "MAN", "A" ], [ "O4", 137, 7, "MAN", "A" ], [ "O5", 138, 7, "MAN", "A" ], [ "O6", 139, 7, "MAN", "A" ], [ "O2", 156, 8, "GLC", "A" ], [ "O3", 157, 8, "GLC", "A" ], [ "O4", 158, 8, "GLC", "A" ], [ "O5", 159, 8, "GLC", "A" ], [ "O6", 160, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=O
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "O", "marker": { "color": "red", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "O", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.6, -2.881, -2.075, 0.658, 0.744, 3.506, 2.0557165148821412, 3.6560021202222073, 2.871911843306936, -0.24841655015355635, -1.05368002484943, 6.4501145589467095, 7.268059606190845, 4.757062466408645, 3.2730243177675633, 1.5763239118701482, 4.613285882466256, 5.063898568748781, 4.866732557493377, 5.889503553988567, 7.734357007618706, 3.4243256316584656, 4.447338718774149, 6.4858867322284555, 6.913566454608555, 9.739042540523322, 5.6931151787176795, 5.114014472594497, 3.9061357968303754, 3.6513411897599326, 2.495838629348798, 6.212870644604493, 4.495757895226084, 2.086833690943052, 4.2122388629982375, 1.929556146828481, 0.038307062765999156, -1.9226212522332116, -1.2466496147377981, 0.8414877960416614, 1.4740185926894056 ], "y": [ 1.871, 0.879, -1.866, -2.338, 1.133, 0.661, -3.682652200920845, -5.289853972410993, -5.2639965018699755, -4.314104692702984, -4.3351816382697255, -5.7207385604272005, -8.371315322648217, -9.568812006158048, -7.235385181769363, -8.609828869733189, -12.033710588156481, -14.370606262810867, -13.10459502514153, -10.592083898242059, -10.289543579286654, -15.852327531560718, -18.404771869239635, -18.533502597734714, -15.700883742571754, -15.879398386889584, -3.9714881249176446, -6.204095885248117, -4.815542656683917, -2.3255380371075307, -0.9244632548408709, -5.705523275807865, -4.044923593491571, -5.616470869902409, -6.855098930072356, -8.416952350266765, -4.319162696522309, -6.381025382003934, -8.454924631817272, -5.67203003170339, -7.720137586158515 ], "z": [ 1.151, -0.139, -0.137, 0.562, -0.608, 0.035, -1.4913524081315273, 0.2523945480121395, 3.0028868364696355, 1.3269380024925652, 4.056388347536358, 0.3547361315445239, 1.0546687906359133, 0.7450544224477391, 1.4982306989307586, 3.315514224063996, 2.134268649266833, 0.5467032765205987, -1.941932315545984, -1.0146759531615976, -3.1651352301246685, 2.3132319127021854, 3.1025158455431296, 1.188693388682874, 1.087962860783268, 1.31799197696408, -1.3611689028370513, -2.8983982158153663, -5.135813473669448, -2.4584561007210395, -4.5759054562717845, -7.823035316725588, -9.229058609922799, -8.88206965329011, -6.164512645991869, -5.787638970231665, -10.250870302701873, -9.953974008260785, -8.103925834043304, -6.906487949251861, -5.031323272268199 ] }, { "customdata": [ [ "H1", 13, 1, "GLC", "A" ], [ "H2", 14, 1, "GLC", "A" ], [ "H3", 15, 1, "GLC", "A" ], [ "H4", 16, 1, "GLC", "A" ], [ "H5", 17, 1, "GLC", "A" ], [ "H61", 18, 1, "GLC", "A" ], [ "H62", 19, 1, "GLC", "A" ], [ "HO1", 20, 1, "GLC", "A" ], [ "HO2", 21, 1, "GLC", "A" ], [ "HO3", 22, 1, "GLC", "A" ], [ "HO6", 23, 1, "GLC", "A" ], [ "H1", 35, 2, "GLC", "A" ], [ "H2", 36, 2, "GLC", "A" ], [ "H3", 37, 2, "GLC", "A" ], [ "H4", 38, 2, "GLC", "A" ], [ "H5", 39, 2, "GLC", "A" ], [ "H61", 40, 2, "GLC", "A" ], [ "H62", 41, 2, "GLC", "A" ], [ "HO4", 42, 2, "GLC", "A" ], [ "HO6", 43, 2, "GLC", "A" ], [ "H1", 55, 3, "GAL", "A" ], [ "H2", 56, 3, "GAL", "A" ], [ "H3", 57, 3, "GAL", "A" ], [ "H4", 58, 3, "GAL", "A" ], [ "H5", 59, 3, "GAL", "A" ], [ "H61", 60, 3, "GAL", "A" ], [ "H62", 61, 3, "GAL", "A" ], [ "HO2", 62, 3, "GAL", "A" ], [ "HO3", 63, 3, "GAL", "A" ], [ "HO6", 64, 3, "GAL", "A" ], [ "H1", 76, 4, "GAL", "A" ], [ "H2", 77, 4, "GAL", "A" ], [ "H3", 78, 4, "GAL", "A" ], [ "H4", 79, 4, "GAL", "A" ], [ "H5", 80, 4, "GAL", "A" ], [ "H61", 81, 4, "GAL", "A" ], [ "H62", 82, 4, "GAL", "A" ], [ "HO2", 83, 4, "GAL", "A" ], [ "HO4", 84, 4, "GAL", "A" ], [ "HO6", 85, 4, "GAL", "A" ], [ "H1", 97, 5, "GAL", "A" ], [ "H2", 98, 5, "GAL", "A" ], [ "H3", 99, 5, "GAL", "A" ], [ "H4", 100, 5, "GAL", "A" ], [ "H5", 101, 5, "GAL", "A" ], [ "H61", 102, 5, "GAL", "A" ], [ "H62", 103, 5, "GAL", "A" ], [ "HO2", 104, 5, "GAL", "A" ], [ "HO3", 105, 5, "GAL", "A" ], [ "HO4", 106, 5, "GAL", "A" ], [ "HO6", 107, 5, "GAL", "A" ], [ "H1", 119, 6, "MAN", "A" ], [ "H2", 120, 6, "MAN", "A" ], [ "H3", 121, 6, "MAN", "A" ], [ "H4", 122, 6, "MAN", "A" ], [ "H5", 123, 6, "MAN", "A" ], [ "H61", 124, 6, "MAN", "A" ], [ "H62", 125, 6, "MAN", "A" ], [ "HO2", 126, 6, "MAN", "A" ], [ "HO3", 127, 6, "MAN", "A" ], [ "HO6", 128, 6, "MAN", "A" ], [ "H1", 140, 7, "MAN", "A" ], [ "H2", 141, 7, "MAN", "A" ], [ "H3", 142, 7, "MAN", "A" ], [ "H4", 143, 7, "MAN", "A" ], [ "H5", 144, 7, "MAN", "A" ], [ "H61", 145, 7, "MAN", "A" ], [ "H62", 146, 7, "MAN", "A" ], [ "HO2", 147, 7, "MAN", "A" ], [ "HO3", 148, 7, "MAN", "A" ], [ "HO6", 149, 7, "MAN", "A" ], [ "H1", 161, 8, "GLC", "A" ], [ "H2", 162, 8, "GLC", "A" ], [ "H3", 163, 8, "GLC", "A" ], [ "H4", 164, 8, "GLC", "A" ], [ "H5", 165, 8, "GLC", "A" ], [ "H61", 166, 8, "GLC", "A" ], [ "H62", 167, 8, "GLC", "A" ], [ "HO2", 168, 8, "GLC", "A" ], [ "HO3", 169, 8, "GLC", "A" ], [ "HO4", 170, 8, "GLC", "A" ], [ "HO6", 171, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=H
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "H", "marker": { "color": "lightgray", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "H", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.822, -1.583, -1.223, 0.281, 1.187, 2.913, 2.627, 0.017, -3.197, -3, 4.425, -0.4416295953503676, 1.1919755460235848, 2.896806132278614, 1.6207417462584381, 0.9993730295362181, 0.7522731954762831, -0.3628865421639118, 3.6796362109456524, -1.5254480198313956, 4.45947410918213, 5.289448765979703, 6.372724850492382, 5.453656357902075, 4.012903730923322, 3.120192819292222, 2.4326195125580146, 6.1386606975519245, 7.969060484031795, 0.8573331964579283, 6.497273049932705, 3.915869335389768, 6.6767494043434965, 6.752111311166291, 7.680601729368044, 7.597109525329493, 6.063279431367136, 4.059169802496751, 4.388930815680088, 7.9409160854812875, 5.755962247218171, 4.491937561016933, 5.4243888274427965, 7.141472278920311, 7.703335398877375, 9.341313078102722, 8.721174348626654, 2.971062137616493, 3.562555299041767, 5.93603403185406, 10.610602235370095, 3.5423803632455018, 4.1509052912370175, 3.132931607851224, 5.275095253770038, 2.2777254688201847, 4.407808504863519, 3.1126184885617403, 5.784390382598928, 5.006818908150823, 2.582990241096269, 5.724886884762493, 5.794990104880636, 3.431152574440655, 3.9193105574312717, 2.422894263718906, 2.8016620025926566, 1.2813790946080754, 6.964522809939714, 4.982039170775689, 1.4298529739146204, 1.3707270138672034, -0.9913924222133286, 0.0673129752384698, -1.6672085761392532, 1.2063066222945351, -0.16118999514392973, -0.485914944288643, 0.34246243163845413, -1.8735540957454768, -2.066879108740731, 1.4201167905380263 ], "y": [ 2.466, 0.264, -0.619, -1.429, 0.184, -1.315, -0.503, 2.566, 1.682, -1.684, 0.501, -3.5957016204844336, -5.388081243451282, -3.521925079396222, -6.220381288812529, -3.4159166774238843, -5.2917608967610965, -6.0954392445781584, -5.749565157600491, -4.729868650877535, -5.62775641845167, -7.289668686159617, -7.2276474006764335, -9.508976488460096, -7.632381632327901, -9.980787994570843, -9.689360576626795, -5.054095831051121, -7.746525027949044, -9.22646079261854, -10.594351436161782, -12.014988732506897, -13.120206039521296, -13.814333154915182, -11.607017487840857, -12.347118069098148, -11.463257089612863, -11.3165810551099, -13.937777708142, -10.123949627724773, -14.619546879882066, -16.929185109861237, -16.723969738915073, -18.36140667031443, -15.96709079461748, -17.706253656468846, -17.500760583015754, -15.260246485555093, -18.174237447766984, -19.320253362073174, -16.102964567175196, -2.7681284895084564, -5.113942855256785, -5.627876943376505, -3.808843410924452, -3.38117119847117, -1.6398390750244078, -2.5160098758477174, -3.506280047215519, -6.803818758841155, -0.3238508512565992, -5.7567260484560006, -3.9377957250393565, -3.8624002123259515, -6.568506241148279, -5.838697120784186, -8.512436312634552, -7.592282628135919, -5.869952274639815, -3.231333255527607, -9.22528768162956, -3.9569017600971703, -4.40675335502595, -6.928600392572839, -6.584084533642819, -7.570824230452708, -8.681537197098164, -7.077784377118048, -3.404238718726907, -5.948402160589389, -8.567832760325874, -8.114030389522794 ], "z": [ -0.815, -1.626, 1.276, -1.257, 1.173, 0.129, -1.428, 1.42, -0.576, 0.08, -0.218, -0.6260918905290271, -0.7041667123716273, 1.0110320643095607, 1.6623374984904256, 2.699826853302184, 4.353962016094727, 3.224400653088586, 2.784791842270555, 4.801926489410682, 2.087985956511503, -0.32758650299542413, 2.52768656360782, 2.690341717722105, 3.3823399935812337, 3.3919725442112836, 1.7764927368670225, -0.27264012206433663, 0.8231242875356707, 3.5102510280578465, 0.9653984051857829, 0.18811586698458171, 0.8852198399541047, -1.4786993910423796, -0.8939763034224639, -3.293417526184007, -3.4767669515955597, 2.471459400551062, -1.8231589503990726, -4.095198126147665, 2.4409623805387883, 0.9079442110737146, 3.809381662970315, 3.141526352029738, 2.9747950657705227, 2.1973764769031643, 0.5418818218327794, 1.697594649429607, 3.417777928075968, 1.3123066675158301, 0.9637225013510946, -0.41616036169778625, -0.5983171137701268, -2.7627316611714594, -3.9592453142146766, -3.570982708540395, -4.890177044266867, -5.73924803626744, -0.5187133956456453, -2.147421794179567, -5.328446709114805, -5.23004328147226, -6.840145617535461, -7.465986369121752, -8.79567992194284, -6.237165914995541, -7.657524578837811, -7.56713057132887, -7.237831825032318, -9.037420192528138, -5.965233258006978, -7.953825577059064, -8.460271283609043, -9.820537213720648, -7.329162330096764, -7.64022530621182, -5.84794109130058, -5.149428672077571, -10.173168137731391, -10.817841800487761, -8.6041621099014, -4.15035048314094 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -1.578 ], "y": [ 1.572, 0.465 ], "z": [ -0.245, -0.554 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -0.6 ], "y": [ 1.572, 1.871 ], "z": [ -0.245, 1.151 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, 0.744 ], "y": [ 1.572, 1.133 ], "z": [ -0.245, -0.608 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -0.822 ], "y": [ 1.572, 2.466 ], "z": [ -0.245, -0.815 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -1.179 ], "y": [ 0.465, -0.806 ], "z": [ -0.554, 0.203 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -2.881 ], "y": [ 0.465, 0.879 ], "z": [ -0.554, -0.139 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -1.583 ], "y": [ 0.465, 0.264 ], "z": [ -0.554, -1.626 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, 0.249 ], "y": [ -0.806, -1.195 ], "z": [ 0.203, -0.192 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, -2.075 ], "y": [ -0.806, -1.866 ], "z": [ 0.203, -0.137 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, -1.223 ], "y": [ -0.806, -0.619 ], "z": [ 0.203, 1.276 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 1.189 ], "y": [ -1.195, -0.024 ], "z": [ -0.192, 0.102 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 0.658 ], "y": [ -1.195, -2.338 ], "z": [ -0.192, 0.562 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 0.281 ], "y": [ -1.195, -1.429 ], "z": [ -0.192, -1.257 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 2.607 ], "y": [ -0.024, -0.383 ], "z": [ 0.102, -0.345 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 0.744 ], "y": [ -0.024, 1.133 ], "z": [ 0.102, -0.608 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 1.187 ], "y": [ -0.024, 0.184 ], "z": [ 0.102, 1.173 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 3.506 ], "y": [ -0.383, 0.661 ], "z": [ -0.345, 0.035 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 2.913 ], "y": [ -0.383, -1.315 ], "z": [ -0.345, 0.129 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 2.627 ], "y": [ -0.383, -0.503 ], "z": [ -0.345, -1.428 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6, 0.017 ], "y": [ 1.871, 2.566 ], "z": [ 1.151, 1.42 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.881, -3.197 ], "y": [ 0.879, 1.682 ], "z": [ -0.139, -0.576 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.075, -3 ], "y": [ -1.866, -1.684 ], "z": [ -0.137, 0.08 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.658, 0.28739188564117757 ], "y": [ -2.338, -3.6208883690602627 ], "z": [ 0.562, 0.17534369512279074 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.506, 4.425 ], "y": [ 0.661, 0.501 ], "z": [ 0.035, -0.218 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, 1.480320584831757 ], "y": [ -3.6208883690602627, -4.38081146590108 ], "z": [ 0.17534369512279074, -0.41274579257047955 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, -0.24841655015355635 ], "y": [ -3.6208883690602627, -4.314104692702984 ], "z": [ 0.17534369512279074, 1.3269380024925652 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, -0.4416295953503676 ], "y": [ -3.6208883690602627, -3.5957016204844336 ], "z": [ 0.17534369512279074, -0.6260918905290271 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 2.5518550249893526 ], "y": [ -4.38081146590108, -4.515665510620806 ], "z": [ -0.41274579257047955, 0.7251602592474138 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 2.0557165148821412 ], "y": [ -4.38081146590108, -3.682652200920845 ], "z": [ -0.41274579257047955, -1.4913524081315273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 1.1919755460235848 ], "y": [ -4.38081146590108, -5.388081243451282 ], "z": [ -0.41274579257047955, -0.7041667123716273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 1.921370521263502 ], "y": [ -4.515665510620806, -5.208421548159997 ], "z": [ 0.7251602592474138, 1.9372280638749304 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 3.6560021202222073 ], "y": [ -4.515665510620806, -5.289853972410993 ], "z": [ 0.7251602592474138, 0.2523945480121395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 2.896806132278614 ], "y": [ -4.515665510620806, -3.521925079396222 ], "z": [ 0.7251602592474138, 1.0110320643095607 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 0.6927362615491512 ], "y": [ -5.208421548159997, -4.415224134145273 ], "z": [ 1.9372280638749304, 2.387308854685343 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 2.871911843306936 ], "y": [ -5.208421548159997, -5.2639965018699755 ], "z": [ 1.9372280638749304, 3.0028868364696355 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 1.6207417462584381 ], "y": [ -5.208421548159997, -6.220381288812529 ], "z": [ 1.9372280638749304, 1.6623374984904256 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, 0.023121121966325875 ], "y": [ -4.415224134145273, -5.133174433051773 ], "z": [ 2.387308854685343, 3.560158773959561 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, -0.24841655015355635 ], "y": [ -4.415224134145273, -4.314104692702984 ], "z": [ 2.387308854685343, 1.3269380024925652 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, 0.9993730295362181 ], "y": [ -4.415224134145273, -3.4159166774238843 ], "z": [ 2.387308854685343, 2.699826853302184 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, -1.05368002484943 ], "y": [ -5.133174433051773, -4.3351816382697255 ], "z": [ 3.560158773959561, 4.056388347536358 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, 0.7522731954762831 ], "y": [ -5.133174433051773, -5.2917608967610965 ], "z": [ 3.560158773959561, 4.353962016094727 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, -0.3628865421639118 ], "y": [ -5.133174433051773, -6.0954392445781584 ], "z": [ 3.560158773959561, 3.224400653088586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.0557165148821412, 3.370180722730016 ], "y": [ -3.682652200920845, -3.245639821141027 ], "z": [ -1.4913524081315273, -1.37362362572875 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.6560021202222073, 4.237486750862174 ], "y": [ -5.289853972410993, -6.188240615228172 ], "z": [ 0.2523945480121395, 1.1610816637660615 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.871911843306936, 3.6796362109456524 ], "y": [ -5.2639965018699755, -5.749565157600491 ], "z": [ 3.0028868364696355, 2.784791842270555 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.05368002484943, -1.5254480198313956 ], "y": [ -4.3351816382697255, -4.729868650877535 ], "z": [ 4.056388347536358, 4.801926489410682 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 5.523963815710899 ], "y": [ -6.188240615228172, -6.745677888786661 ], "z": [ 1.1610816637660615, 0.6082789343354923 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 3.2730243177675633 ], "y": [ -6.188240615228172, -7.235385181769363 ], "z": [ 1.1610816637660615, 1.4982306989307586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 4.45947410918213 ], "y": [ -6.188240615228172, -5.62775641845167 ], "z": [ 1.1610816637660615, 2.087985956511503 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 6.104282643049588 ], "y": [ -6.745677888786661, -7.757267939027173 ], "z": [ 0.6082789343354923, 1.6130244037803165 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 6.4501145589467095 ], "y": [ -6.745677888786661, -5.7207385604272005 ], "z": [ 0.6082789343354923, 0.3547361315445239 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 5.289448765979703 ], "y": [ -6.745677888786661, -7.289668686159617 ], "z": [ 0.6082789343354923, -0.32758650299542413 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 5.060830356326785 ], "y": [ -7.757267939027173, -8.832623734551516 ], "z": [ 1.6130244037803165, 1.93063145402505 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 7.268059606190845 ], "y": [ -7.757267939027173, -8.371315322648217 ], "z": [ 1.6130244037803165, 1.0546687906359133 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 6.372724850492382 ], "y": [ -7.757267939027173, -7.2276474006764335 ], "z": [ 1.6130244037803165, 2.52768656360782 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 3.788838332467793 ], "y": [ -8.832623734551516, -8.160416923057232 ], "z": [ 1.93063145402505, 2.455060947684393 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 4.757062466408645 ], "y": [ -8.832623734551516, -9.568812006158048 ], "z": [ 1.93063145402505, 0.7450544224477391 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 5.453656357902075 ], "y": [ -8.832623734551516, -9.508976488460096 ], "z": [ 1.93063145402505, 2.690341717722105 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 2.7209660646246197 ], "y": [ -8.160416923057232, -9.222950114034496 ], "z": [ 2.455060947684393, 2.7180305992473626 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 3.2730243177675633 ], "y": [ -8.160416923057232, -7.235385181769363 ], "z": [ 2.455060947684393, 1.4982306989307586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 4.012903730923322 ], "y": [ -8.160416923057232, -7.632381632327901 ], "z": [ 2.455060947684393, 3.3823399935812337 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 1.5763239118701482 ], "y": [ -9.222950114034496, -8.609828869733189 ], "z": [ 2.7180305992473626, 3.315514224063996 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 3.120192819292222 ], "y": [ -9.222950114034496, -9.980787994570843 ], "z": [ 2.7180305992473626, 3.3919725442112836 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 2.4326195125580146 ], "y": [ -9.222950114034496, -9.689360576626795 ], "z": [ 2.7180305992473626, 1.7764927368670225 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.4501145589467095, 6.1386606975519245 ], "y": [ -5.7207385604272005, -5.054095831051121 ], "z": [ 0.3547361315445239, -0.27264012206433663 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.268059606190845, 7.969060484031795 ], "y": [ -8.371315322648217, -7.746525027949044 ], "z": [ 1.0546687906359133, 0.8231242875356707 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.757062466408645, 5.554273632628825 ], "y": [ -9.568812006158048, -10.66905801919593 ], "z": [ 0.7450544224477391, 0.3929095272013252 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.5763239118701482, 0.8573331964579283 ], "y": [ -8.609828869733189, -9.22646079261854 ], "z": [ 3.315514224063996, 3.5102510280578465 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 4.866320224547966 ], "y": [ -10.66905801919593, -11.96110913350714 ], "z": [ 0.3929095272013252, 0.7516217186823146 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 5.889503553988567 ], "y": [ -10.66905801919593, -10.592083898242059 ], "z": [ 0.3929095272013252, -1.0146759531615976 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 6.497273049932705 ], "y": [ -10.66905801919593, -10.594351436161782 ], "z": [ 0.3929095272013252, 0.9653984051857829 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 5.751157293389987 ], "y": [ -11.96110913350714, -13.140014988518228 ], "z": [ 0.7516217186823146, 0.30897956916399116 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 4.613285882466256 ], "y": [ -11.96110913350714, -12.033710588156481 ], "z": [ 0.7516217186823146, 2.134268649266833 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 3.915869335389768 ], "y": [ -11.96110913350714, -12.014988732506897 ], "z": [ 0.7516217186823146, 0.18811586698458171 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 6.073302144052585 ], "y": [ -13.140014988518228, -13.01384827469256 ], "z": [ 0.30897956916399116, -1.183120178009101 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 5.063898568748781 ], "y": [ -13.140014988518228, -14.370606262810867 ], "z": [ 0.30897956916399116, 0.5467032765205987 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 6.6767494043434965 ], "y": [ -13.140014988518228, -13.120206039521296 ], "z": [ 0.30897956916399116, 0.8852198399541047 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 6.739153388942172 ], "y": [ -13.01384827469256, -11.65932984087781 ], "z": [ -1.183120178009101, -1.4415267029557932 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 4.866732557493377 ], "y": [ -13.01384827469256, -13.10459502514153 ], "z": [ -1.183120178009101, -1.941932315545984 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 6.752111311166291 ], "y": [ -13.01384827469256, -13.814333154915182 ], "z": [ -1.183120178009101, -1.4786993910423796 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 7.009716398925601 ], "y": [ -11.65932984087781, -11.500539508206224 ], "z": [ -1.4415267029557932, -2.938210466440504 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 5.889503553988567 ], "y": [ -11.65932984087781, -10.592083898242059 ], "z": [ -1.4415267029557932, -1.0146759531615976 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 7.680601729368044 ], "y": [ -11.65932984087781, -11.607017487840857 ], "z": [ -1.4415267029557932, -0.8939763034224639 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 7.734357007618706 ], "y": [ -11.500539508206224, -10.289543579286654 ], "z": [ -2.938210466440504, -3.1651352301246685 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 7.597109525329493 ], "y": [ -11.500539508206224, -12.347118069098148 ], "z": [ -2.938210466440504, -3.293417526184007 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 6.063279431367136 ], "y": [ -11.500539508206224, -11.463257089612863 ], "z": [ -2.938210466440504, -3.4767669515955597 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.613285882466256, 4.059169802496751 ], "y": [ -12.033710588156481, -11.3165810551099 ], "z": [ 2.134268649266833, 2.471459400551062 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.063898568748781, 5.602796079668819 ], "y": [ -14.370606262810867, -15.220517327694829 ], "z": [ 0.5467032765205987, 1.5255678557714771 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866732557493377, 4.388930815680088 ], "y": [ -13.10459502514153, -13.937777708142 ], "z": [ -1.941932315545984, -1.8231589503990726 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.734357007618706, 7.9409160854812875 ], "y": [ -10.289543579286654, -10.123949627724773 ], "z": [ -3.1651352301246685, -4.095198126147665 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 4.649374390469093 ], "y": [ -15.220517327694829, -16.345365490199157 ], "z": [ 1.5255678557714771, 1.8366188063795275 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 6.913566454608555 ], "y": [ -15.220517327694829, -15.700883742571754 ], "z": [ 1.5255678557714771, 1.087962860783268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 5.755962247218171 ], "y": [ -15.220517327694829, -14.619546879882066 ], "z": [ 1.5255678557714771, 2.4409623805387883 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 5.295886194255522 ], "y": [ -16.345365490199157, -17.276586991810067 ], "z": [ 1.8366188063795275, 2.878109820237629 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 3.4243256316584656 ], "y": [ -16.345365490199157, -15.852327531560718 ], "z": [ 1.8366188063795275, 2.3132319127021854 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 4.491937561016933 ], "y": [ -16.345365490199157, -16.929185109861237 ], "z": [ 1.8366188063795275, 0.9079442110737146 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 6.660546453315634 ], "y": [ -17.276586991810067, -17.75512648362008 ], "z": [ 2.878109820237629, 2.373372926281779 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 4.447338718774149 ], "y": [ -17.276586991810067, -18.404771869239635 ], "z": [ 2.878109820237629, 3.1025158455431296 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 5.4243888274427965 ], "y": [ -17.276586991810067, -16.723969738915073 ], "z": [ 2.878109820237629, 3.809381662970315 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 7.536663942409769 ], "y": [ -17.75512648362008, -16.538619563471133 ], "z": [ 2.373372926281779, 2.0613135432581124 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 6.4858867322284555 ], "y": [ -17.75512648362008, -18.533502597734714 ], "z": [ 2.373372926281779, 1.188693388682874 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 7.141472278920311 ], "y": [ -17.75512648362008, -18.36140667031443 ], "z": [ 2.373372926281779, 3.141526352029738 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 8.879838771321644 ], "y": [ -16.538619563471133, -17.0070926530699 ], "z": [ 2.0613135432581124, 1.500158178586843 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 6.913566454608555 ], "y": [ -16.538619563471133, -15.700883742571754 ], "z": [ 2.0613135432581124, 1.087962860783268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 7.703335398877375 ], "y": [ -16.538619563471133, -15.96709079461748 ], "z": [ 2.0613135432581124, 2.9747950657705227 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 9.739042540523322 ], "y": [ -17.0070926530699, -15.879398386889584 ], "z": [ 1.500158178586843, 1.31799197696408 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 9.341313078102722 ], "y": [ -17.0070926530699, -17.706253656468846 ], "z": [ 1.500158178586843, 2.1973764769031643 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 8.721174348626654 ], "y": [ -17.0070926530699, -17.500760583015754 ], "z": [ 1.500158178586843, 0.5418818218327794 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.4243256316584656, 2.971062137616493 ], "y": [ -15.852327531560718, -15.260246485555093 ], "z": [ 2.3132319127021854, 1.697594649429607 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.447338718774149, 3.562555299041767 ], "y": [ -18.404771869239635, -18.174237447766984 ], "z": [ 3.1025158455431296, 3.417777928075968 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.4858867322284555, 5.93603403185406 ], "y": [ -18.533502597734714, -19.320253362073174 ], "z": [ 1.188693388682874, 1.3123066675158301 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 9.739042540523322, 10.610602235370095 ], "y": [ -15.879398386889584, -16.102964567175196 ], "z": [ 1.31799197696408, 0.9637225013510946 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 4.342995410058376 ], "y": [ -3.245639821141027, -4.428916027255673 ], "z": [ -1.37362362572875, -1.396273220894092 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 3.6513411897599326 ], "y": [ -3.245639821141027, -2.3255380371075307 ], "z": [ -1.37362362572875, -2.4584561007210395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 3.5423803632455018 ], "y": [ -3.245639821141027, -2.7681284895084564 ], "z": [ -1.37362362572875, -0.41616036169778625 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 4.126498442731844 ], "y": [ -4.428916027255673, -5.180454296193629 ], "z": [ -1.396273220894092, -2.753791895336952 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 5.6931151787176795 ], "y": [ -4.428916027255673, -3.9714881249176446 ], "z": [ -1.396273220894092, -1.3611689028370513 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 4.1509052912370175 ], "y": [ -4.428916027255673, -5.113942855256785 ], "z": [ -1.396273220894092, -0.5983171137701268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 4.250016685001658 ], "y": [ -5.180454296193629, -4.176529332805268 ], "z": [ -2.753791895336952, -3.905208375900025 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 5.114014472594497 ], "y": [ -5.180454296193629, -6.204095885248117 ], "z": [ -2.753791895336952, -2.8983982158153663 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 3.132931607851224 ], "y": [ -5.180454296193629, -5.627876943376505 ], "z": [ -2.753791895336952, -2.7627316611714594 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 3.298046197158006 ], "y": [ -4.176529332805268, -3.0070532722253502 ], "z": [ -3.905208375900025, -3.649247570296521 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 3.9061357968303754 ], "y": [ -4.176529332805268, -4.815542656683917 ], "z": [ -3.905208375900025, -5.135813473669448 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 5.275095253770038 ], "y": [ -4.176529332805268, -3.808843410924452 ], "z": [ -3.905208375900025, -3.9592453142146766 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 3.3870442548285054 ], "y": [ -3.0070532722253502, -2.015203681937656 ], "z": [ -3.649247570296521, -4.811413107548858 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 3.6513411897599326 ], "y": [ -3.0070532722253502, -2.3255380371075307 ], "z": [ -3.649247570296521, -2.4584561007210395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 2.2777254688201847 ], "y": [ -3.0070532722253502, -3.38117119847117 ], "z": [ -3.649247570296521, -3.570982708540395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 2.495838629348798 ], "y": [ -2.015203681937656, -0.9244632548408709 ], "z": [ -4.811413107548858, -4.5759054562717845 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 4.407808504863519 ], "y": [ -2.015203681937656, -1.6398390750244078 ], "z": [ -4.811413107548858, -4.890177044266867 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 3.1126184885617403 ], "y": [ -2.015203681937656, -2.5160098758477174 ], "z": [ -4.811413107548858, -5.73924803626744 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.6931151787176795, 5.784390382598928 ], "y": [ -3.9714881249176446, -3.506280047215519 ], "z": [ -1.3611689028370513, -0.5187133956456453 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.114014472594497, 5.006818908150823 ], "y": [ -6.204095885248117, -6.803818758841155 ], "z": [ -2.8983982158153663, -2.147421794179567 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.9061357968303754, 4.83195715951967 ], "y": [ -4.815542656683917, -5.593195159440233 ], "z": [ -5.135813473669448, -5.821938410794584 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.495838629348798, 2.582990241096269 ], "y": [ -0.9244632548408709, -0.3238508512565992 ], "z": [ -4.5759054562717845, -5.328446709114805 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 5.329187133895838 ], "y": [ -5.593195159440233, -4.870704998502978 ], "z": [ -5.821938410794584, -7.0777973041145055 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 4.2122388629982375 ], "y": [ -5.593195159440233, -6.855098930072356 ], "z": [ -5.821938410794584, -6.164512645991869 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 5.724886884762493 ], "y": [ -5.593195159440233, -5.7567260484560006 ], "z": [ -5.821938410794584, -5.23004328147226 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 4.075547144567604 ], "y": [ -4.870704998502978, -4.58082741581725 ], "z": [ -7.0777973041145055, -7.972010075359489 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 6.212870644604493 ], "y": [ -4.870704998502978, -5.705523275807865 ], "z": [ -7.0777973041145055, -7.823035316725588 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 5.794990104880636 ], "y": [ -4.870704998502978, -3.9377957250393565 ], "z": [ -7.0777973041145055, -6.840145617535461 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 3.310717872479275 ], "y": [ -4.58082741581725, -5.889649502127881 ], "z": [ -7.972010075359489, -8.197626854306273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 4.495757895226084 ], "y": [ -4.58082741581725, -4.044923593491571 ], "z": [ -7.972010075359489, -9.229058609922799 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 3.431152574440655 ], "y": [ -4.58082741581725, -3.8624002123259515 ], "z": [ -7.972010075359489, -7.465986369121752 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 3.0099055167558433 ], "y": [ -5.889649502127881, -6.529673660729845 ], "z": [ -8.197626854306273, -6.841411899717597 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 2.086833690943052 ], "y": [ -5.889649502127881, -5.616470869902409 ], "z": [ -8.197626854306273, -8.88206965329011 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 3.9193105574312717 ], "y": [ -5.889649502127881, -6.568506241148279 ], "z": [ -8.197626854306273, -8.79567992194284 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 2.2146891356164398 ], "y": [ -6.529673660729845, -7.820046093541282 ], "z": [ -6.841411899717597, -7.053272447738804 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 4.2122388629982375 ], "y": [ -6.529673660729845, -6.855098930072356 ], "z": [ -6.841411899717597, -6.164512645991869 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 2.422894263718906 ], "y": [ -6.529673660729845, -5.838697120784186 ], "z": [ -6.841411899717597, -6.237165914995541 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 1.929556146828481 ], "y": [ -7.820046093541282, -8.416952350266765 ], "z": [ -7.053272447738804, -5.787638970231665 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 2.8016620025926566 ], "y": [ -7.820046093541282, -8.512436312634552 ], "z": [ -7.053272447738804, -7.657524578837811 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 1.2813790946080754 ], "y": [ -7.820046093541282, -7.592282628135919 ], "z": [ -7.053272447738804, -7.56713057132887 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.212870644604493, 6.964522809939714 ], "y": [ -5.705523275807865, -5.869952274639815 ], "z": [ -7.823035316725588, -7.237831825032318 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.495757895226084, 4.982039170775689 ], "y": [ -4.044923593491571, -3.231333255527607 ], "z": [ -9.229058609922799, -9.037420192528138 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.086833690943052, 1.046863490220184 ], "y": [ -5.616470869902409, -4.990154715796644 ], "z": [ -8.88206965329011, -8.177596079112483 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.929556146828481, 1.4298529739146204 ], "y": [ -8.416952350266765, -9.22528768162956 ], "z": [ -5.787638970231665, -5.965233258006978 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, -0.20597664009523564 ], "y": [ -4.990154715796644, -4.938024944128733 ], "z": [ -8.177596079112483, -9.011868998951725 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, 0.8414877960416614 ], "y": [ -4.990154715796644, -5.67203003170339 ], "z": [ -8.177596079112483, -6.906487949251861 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, 1.3707270138672034 ], "y": [ -4.990154715796644, -3.9569017600971703 ], "z": [ -8.177596079112483, -7.953825577059064 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, -0.6849548447210543 ], "y": [ -4.938024944128733, -6.394654914347473 ], "z": [ -9.011868998951725, -9.239822694067463 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, 0.038307062765999156 ], "y": [ -4.938024944128733, -4.319162696522309 ], "z": [ -9.011868998951725, -10.250870302701873 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, -0.9913924222133286 ], "y": [ -4.938024944128733, -4.40675335502595 ], "z": [ -9.011868998951725, -8.460271283609043 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, -0.8798524747248084 ], "y": [ -6.394654914347473, -7.090527726959768 ], "z": [ -9.239822694067463, -7.889153992095742 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, -1.9226212522332116 ], "y": [ -6.394654914347473, -6.381025382003934 ], "z": [ -9.239822694067463, -9.953974008260785 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, 0.0673129752384698 ], "y": [ -6.394654914347473, -6.928600392572839 ], "z": [ -9.239822694067463, -9.820537213720648 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, 0.42881389771857537 ], "y": [ -7.090527726959768, -7.030055455882298 ], "z": [ -7.889153992095742, -7.098576715628343 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, -1.2466496147377981 ], "y": [ -7.090527726959768, -8.454924631817272 ], "z": [ -7.889153992095742, -8.103925834043304 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, -1.6672085761392532 ], "y": [ -7.090527726959768, -6.584084533642819 ], "z": [ -7.889153992095742, -7.329162330096764 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 0.22522448119490424 ], "y": [ -7.030055455882298, -7.670400784764845 ], "z": [ -7.098576715628343, -5.724559536238706 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 0.8414877960416614 ], "y": [ -7.030055455882298, -5.67203003170339 ], "z": [ -7.098576715628343, -6.906487949251861 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 1.2063066222945351 ], "y": [ -7.030055455882298, -7.570824230452708 ], "z": [ -7.098576715628343, -7.64022530621182 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, 1.4740185926894056 ], "y": [ -7.670400784764845, -7.720137586158515 ], "z": [ -5.724559536238706, -5.031323272268199 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, -0.16118999514392973 ], "y": [ -7.670400784764845, -8.681537197098164 ], "z": [ -5.724559536238706, -5.84794109130058 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, -0.485914944288643 ], "y": [ -7.670400784764845, -7.077784377118048 ], "z": [ -5.724559536238706, -5.149428672077571 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.038307062765999156, 0.34246243163845413 ], "y": [ -4.319162696522309, -3.404238718726907 ], "z": [ -10.250870302701873, -10.173168137731391 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.9226212522332116, -1.8735540957454768 ], "y": [ -6.381025382003934, -5.948402160589389 ], "z": [ -9.953974008260785, -10.817841800487761 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.2466496147377981, -2.066879108740731 ], "y": [ -8.454924631817272, -8.567832760325874 ], "z": [ -8.103925834043304, -8.6041621099014 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.4740185926894056, 1.4201167905380263 ], "y": [ -7.720137586158515, -8.114030389522794 ], "z": [ -5.031323272268199, -4.15035048314094 ] } ], "layout": { "scene": { "xaxis": { "showgrid": false, "showline": false, "showticklabels": false }, "yaxis": { "showgrid": false, "showline": false, "showticklabels": false }, "zaxis": { "showgrid": false, "showline": false, "showticklabels": false } }, "template": { "data": { "bar": [ { "error_x": { "color": "rgb(36,36,36)" }, "error_y": { "color": "rgb(36,36,36)" }, "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "baxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "line": { "color": "white", "width": 0.6 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "colorscale": { "diverging": [ [ 0, "rgb(103,0,31)" ], [ 0.1, "rgb(178,24,43)" ], [ 0.2, "rgb(214,96,77)" ], [ 0.3, "rgb(244,165,130)" ], [ 0.4, "rgb(253,219,199)" ], [ 0.5, "rgb(247,247,247)" ], [ 0.6, "rgb(209,229,240)" ], [ 0.7, "rgb(146,197,222)" ], [ 0.8, "rgb(67,147,195)" ], [ 0.9, "rgb(33,102,172)" ], [ 1, "rgb(5,48,97)" ] ], "sequential": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "sequentialminus": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ] }, "colorway": [ "#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF" ], "font": { "color": "rgb(36,36,36)" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "white", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": { "angularaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "radialaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "scene": { "xaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "zaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } }, "shapedefaults": { "fillcolor": "black", "line": { "width": 0 }, "opacity": 0.3 }, "ternary": { "aaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "baxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "caxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# start with the glucose-glucose at the top\n", "# remember that BuildAMol has pre-available linkages that \n", "# can be referenced by their string id directly;\n", "# glycosydic linkages are among them.\n", "glycan = bam.connect(glc, glc, link=\"14bb\")\n", "\n", "# now build the galactose branch\n", "gal_branch = bam.connect(gal, gal, link=\"14aa\")\n", "gal_branch = bam.connect(gal_branch, gal, link=\"13aa\")\n", "\n", "# now build the mannose branch\n", "man_branch = bam.connect(man, man, \"14bb\")\n", "man_branch = bam.connect(man_branch, glc, \"14ab\")\n", "\n", "# now attach both branches to the glucose-glucose\n", "# this time we need to specify at which residues to connect\n", "# since we don't want to use the default last residue\n", "glycan = bam.connect(glycan, gal_branch, link=\"13ab\", at_residue_b=1)\n", "glycan = bam.connect(glycan, man_branch, link=\"12bb\", at_residue_a=2, at_residue_b=1)\n", "\n", "# that's it! now we can visualize the glycan\n", "glycan.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Using method syntax\n", "\n", "Now let's repeat the same using the method syntax. Here we will need to add more `inplace=False` statements since we want to reuse the individual molecules multiple times. We did not have to bother with this using the functional syntax since we automatically generated copies there. On the other hand, we now can work a little more efficiently since we don't create too many unnecessary copies of objects (of course, we could have achieved the same with the functional syntax by adjusting the `copy` arguments). " ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/noahhk/anaconda3/envs/glyco2/lib/python3.11/site-packages/plotly/express/_core.py:1985: FutureWarning:\n", "\n", "When grouping with a length-1 list-like, you will need to pass a length-1 tuple to get_group in a future version of pandas. Pass `(name,)` instead of `name` to silence this warning.\n", "\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "customdata": [ [ "C1", 1, 1, "GLC", "A" ], [ "C2", 2, 1, "GLC", "A" ], [ "C3", 3, 1, "GLC", "A" ], [ "C4", 4, 1, "GLC", "A" ], [ "C5", 5, 1, "GLC", "A" ], [ "C6", 6, 1, "GLC", "A" ], [ "C1", 24, 2, "GLC", "A" ], [ "C2", 25, 2, "GLC", "A" ], [ "C3", 26, 2, "GLC", "A" ], [ "C4", 27, 2, "GLC", "A" ], [ "C5", 28, 2, "GLC", "A" ], [ "C6", 29, 2, "GLC", "A" ], [ "C1", 44, 3, "GAL", "A" ], [ "C2", 45, 3, "GAL", "A" ], [ "C3", 46, 3, "GAL", "A" ], [ "C4", 47, 3, "GAL", "A" ], [ "C5", 48, 3, "GAL", "A" ], [ "C6", 49, 3, "GAL", "A" ], [ "C1", 65, 4, "GAL", "A" ], [ "C2", 66, 4, "GAL", "A" ], [ "C3", 67, 4, "GAL", "A" ], [ "C4", 68, 4, "GAL", "A" ], [ "C5", 69, 4, "GAL", "A" ], [ "C6", 70, 4, "GAL", "A" ], [ "C1", 86, 5, "GAL", "A" ], [ "C2", 87, 5, "GAL", "A" ], [ "C3", 88, 5, "GAL", "A" ], [ "C4", 89, 5, "GAL", "A" ], [ "C5", 90, 5, "GAL", "A" ], [ "C6", 91, 5, "GAL", "A" ], [ "C1", 108, 6, "MAN", "A" ], [ "C2", 109, 6, "MAN", "A" ], [ "C3", 110, 6, "MAN", "A" ], [ "C4", 111, 6, "MAN", "A" ], [ "C5", 112, 6, "MAN", "A" ], [ "C6", 113, 6, "MAN", "A" ], [ "C1", 129, 7, "MAN", "A" ], [ "C2", 130, 7, "MAN", "A" ], [ "C3", 131, 7, "MAN", "A" ], [ "C4", 132, 7, "MAN", "A" ], [ "C5", 133, 7, "MAN", "A" ], [ "C6", 134, 7, "MAN", "A" ], [ "C1", 150, 8, "GLC", "A" ], [ "C2", 151, 8, "GLC", "A" ], [ "C3", 152, 8, "GLC", "A" ], [ "C4", 153, 8, "GLC", "A" ], [ "C5", 154, 8, "GLC", "A" ], [ "C6", 155, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=C
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "C", "marker": { "color": "darkslategray", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "C", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.567, -1.578, -1.179, 0.249, 1.189, 2.607, 0.28739188564117757, 1.480320584831757, 2.5518550249893526, 1.921370521263502, 0.6927362615491512, 0.023121121966325875, 4.237486750862174, 5.523963815710899, 6.104282643049588, 5.060830356326785, 3.788838332467793, 2.7209660646246197, 5.554273632628825, 4.866320224547966, 5.751157293389987, 6.073302144052585, 6.739153388942172, 7.009716398925601, 5.602796079668819, 4.649374390469093, 5.295886194255522, 6.660546453315634, 7.536663942409769, 8.879838771321644, 3.370180722730016, 4.342995410058376, 4.126498442731844, 4.250016685001658, 3.298046197158006, 3.3870442548285054, 4.83195715951967, 5.329187133895838, 4.075547144567604, 3.310717872479275, 3.0099055167558433, 2.2146891356164398, 1.046863490220184, -0.20597664009523564, -0.6849548447210543, -0.8798524747248084, 0.42881389771857537, 0.22522448119490424 ], "y": [ 1.572, 0.465, -0.806, -1.195, -0.024, -0.383, -3.6208883690602627, -4.38081146590108, -4.515665510620806, -5.208421548159997, -4.415224134145273, -5.133174433051773, -6.188240615228172, -6.745677888786661, -7.757267939027173, -8.832623734551516, -8.160416923057232, -9.222950114034496, -10.66905801919593, -11.96110913350714, -13.140014988518228, -13.01384827469256, -11.65932984087781, -11.500539508206224, -15.220517327694829, -16.345365490199157, -17.276586991810067, -17.75512648362008, -16.538619563471133, -17.0070926530699, -3.245639821141027, -4.428916027255673, -5.180454296193629, -4.176529332805268, -3.0070532722253502, -2.015203681937656, -5.593195159440233, -4.870704998502978, -4.58082741581725, -5.889649502127881, -6.529673660729845, -7.820046093541282, -4.990154715796644, -4.938024944128733, -6.394654914347473, -7.090527726959768, -7.030055455882298, -7.670400784764845 ], "z": [ -0.245, -0.554, 0.203, -0.192, 0.102, -0.345, 0.17534369512279074, -0.41274579257047955, 0.7251602592474138, 1.9372280638749304, 2.387308854685343, 3.560158773959561, 1.1610816637660615, 0.6082789343354923, 1.6130244037803165, 1.93063145402505, 2.455060947684393, 2.7180305992473626, 0.3929095272013252, 0.7516217186823146, 0.30897956916399116, -1.183120178009101, -1.4415267029557932, -2.938210466440504, 1.5255678557714771, 1.8366188063795275, 2.878109820237629, 2.373372926281779, 2.0613135432581124, 1.500158178586843, -1.37362362572875, -1.396273220894092, -2.753791895336952, -3.905208375900025, -3.649247570296521, -4.811413107548858, -5.821938410794584, -7.0777973041145055, -7.972010075359489, -8.197626854306273, -6.841411899717597, -7.053272447738804, -8.177596079112483, -9.011868998951725, -9.239822694067463, -7.889153992095742, -7.098576715628343, -5.724559536238706 ] }, { "customdata": [ [ "O1", 7, 1, "GLC", "A" ], [ "O2", 8, 1, "GLC", "A" ], [ "O3", 9, 1, "GLC", "A" ], [ "O4", 10, 1, "GLC", "A" ], [ "O5", 11, 1, "GLC", "A" ], [ "O6", 12, 1, "GLC", "A" ], [ "O2", 30, 2, "GLC", "A" ], [ "O3", 31, 2, "GLC", "A" ], [ "O4", 32, 2, "GLC", "A" ], [ "O5", 33, 2, "GLC", "A" ], [ "O6", 34, 2, "GLC", "A" ], [ "O2", 50, 3, "GAL", "A" ], [ "O3", 51, 3, "GAL", "A" ], [ "O4", 52, 3, "GAL", "A" ], [ "O5", 53, 3, "GAL", "A" ], [ "O6", 54, 3, "GAL", "A" ], [ "O2", 71, 4, "GAL", "A" ], [ "O3", 72, 4, "GAL", "A" ], [ "O4", 73, 4, "GAL", "A" ], [ "O5", 74, 4, "GAL", "A" ], [ "O6", 75, 4, "GAL", "A" ], [ "O2", 92, 5, "GAL", "A" ], [ "O3", 93, 5, "GAL", "A" ], [ "O4", 94, 5, "GAL", "A" ], [ "O5", 95, 5, "GAL", "A" ], [ "O6", 96, 5, "GAL", "A" ], [ "O2", 114, 6, "MAN", "A" ], [ "O3", 115, 6, "MAN", "A" ], [ "O4", 116, 6, "MAN", "A" ], [ "O5", 117, 6, "MAN", "A" ], [ "O6", 118, 6, "MAN", "A" ], [ "O2", 135, 7, "MAN", "A" ], [ "O3", 136, 7, "MAN", "A" ], [ "O4", 137, 7, "MAN", "A" ], [ "O5", 138, 7, "MAN", "A" ], [ "O6", 139, 7, "MAN", "A" ], [ "O2", 156, 8, "GLC", "A" ], [ "O3", 157, 8, "GLC", "A" ], [ "O4", 158, 8, "GLC", "A" ], [ "O5", 159, 8, "GLC", "A" ], [ "O6", 160, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=O
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "O", "marker": { "color": "red", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "O", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.6, -2.881, -2.075, 0.658, 0.744, 3.506, 2.0557165148821412, 3.6560021202222073, 2.871911843306936, -0.24841655015355635, -1.05368002484943, 6.4501145589467095, 7.268059606190845, 4.757062466408645, 3.2730243177675633, 1.5763239118701482, 4.613285882466256, 5.063898568748781, 4.866732557493377, 5.889503553988567, 7.734357007618706, 3.4243256316584656, 4.447338718774149, 6.4858867322284555, 6.913566454608555, 9.739042540523322, 5.6931151787176795, 5.114014472594497, 3.9061357968303754, 3.6513411897599326, 2.495838629348798, 6.212870644604493, 4.495757895226084, 2.086833690943052, 4.2122388629982375, 1.929556146828481, 0.038307062765999156, -1.9226212522332116, -1.2466496147377981, 0.8414877960416614, 1.4740185926894056 ], "y": [ 1.871, 0.879, -1.866, -2.338, 1.133, 0.661, -3.682652200920845, -5.289853972410993, -5.2639965018699755, -4.314104692702984, -4.3351816382697255, -5.7207385604272005, -8.371315322648217, -9.568812006158048, -7.235385181769363, -8.609828869733189, -12.033710588156481, -14.370606262810867, -13.10459502514153, -10.592083898242059, -10.289543579286654, -15.852327531560718, -18.404771869239635, -18.533502597734714, -15.700883742571754, -15.879398386889584, -3.9714881249176446, -6.204095885248117, -4.815542656683917, -2.3255380371075307, -0.9244632548408709, -5.705523275807865, -4.044923593491571, -5.616470869902409, -6.855098930072356, -8.416952350266765, -4.319162696522309, -6.381025382003934, -8.454924631817272, -5.67203003170339, -7.720137586158515 ], "z": [ 1.151, -0.139, -0.137, 0.562, -0.608, 0.035, -1.4913524081315273, 0.2523945480121395, 3.0028868364696355, 1.3269380024925652, 4.056388347536358, 0.3547361315445239, 1.0546687906359133, 0.7450544224477391, 1.4982306989307586, 3.315514224063996, 2.134268649266833, 0.5467032765205987, -1.941932315545984, -1.0146759531615976, -3.1651352301246685, 2.3132319127021854, 3.1025158455431296, 1.188693388682874, 1.087962860783268, 1.31799197696408, -1.3611689028370513, -2.8983982158153663, -5.135813473669448, -2.4584561007210395, -4.5759054562717845, -7.823035316725588, -9.229058609922799, -8.88206965329011, -6.164512645991869, -5.787638970231665, -10.250870302701873, -9.953974008260785, -8.103925834043304, -6.906487949251861, -5.031323272268199 ] }, { "customdata": [ [ "H1", 13, 1, "GLC", "A" ], [ "H2", 14, 1, "GLC", "A" ], [ "H3", 15, 1, "GLC", "A" ], [ "H4", 16, 1, "GLC", "A" ], [ "H5", 17, 1, "GLC", "A" ], [ "H61", 18, 1, "GLC", "A" ], [ "H62", 19, 1, "GLC", "A" ], [ "HO1", 20, 1, "GLC", "A" ], [ "HO2", 21, 1, "GLC", "A" ], [ "HO3", 22, 1, "GLC", "A" ], [ "HO6", 23, 1, "GLC", "A" ], [ "H1", 35, 2, "GLC", "A" ], [ "H2", 36, 2, "GLC", "A" ], [ "H3", 37, 2, "GLC", "A" ], [ "H4", 38, 2, "GLC", "A" ], [ "H5", 39, 2, "GLC", "A" ], [ "H61", 40, 2, "GLC", "A" ], [ "H62", 41, 2, "GLC", "A" ], [ "HO4", 42, 2, "GLC", "A" ], [ "HO6", 43, 2, "GLC", "A" ], [ "H1", 55, 3, "GAL", "A" ], [ "H2", 56, 3, "GAL", "A" ], [ "H3", 57, 3, "GAL", "A" ], [ "H4", 58, 3, "GAL", "A" ], [ "H5", 59, 3, "GAL", "A" ], [ "H61", 60, 3, "GAL", "A" ], [ "H62", 61, 3, "GAL", "A" ], [ "HO2", 62, 3, "GAL", "A" ], [ "HO3", 63, 3, "GAL", "A" ], [ "HO6", 64, 3, "GAL", "A" ], [ "H1", 76, 4, "GAL", "A" ], [ "H2", 77, 4, "GAL", "A" ], [ "H3", 78, 4, "GAL", "A" ], [ "H4", 79, 4, "GAL", "A" ], [ "H5", 80, 4, "GAL", "A" ], [ "H61", 81, 4, "GAL", "A" ], [ "H62", 82, 4, "GAL", "A" ], [ "HO2", 83, 4, "GAL", "A" ], [ "HO4", 84, 4, "GAL", "A" ], [ "HO6", 85, 4, "GAL", "A" ], [ "H1", 97, 5, "GAL", "A" ], [ "H2", 98, 5, "GAL", "A" ], [ "H3", 99, 5, "GAL", "A" ], [ "H4", 100, 5, "GAL", "A" ], [ "H5", 101, 5, "GAL", "A" ], [ "H61", 102, 5, "GAL", "A" ], [ "H62", 103, 5, "GAL", "A" ], [ "HO2", 104, 5, "GAL", "A" ], [ "HO3", 105, 5, "GAL", "A" ], [ "HO4", 106, 5, "GAL", "A" ], [ "HO6", 107, 5, "GAL", "A" ], [ "H1", 119, 6, "MAN", "A" ], [ "H2", 120, 6, "MAN", "A" ], [ "H3", 121, 6, "MAN", "A" ], [ "H4", 122, 6, "MAN", "A" ], [ "H5", 123, 6, "MAN", "A" ], [ "H61", 124, 6, "MAN", "A" ], [ "H62", 125, 6, "MAN", "A" ], [ "HO2", 126, 6, "MAN", "A" ], [ "HO3", 127, 6, "MAN", "A" ], [ "HO6", 128, 6, "MAN", "A" ], [ "H1", 140, 7, "MAN", "A" ], [ "H2", 141, 7, "MAN", "A" ], [ "H3", 142, 7, "MAN", "A" ], [ "H4", 143, 7, "MAN", "A" ], [ "H5", 144, 7, "MAN", "A" ], [ "H61", 145, 7, "MAN", "A" ], [ "H62", 146, 7, "MAN", "A" ], [ "HO2", 147, 7, "MAN", "A" ], [ "HO3", 148, 7, "MAN", "A" ], [ "HO6", 149, 7, "MAN", "A" ], [ "H1", 161, 8, "GLC", "A" ], [ "H2", 162, 8, "GLC", "A" ], [ "H3", 163, 8, "GLC", "A" ], [ "H4", 164, 8, "GLC", "A" ], [ "H5", 165, 8, "GLC", "A" ], [ "H61", 166, 8, "GLC", "A" ], [ "H62", 167, 8, "GLC", "A" ], [ "HO2", 168, 8, "GLC", "A" ], [ "HO3", 169, 8, "GLC", "A" ], [ "HO4", 170, 8, "GLC", "A" ], [ "HO6", 171, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=H
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "H", "marker": { "color": "lightgray", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "H", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.822, -1.583, -1.223, 0.281, 1.187, 2.913, 2.627, 0.017, -3.197, -3, 4.425, -0.4416295953503676, 1.1919755460235848, 2.896806132278614, 1.6207417462584381, 0.9993730295362181, 0.7522731954762831, -0.3628865421639118, 3.6796362109456524, -1.5254480198313956, 4.45947410918213, 5.289448765979703, 6.372724850492382, 5.453656357902075, 4.012903730923322, 3.120192819292222, 2.4326195125580146, 6.1386606975519245, 7.969060484031795, 0.8573331964579283, 6.497273049932705, 3.915869335389768, 6.6767494043434965, 6.752111311166291, 7.680601729368044, 7.597109525329493, 6.063279431367136, 4.059169802496751, 4.388930815680088, 7.9409160854812875, 5.755962247218171, 4.491937561016933, 5.4243888274427965, 7.141472278920311, 7.703335398877375, 9.341313078102722, 8.721174348626654, 2.971062137616493, 3.562555299041767, 5.93603403185406, 10.610602235370095, 3.5423803632455018, 4.1509052912370175, 3.132931607851224, 5.275095253770038, 2.2777254688201847, 4.407808504863519, 3.1126184885617403, 5.784390382598928, 5.006818908150823, 2.582990241096269, 5.724886884762493, 5.794990104880636, 3.431152574440655, 3.9193105574312717, 2.422894263718906, 2.8016620025926566, 1.2813790946080754, 6.964522809939714, 4.982039170775689, 1.4298529739146204, 1.3707270138672034, -0.9913924222133286, 0.0673129752384698, -1.6672085761392532, 1.2063066222945351, -0.16118999514392973, -0.485914944288643, 0.34246243163845413, -1.8735540957454768, -2.066879108740731, 1.4201167905380263 ], "y": [ 2.466, 0.264, -0.619, -1.429, 0.184, -1.315, -0.503, 2.566, 1.682, -1.684, 0.501, -3.5957016204844336, -5.388081243451282, -3.521925079396222, -6.220381288812529, -3.4159166774238843, -5.2917608967610965, -6.0954392445781584, -5.749565157600491, -4.729868650877535, -5.62775641845167, -7.289668686159617, -7.2276474006764335, -9.508976488460096, -7.632381632327901, -9.980787994570843, -9.689360576626795, -5.054095831051121, -7.746525027949044, -9.22646079261854, -10.594351436161782, -12.014988732506897, -13.120206039521296, -13.814333154915182, -11.607017487840857, -12.347118069098148, -11.463257089612863, -11.3165810551099, -13.937777708142, -10.123949627724773, -14.619546879882066, -16.929185109861237, -16.723969738915073, -18.36140667031443, -15.96709079461748, -17.706253656468846, -17.500760583015754, -15.260246485555093, -18.174237447766984, -19.320253362073174, -16.102964567175196, -2.7681284895084564, -5.113942855256785, -5.627876943376505, -3.808843410924452, -3.38117119847117, -1.6398390750244078, -2.5160098758477174, -3.506280047215519, -6.803818758841155, -0.3238508512565992, -5.7567260484560006, -3.9377957250393565, -3.8624002123259515, -6.568506241148279, -5.838697120784186, -8.512436312634552, -7.592282628135919, -5.869952274639815, -3.231333255527607, -9.22528768162956, -3.9569017600971703, -4.40675335502595, -6.928600392572839, -6.584084533642819, -7.570824230452708, -8.681537197098164, -7.077784377118048, -3.404238718726907, -5.948402160589389, -8.567832760325874, -8.114030389522794 ], "z": [ -0.815, -1.626, 1.276, -1.257, 1.173, 0.129, -1.428, 1.42, -0.576, 0.08, -0.218, -0.6260918905290271, -0.7041667123716273, 1.0110320643095607, 1.6623374984904256, 2.699826853302184, 4.353962016094727, 3.224400653088586, 2.784791842270555, 4.801926489410682, 2.087985956511503, -0.32758650299542413, 2.52768656360782, 2.690341717722105, 3.3823399935812337, 3.3919725442112836, 1.7764927368670225, -0.27264012206433663, 0.8231242875356707, 3.5102510280578465, 0.9653984051857829, 0.18811586698458171, 0.8852198399541047, -1.4786993910423796, -0.8939763034224639, -3.293417526184007, -3.4767669515955597, 2.471459400551062, -1.8231589503990726, -4.095198126147665, 2.4409623805387883, 0.9079442110737146, 3.809381662970315, 3.141526352029738, 2.9747950657705227, 2.1973764769031643, 0.5418818218327794, 1.697594649429607, 3.417777928075968, 1.3123066675158301, 0.9637225013510946, -0.41616036169778625, -0.5983171137701268, -2.7627316611714594, -3.9592453142146766, -3.570982708540395, -4.890177044266867, -5.73924803626744, -0.5187133956456453, -2.147421794179567, -5.328446709114805, -5.23004328147226, -6.840145617535461, -7.465986369121752, -8.79567992194284, -6.237165914995541, -7.657524578837811, -7.56713057132887, -7.237831825032318, -9.037420192528138, -5.965233258006978, -7.953825577059064, -8.460271283609043, -9.820537213720648, -7.329162330096764, -7.64022530621182, -5.84794109130058, -5.149428672077571, -10.173168137731391, -10.817841800487761, -8.6041621099014, -4.15035048314094 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -1.578 ], "y": [ 1.572, 0.465 ], "z": [ -0.245, -0.554 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -0.6 ], "y": [ 1.572, 1.871 ], "z": [ -0.245, 1.151 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, 0.744 ], "y": [ 1.572, 1.133 ], "z": [ -0.245, -0.608 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -0.822 ], "y": [ 1.572, 2.466 ], "z": [ -0.245, -0.815 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -1.179 ], "y": [ 0.465, -0.806 ], "z": [ -0.554, 0.203 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -2.881 ], "y": [ 0.465, 0.879 ], "z": [ -0.554, -0.139 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -1.583 ], "y": [ 0.465, 0.264 ], "z": [ -0.554, -1.626 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, 0.249 ], "y": [ -0.806, -1.195 ], "z": [ 0.203, -0.192 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, -2.075 ], "y": [ -0.806, -1.866 ], "z": [ 0.203, -0.137 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, -1.223 ], "y": [ -0.806, -0.619 ], "z": [ 0.203, 1.276 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 1.189 ], "y": [ -1.195, -0.024 ], "z": [ -0.192, 0.102 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 0.658 ], "y": [ -1.195, -2.338 ], "z": [ -0.192, 0.562 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 0.281 ], "y": [ -1.195, -1.429 ], "z": [ -0.192, -1.257 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 2.607 ], "y": [ -0.024, -0.383 ], "z": [ 0.102, -0.345 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 0.744 ], "y": [ -0.024, 1.133 ], "z": [ 0.102, -0.608 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 1.187 ], "y": [ -0.024, 0.184 ], "z": [ 0.102, 1.173 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 3.506 ], "y": [ -0.383, 0.661 ], "z": [ -0.345, 0.035 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 2.913 ], "y": [ -0.383, -1.315 ], "z": [ -0.345, 0.129 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 2.627 ], "y": [ -0.383, -0.503 ], "z": [ -0.345, -1.428 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6, 0.017 ], "y": [ 1.871, 2.566 ], "z": [ 1.151, 1.42 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.881, -3.197 ], "y": [ 0.879, 1.682 ], "z": [ -0.139, -0.576 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.075, -3 ], "y": [ -1.866, -1.684 ], "z": [ -0.137, 0.08 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.658, 0.28739188564117757 ], "y": [ -2.338, -3.6208883690602627 ], "z": [ 0.562, 0.17534369512279074 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.506, 4.425 ], "y": [ 0.661, 0.501 ], "z": [ 0.035, -0.218 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, 1.480320584831757 ], "y": [ -3.6208883690602627, -4.38081146590108 ], "z": [ 0.17534369512279074, -0.41274579257047955 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, -0.24841655015355635 ], "y": [ -3.6208883690602627, -4.314104692702984 ], "z": [ 0.17534369512279074, 1.3269380024925652 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, -0.4416295953503676 ], "y": [ -3.6208883690602627, -3.5957016204844336 ], "z": [ 0.17534369512279074, -0.6260918905290271 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 2.5518550249893526 ], "y": [ -4.38081146590108, -4.515665510620806 ], "z": [ -0.41274579257047955, 0.7251602592474138 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 2.0557165148821412 ], "y": [ -4.38081146590108, -3.682652200920845 ], "z": [ -0.41274579257047955, -1.4913524081315273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 1.1919755460235848 ], "y": [ -4.38081146590108, -5.388081243451282 ], "z": [ -0.41274579257047955, -0.7041667123716273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 1.921370521263502 ], "y": [ -4.515665510620806, -5.208421548159997 ], "z": [ 0.7251602592474138, 1.9372280638749304 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 3.6560021202222073 ], "y": [ -4.515665510620806, -5.289853972410993 ], "z": [ 0.7251602592474138, 0.2523945480121395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 2.896806132278614 ], "y": [ -4.515665510620806, -3.521925079396222 ], "z": [ 0.7251602592474138, 1.0110320643095607 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 0.6927362615491512 ], "y": [ -5.208421548159997, -4.415224134145273 ], "z": [ 1.9372280638749304, 2.387308854685343 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 2.871911843306936 ], "y": [ -5.208421548159997, -5.2639965018699755 ], "z": [ 1.9372280638749304, 3.0028868364696355 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 1.6207417462584381 ], "y": [ -5.208421548159997, -6.220381288812529 ], "z": [ 1.9372280638749304, 1.6623374984904256 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, 0.023121121966325875 ], "y": [ -4.415224134145273, -5.133174433051773 ], "z": [ 2.387308854685343, 3.560158773959561 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, -0.24841655015355635 ], "y": [ -4.415224134145273, -4.314104692702984 ], "z": [ 2.387308854685343, 1.3269380024925652 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, 0.9993730295362181 ], "y": [ -4.415224134145273, -3.4159166774238843 ], "z": [ 2.387308854685343, 2.699826853302184 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, -1.05368002484943 ], "y": [ -5.133174433051773, -4.3351816382697255 ], "z": [ 3.560158773959561, 4.056388347536358 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, 0.7522731954762831 ], "y": [ -5.133174433051773, -5.2917608967610965 ], "z": [ 3.560158773959561, 4.353962016094727 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, -0.3628865421639118 ], "y": [ -5.133174433051773, -6.0954392445781584 ], "z": [ 3.560158773959561, 3.224400653088586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.0557165148821412, 3.370180722730016 ], "y": [ -3.682652200920845, -3.245639821141027 ], "z": [ -1.4913524081315273, -1.37362362572875 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.6560021202222073, 4.237486750862174 ], "y": [ -5.289853972410993, -6.188240615228172 ], "z": [ 0.2523945480121395, 1.1610816637660615 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.871911843306936, 3.6796362109456524 ], "y": [ -5.2639965018699755, -5.749565157600491 ], "z": [ 3.0028868364696355, 2.784791842270555 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.05368002484943, -1.5254480198313956 ], "y": [ -4.3351816382697255, -4.729868650877535 ], "z": [ 4.056388347536358, 4.801926489410682 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 5.523963815710899 ], "y": [ -6.188240615228172, -6.745677888786661 ], "z": [ 1.1610816637660615, 0.6082789343354923 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 3.2730243177675633 ], "y": [ -6.188240615228172, -7.235385181769363 ], "z": [ 1.1610816637660615, 1.4982306989307586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 4.45947410918213 ], "y": [ -6.188240615228172, -5.62775641845167 ], "z": [ 1.1610816637660615, 2.087985956511503 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 6.104282643049588 ], "y": [ -6.745677888786661, -7.757267939027173 ], "z": [ 0.6082789343354923, 1.6130244037803165 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 6.4501145589467095 ], "y": [ -6.745677888786661, -5.7207385604272005 ], "z": [ 0.6082789343354923, 0.3547361315445239 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 5.289448765979703 ], "y": [ -6.745677888786661, -7.289668686159617 ], "z": [ 0.6082789343354923, -0.32758650299542413 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 5.060830356326785 ], "y": [ -7.757267939027173, -8.832623734551516 ], "z": [ 1.6130244037803165, 1.93063145402505 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 7.268059606190845 ], "y": [ -7.757267939027173, -8.371315322648217 ], "z": [ 1.6130244037803165, 1.0546687906359133 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 6.372724850492382 ], "y": [ -7.757267939027173, -7.2276474006764335 ], "z": [ 1.6130244037803165, 2.52768656360782 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 3.788838332467793 ], "y": [ -8.832623734551516, -8.160416923057232 ], "z": [ 1.93063145402505, 2.455060947684393 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 4.757062466408645 ], "y": [ -8.832623734551516, -9.568812006158048 ], "z": [ 1.93063145402505, 0.7450544224477391 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 5.453656357902075 ], "y": [ -8.832623734551516, -9.508976488460096 ], "z": [ 1.93063145402505, 2.690341717722105 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 2.7209660646246197 ], "y": [ -8.160416923057232, -9.222950114034496 ], "z": [ 2.455060947684393, 2.7180305992473626 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 3.2730243177675633 ], "y": [ -8.160416923057232, -7.235385181769363 ], "z": [ 2.455060947684393, 1.4982306989307586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 4.012903730923322 ], "y": [ -8.160416923057232, -7.632381632327901 ], "z": [ 2.455060947684393, 3.3823399935812337 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 1.5763239118701482 ], "y": [ -9.222950114034496, -8.609828869733189 ], "z": [ 2.7180305992473626, 3.315514224063996 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 3.120192819292222 ], "y": [ -9.222950114034496, -9.980787994570843 ], "z": [ 2.7180305992473626, 3.3919725442112836 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 2.4326195125580146 ], "y": [ -9.222950114034496, -9.689360576626795 ], "z": [ 2.7180305992473626, 1.7764927368670225 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.4501145589467095, 6.1386606975519245 ], "y": [ -5.7207385604272005, -5.054095831051121 ], "z": [ 0.3547361315445239, -0.27264012206433663 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.268059606190845, 7.969060484031795 ], "y": [ -8.371315322648217, -7.746525027949044 ], "z": [ 1.0546687906359133, 0.8231242875356707 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.757062466408645, 5.554273632628825 ], "y": [ -9.568812006158048, -10.66905801919593 ], "z": [ 0.7450544224477391, 0.3929095272013252 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.5763239118701482, 0.8573331964579283 ], "y": [ -8.609828869733189, -9.22646079261854 ], "z": [ 3.315514224063996, 3.5102510280578465 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 4.866320224547966 ], "y": [ -10.66905801919593, -11.96110913350714 ], "z": [ 0.3929095272013252, 0.7516217186823146 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 5.889503553988567 ], "y": [ -10.66905801919593, -10.592083898242059 ], "z": [ 0.3929095272013252, -1.0146759531615976 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 6.497273049932705 ], "y": [ -10.66905801919593, -10.594351436161782 ], "z": [ 0.3929095272013252, 0.9653984051857829 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 5.751157293389987 ], "y": [ -11.96110913350714, -13.140014988518228 ], "z": [ 0.7516217186823146, 0.30897956916399116 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 4.613285882466256 ], "y": [ -11.96110913350714, -12.033710588156481 ], "z": [ 0.7516217186823146, 2.134268649266833 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 3.915869335389768 ], "y": [ -11.96110913350714, -12.014988732506897 ], "z": [ 0.7516217186823146, 0.18811586698458171 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 6.073302144052585 ], "y": [ -13.140014988518228, -13.01384827469256 ], "z": [ 0.30897956916399116, -1.183120178009101 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 5.063898568748781 ], "y": [ -13.140014988518228, -14.370606262810867 ], "z": [ 0.30897956916399116, 0.5467032765205987 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 6.6767494043434965 ], "y": [ -13.140014988518228, -13.120206039521296 ], "z": [ 0.30897956916399116, 0.8852198399541047 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 6.739153388942172 ], "y": [ -13.01384827469256, -11.65932984087781 ], "z": [ -1.183120178009101, -1.4415267029557932 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 4.866732557493377 ], "y": [ -13.01384827469256, -13.10459502514153 ], "z": [ -1.183120178009101, -1.941932315545984 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 6.752111311166291 ], "y": [ -13.01384827469256, -13.814333154915182 ], "z": [ -1.183120178009101, -1.4786993910423796 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 7.009716398925601 ], "y": [ -11.65932984087781, -11.500539508206224 ], "z": [ -1.4415267029557932, -2.938210466440504 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 5.889503553988567 ], "y": [ -11.65932984087781, -10.592083898242059 ], "z": [ -1.4415267029557932, -1.0146759531615976 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 7.680601729368044 ], "y": [ -11.65932984087781, -11.607017487840857 ], "z": [ -1.4415267029557932, -0.8939763034224639 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 7.734357007618706 ], "y": [ -11.500539508206224, -10.289543579286654 ], "z": [ -2.938210466440504, -3.1651352301246685 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 7.597109525329493 ], "y": [ -11.500539508206224, -12.347118069098148 ], "z": [ -2.938210466440504, -3.293417526184007 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 6.063279431367136 ], "y": [ -11.500539508206224, -11.463257089612863 ], "z": [ -2.938210466440504, -3.4767669515955597 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.613285882466256, 4.059169802496751 ], "y": [ -12.033710588156481, -11.3165810551099 ], "z": [ 2.134268649266833, 2.471459400551062 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.063898568748781, 5.602796079668819 ], "y": [ -14.370606262810867, -15.220517327694829 ], "z": [ 0.5467032765205987, 1.5255678557714771 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866732557493377, 4.388930815680088 ], "y": [ -13.10459502514153, -13.937777708142 ], "z": [ -1.941932315545984, -1.8231589503990726 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.734357007618706, 7.9409160854812875 ], "y": [ -10.289543579286654, -10.123949627724773 ], "z": [ -3.1651352301246685, -4.095198126147665 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 4.649374390469093 ], "y": [ -15.220517327694829, -16.345365490199157 ], "z": [ 1.5255678557714771, 1.8366188063795275 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 6.913566454608555 ], "y": [ -15.220517327694829, -15.700883742571754 ], "z": [ 1.5255678557714771, 1.087962860783268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 5.755962247218171 ], "y": [ -15.220517327694829, -14.619546879882066 ], "z": [ 1.5255678557714771, 2.4409623805387883 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 5.295886194255522 ], "y": [ -16.345365490199157, -17.276586991810067 ], "z": [ 1.8366188063795275, 2.878109820237629 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 3.4243256316584656 ], "y": [ -16.345365490199157, -15.852327531560718 ], "z": [ 1.8366188063795275, 2.3132319127021854 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 4.491937561016933 ], "y": [ -16.345365490199157, -16.929185109861237 ], "z": [ 1.8366188063795275, 0.9079442110737146 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 6.660546453315634 ], "y": [ -17.276586991810067, -17.75512648362008 ], "z": [ 2.878109820237629, 2.373372926281779 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 4.447338718774149 ], "y": [ -17.276586991810067, -18.404771869239635 ], "z": [ 2.878109820237629, 3.1025158455431296 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 5.4243888274427965 ], "y": [ -17.276586991810067, -16.723969738915073 ], "z": [ 2.878109820237629, 3.809381662970315 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 7.536663942409769 ], "y": [ -17.75512648362008, -16.538619563471133 ], "z": [ 2.373372926281779, 2.0613135432581124 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 6.4858867322284555 ], "y": [ -17.75512648362008, -18.533502597734714 ], "z": [ 2.373372926281779, 1.188693388682874 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 7.141472278920311 ], "y": [ -17.75512648362008, -18.36140667031443 ], "z": [ 2.373372926281779, 3.141526352029738 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 8.879838771321644 ], "y": [ -16.538619563471133, -17.0070926530699 ], "z": [ 2.0613135432581124, 1.500158178586843 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 6.913566454608555 ], "y": [ -16.538619563471133, -15.700883742571754 ], "z": [ 2.0613135432581124, 1.087962860783268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 7.703335398877375 ], "y": [ -16.538619563471133, -15.96709079461748 ], "z": [ 2.0613135432581124, 2.9747950657705227 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 9.739042540523322 ], "y": [ -17.0070926530699, -15.879398386889584 ], "z": [ 1.500158178586843, 1.31799197696408 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 9.341313078102722 ], "y": [ -17.0070926530699, -17.706253656468846 ], "z": [ 1.500158178586843, 2.1973764769031643 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 8.721174348626654 ], "y": [ -17.0070926530699, -17.500760583015754 ], "z": [ 1.500158178586843, 0.5418818218327794 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.4243256316584656, 2.971062137616493 ], "y": [ -15.852327531560718, -15.260246485555093 ], "z": [ 2.3132319127021854, 1.697594649429607 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.447338718774149, 3.562555299041767 ], "y": [ -18.404771869239635, -18.174237447766984 ], "z": [ 3.1025158455431296, 3.417777928075968 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.4858867322284555, 5.93603403185406 ], "y": [ -18.533502597734714, -19.320253362073174 ], "z": [ 1.188693388682874, 1.3123066675158301 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 9.739042540523322, 10.610602235370095 ], "y": [ -15.879398386889584, -16.102964567175196 ], "z": [ 1.31799197696408, 0.9637225013510946 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 4.342995410058376 ], "y": [ -3.245639821141027, -4.428916027255673 ], "z": [ -1.37362362572875, -1.396273220894092 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 3.6513411897599326 ], "y": [ -3.245639821141027, -2.3255380371075307 ], "z": [ -1.37362362572875, -2.4584561007210395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 3.5423803632455018 ], "y": [ -3.245639821141027, -2.7681284895084564 ], "z": [ -1.37362362572875, -0.41616036169778625 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 4.126498442731844 ], "y": [ -4.428916027255673, -5.180454296193629 ], "z": [ -1.396273220894092, -2.753791895336952 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 5.6931151787176795 ], "y": [ -4.428916027255673, -3.9714881249176446 ], "z": [ -1.396273220894092, -1.3611689028370513 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 4.1509052912370175 ], "y": [ -4.428916027255673, -5.113942855256785 ], "z": [ -1.396273220894092, -0.5983171137701268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 4.250016685001658 ], "y": [ -5.180454296193629, -4.176529332805268 ], "z": [ -2.753791895336952, -3.905208375900025 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 5.114014472594497 ], "y": [ -5.180454296193629, -6.204095885248117 ], "z": [ -2.753791895336952, -2.8983982158153663 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 3.132931607851224 ], "y": [ -5.180454296193629, -5.627876943376505 ], "z": [ -2.753791895336952, -2.7627316611714594 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 3.298046197158006 ], "y": [ -4.176529332805268, -3.0070532722253502 ], "z": [ -3.905208375900025, -3.649247570296521 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 3.9061357968303754 ], "y": [ -4.176529332805268, -4.815542656683917 ], "z": [ -3.905208375900025, -5.135813473669448 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 5.275095253770038 ], "y": [ -4.176529332805268, -3.808843410924452 ], "z": [ -3.905208375900025, -3.9592453142146766 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 3.3870442548285054 ], "y": [ -3.0070532722253502, -2.015203681937656 ], "z": [ -3.649247570296521, -4.811413107548858 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 3.6513411897599326 ], "y": [ -3.0070532722253502, -2.3255380371075307 ], "z": [ -3.649247570296521, -2.4584561007210395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 2.2777254688201847 ], "y": [ -3.0070532722253502, -3.38117119847117 ], "z": [ -3.649247570296521, -3.570982708540395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 2.495838629348798 ], "y": [ -2.015203681937656, -0.9244632548408709 ], "z": [ -4.811413107548858, -4.5759054562717845 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 4.407808504863519 ], "y": [ -2.015203681937656, -1.6398390750244078 ], "z": [ -4.811413107548858, -4.890177044266867 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 3.1126184885617403 ], "y": [ -2.015203681937656, -2.5160098758477174 ], "z": [ -4.811413107548858, -5.73924803626744 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.6931151787176795, 5.784390382598928 ], "y": [ -3.9714881249176446, -3.506280047215519 ], "z": [ -1.3611689028370513, -0.5187133956456453 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.114014472594497, 5.006818908150823 ], "y": [ -6.204095885248117, -6.803818758841155 ], "z": [ -2.8983982158153663, -2.147421794179567 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.9061357968303754, 4.83195715951967 ], "y": [ -4.815542656683917, -5.593195159440233 ], "z": [ -5.135813473669448, -5.821938410794584 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.495838629348798, 2.582990241096269 ], "y": [ -0.9244632548408709, -0.3238508512565992 ], "z": [ -4.5759054562717845, -5.328446709114805 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 5.329187133895838 ], "y": [ -5.593195159440233, -4.870704998502978 ], "z": [ -5.821938410794584, -7.0777973041145055 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 4.2122388629982375 ], "y": [ -5.593195159440233, -6.855098930072356 ], "z": [ -5.821938410794584, -6.164512645991869 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 5.724886884762493 ], "y": [ -5.593195159440233, -5.7567260484560006 ], "z": [ -5.821938410794584, -5.23004328147226 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 4.075547144567604 ], "y": [ -4.870704998502978, -4.58082741581725 ], "z": [ -7.0777973041145055, -7.972010075359489 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 6.212870644604493 ], "y": [ -4.870704998502978, -5.705523275807865 ], "z": [ -7.0777973041145055, -7.823035316725588 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 5.794990104880636 ], "y": [ -4.870704998502978, -3.9377957250393565 ], "z": [ -7.0777973041145055, -6.840145617535461 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 3.310717872479275 ], "y": [ -4.58082741581725, -5.889649502127881 ], "z": [ -7.972010075359489, -8.197626854306273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 4.495757895226084 ], "y": [ -4.58082741581725, -4.044923593491571 ], "z": [ -7.972010075359489, -9.229058609922799 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 3.431152574440655 ], "y": [ -4.58082741581725, -3.8624002123259515 ], "z": [ -7.972010075359489, -7.465986369121752 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 3.0099055167558433 ], "y": [ -5.889649502127881, -6.529673660729845 ], "z": [ -8.197626854306273, -6.841411899717597 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 2.086833690943052 ], "y": [ -5.889649502127881, -5.616470869902409 ], "z": [ -8.197626854306273, -8.88206965329011 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 3.9193105574312717 ], "y": [ -5.889649502127881, -6.568506241148279 ], "z": [ -8.197626854306273, -8.79567992194284 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 2.2146891356164398 ], "y": [ -6.529673660729845, -7.820046093541282 ], "z": [ -6.841411899717597, -7.053272447738804 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 4.2122388629982375 ], "y": [ -6.529673660729845, -6.855098930072356 ], "z": [ -6.841411899717597, -6.164512645991869 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 2.422894263718906 ], "y": [ -6.529673660729845, -5.838697120784186 ], "z": [ -6.841411899717597, -6.237165914995541 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 1.929556146828481 ], "y": [ -7.820046093541282, -8.416952350266765 ], "z": [ -7.053272447738804, -5.787638970231665 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 2.8016620025926566 ], "y": [ -7.820046093541282, -8.512436312634552 ], "z": [ -7.053272447738804, -7.657524578837811 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 1.2813790946080754 ], "y": [ -7.820046093541282, -7.592282628135919 ], "z": [ -7.053272447738804, -7.56713057132887 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.212870644604493, 6.964522809939714 ], "y": [ -5.705523275807865, -5.869952274639815 ], "z": [ -7.823035316725588, -7.237831825032318 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.495757895226084, 4.982039170775689 ], "y": [ -4.044923593491571, -3.231333255527607 ], "z": [ -9.229058609922799, -9.037420192528138 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.086833690943052, 1.046863490220184 ], "y": [ -5.616470869902409, -4.990154715796644 ], "z": [ -8.88206965329011, -8.177596079112483 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.929556146828481, 1.4298529739146204 ], "y": [ -8.416952350266765, -9.22528768162956 ], "z": [ -5.787638970231665, -5.965233258006978 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, -0.20597664009523564 ], "y": [ -4.990154715796644, -4.938024944128733 ], "z": [ -8.177596079112483, -9.011868998951725 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, 0.8414877960416614 ], "y": [ -4.990154715796644, -5.67203003170339 ], "z": [ -8.177596079112483, -6.906487949251861 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, 1.3707270138672034 ], "y": [ -4.990154715796644, -3.9569017600971703 ], "z": [ -8.177596079112483, -7.953825577059064 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, -0.6849548447210543 ], "y": [ -4.938024944128733, -6.394654914347473 ], "z": [ -9.011868998951725, -9.239822694067463 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, 0.038307062765999156 ], "y": [ -4.938024944128733, -4.319162696522309 ], "z": [ -9.011868998951725, -10.250870302701873 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, -0.9913924222133286 ], "y": [ -4.938024944128733, -4.40675335502595 ], "z": [ -9.011868998951725, -8.460271283609043 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, -0.8798524747248084 ], "y": [ -6.394654914347473, -7.090527726959768 ], "z": [ -9.239822694067463, -7.889153992095742 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, -1.9226212522332116 ], "y": [ -6.394654914347473, -6.381025382003934 ], "z": [ -9.239822694067463, -9.953974008260785 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, 0.0673129752384698 ], "y": [ -6.394654914347473, -6.928600392572839 ], "z": [ -9.239822694067463, -9.820537213720648 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, 0.42881389771857537 ], "y": [ -7.090527726959768, -7.030055455882298 ], "z": [ -7.889153992095742, -7.098576715628343 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, -1.2466496147377981 ], "y": [ -7.090527726959768, -8.454924631817272 ], "z": [ -7.889153992095742, -8.103925834043304 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, -1.6672085761392532 ], "y": [ -7.090527726959768, -6.584084533642819 ], "z": [ -7.889153992095742, -7.329162330096764 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 0.22522448119490424 ], "y": [ -7.030055455882298, -7.670400784764845 ], "z": [ -7.098576715628343, -5.724559536238706 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 0.8414877960416614 ], "y": [ -7.030055455882298, -5.67203003170339 ], "z": [ -7.098576715628343, -6.906487949251861 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 1.2063066222945351 ], "y": [ -7.030055455882298, -7.570824230452708 ], "z": [ -7.098576715628343, -7.64022530621182 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, 1.4740185926894056 ], "y": [ -7.670400784764845, -7.720137586158515 ], "z": [ -5.724559536238706, -5.031323272268199 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, -0.16118999514392973 ], "y": [ -7.670400784764845, -8.681537197098164 ], "z": [ -5.724559536238706, -5.84794109130058 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, -0.485914944288643 ], "y": [ -7.670400784764845, -7.077784377118048 ], "z": [ -5.724559536238706, -5.149428672077571 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.038307062765999156, 0.34246243163845413 ], "y": [ -4.319162696522309, -3.404238718726907 ], "z": [ -10.250870302701873, -10.173168137731391 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.9226212522332116, -1.8735540957454768 ], "y": [ -6.381025382003934, -5.948402160589389 ], "z": [ -9.953974008260785, -10.817841800487761 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.2466496147377981, -2.066879108740731 ], "y": [ -8.454924631817272, -8.567832760325874 ], "z": [ -8.103925834043304, -8.6041621099014 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.4740185926894056, 1.4201167905380263 ], "y": [ -7.720137586158515, -8.114030389522794 ], "z": [ -5.031323272268199, -4.15035048314094 ] } ], "layout": { "scene": { "xaxis": { "showgrid": false, "showline": false, "showticklabels": false }, "yaxis": { "showgrid": false, "showline": false, "showticklabels": false }, "zaxis": { "showgrid": false, "showline": false, "showticklabels": false } }, "template": { "data": { "bar": [ { "error_x": { "color": "rgb(36,36,36)" }, "error_y": { "color": "rgb(36,36,36)" }, "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "baxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "line": { "color": "white", "width": 0.6 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "colorscale": { "diverging": [ [ 0, "rgb(103,0,31)" ], [ 0.1, "rgb(178,24,43)" ], [ 0.2, "rgb(214,96,77)" ], [ 0.3, "rgb(244,165,130)" ], [ 0.4, "rgb(253,219,199)" ], [ 0.5, "rgb(247,247,247)" ], [ 0.6, "rgb(209,229,240)" ], [ 0.7, "rgb(146,197,222)" ], [ 0.8, "rgb(67,147,195)" ], [ 0.9, "rgb(33,102,172)" ], [ 1, "rgb(5,48,97)" ] ], "sequential": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "sequentialminus": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ] }, "colorway": [ "#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF" ], "font": { "color": "rgb(36,36,36)" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "white", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": { "angularaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "radialaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "scene": { "xaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "zaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } }, "shapedefaults": { "fillcolor": "black", "line": { "width": 0 }, "opacity": 0.3 }, "ternary": { "aaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "baxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "caxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "glycan2 = glc.attach(glc, link=\"14bb\", inplace=False)\n", "\n", "# now build the galactose branch\n", "gal_branch2 = gal.attach(gal, link=\"14aa\", inplace=False)\n", "gal_branch2.attach(gal, link=\"13aa\")\n", "\n", "# now build the mannose branch\n", "man_branch2 = man.attach(man, \"14bb\", inplace=False)\n", "man_branch2.attach(glc, \"14ab\")\n", "\n", "# now attach both branches to the glucose-glucose\n", "glycan2.attach(gal_branch2, link=\"13ab\", other_residue=1)\n", "glycan2.attach(man_branch2, link=\"12bb\", at_residue=2, other_residue=1)\n", "\n", "# that's it! now we can visualize the glycan\n", "glycan2.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Using operator syntax \n", "\n", "Now for one final version using the operator based syntax. This one is the shortest but also the most cryptic. It requires us to first set the linkage and residues before we can use `+` or `*` operators. " ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "/Users/noahhk/anaconda3/envs/glyco2/lib/python3.11/site-packages/plotly/express/_core.py:1985: FutureWarning:\n", "\n", "When grouping with a length-1 list-like, you will need to pass a length-1 tuple to get_group in a future version of pandas. Pass `(name,)` instead of `name` to silence this warning.\n", "\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "customdata": [ [ "C1", 1, 1, "GLC", "A" ], [ "C2", 2, 1, "GLC", "A" ], [ "C3", 3, 1, "GLC", "A" ], [ "C4", 4, 1, "GLC", "A" ], [ "C5", 5, 1, "GLC", "A" ], [ "C6", 6, 1, "GLC", "A" ], [ "C1", 24, 2, "GLC", "A" ], [ "C2", 25, 2, "GLC", "A" ], [ "C3", 26, 2, "GLC", "A" ], [ "C4", 27, 2, "GLC", "A" ], [ "C5", 28, 2, "GLC", "A" ], [ "C6", 29, 2, "GLC", "A" ], [ "C1", 44, 3, "GAL", "A" ], [ "C2", 45, 3, "GAL", "A" ], [ "C3", 46, 3, "GAL", "A" ], [ "C4", 47, 3, "GAL", "A" ], [ "C5", 48, 3, "GAL", "A" ], [ "C6", 49, 3, "GAL", "A" ], [ "C1", 65, 4, "GAL", "A" ], [ "C2", 66, 4, "GAL", "A" ], [ "C3", 67, 4, "GAL", "A" ], [ "C4", 68, 4, "GAL", "A" ], [ "C5", 69, 4, "GAL", "A" ], [ "C6", 70, 4, "GAL", "A" ], [ "C1", 86, 5, "GAL", "A" ], [ "C2", 87, 5, "GAL", "A" ], [ "C3", 88, 5, "GAL", "A" ], [ "C4", 89, 5, "GAL", "A" ], [ "C5", 90, 5, "GAL", "A" ], [ "C6", 91, 5, "GAL", "A" ], [ "C1", 108, 6, "MAN", "A" ], [ "C2", 109, 6, "MAN", "A" ], [ "C3", 110, 6, "MAN", "A" ], [ "C4", 111, 6, "MAN", "A" ], [ "C5", 112, 6, "MAN", "A" ], [ "C6", 113, 6, "MAN", "A" ], [ "C1", 129, 7, "MAN", "A" ], [ "C2", 130, 7, "MAN", "A" ], [ "C3", 131, 7, "MAN", "A" ], [ "C4", 132, 7, "MAN", "A" ], [ "C5", 133, 7, "MAN", "A" ], [ "C6", 134, 7, "MAN", "A" ], [ "C1", 150, 8, "GLC", "A" ], [ "C2", 151, 8, "GLC", "A" ], [ "C3", 152, 8, "GLC", "A" ], [ "C4", 153, 8, "GLC", "A" ], [ "C5", 154, 8, "GLC", "A" ], [ "C6", 155, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=C
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "C", "marker": { "color": "darkslategray", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "C", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.567, -1.578, -1.179, 0.249, 1.189, 2.607, 0.28739188564117757, 1.480320584831757, 2.5518550249893526, 1.921370521263502, 0.6927362615491512, 0.023121121966325875, 4.237486750862174, 5.523963815710899, 6.104282643049588, 5.060830356326785, 3.788838332467793, 2.7209660646246197, 5.554273632628825, 4.866320224547966, 5.751157293389987, 6.073302144052585, 6.739153388942172, 7.009716398925601, 5.602796079668819, 4.649374390469093, 5.295886194255522, 6.660546453315634, 7.536663942409769, 8.879838771321644, 3.370180722730016, 4.342995410058376, 4.126498442731844, 4.250016685001658, 3.298046197158006, 3.3870442548285054, 4.83195715951967, 5.329187133895838, 4.075547144567604, 3.310717872479275, 3.0099055167558433, 2.2146891356164398, 1.046863490220184, -0.20597664009523564, -0.6849548447210543, -0.8798524747248084, 0.42881389771857537, 0.22522448119490424 ], "y": [ 1.572, 0.465, -0.806, -1.195, -0.024, -0.383, -3.6208883690602627, -4.38081146590108, -4.515665510620806, -5.208421548159997, -4.415224134145273, -5.133174433051773, -6.188240615228172, -6.745677888786661, -7.757267939027173, -8.832623734551516, -8.160416923057232, -9.222950114034496, -10.66905801919593, -11.96110913350714, -13.140014988518228, -13.01384827469256, -11.65932984087781, -11.500539508206224, -15.220517327694829, -16.345365490199157, -17.276586991810067, -17.75512648362008, -16.538619563471133, -17.0070926530699, -3.245639821141027, -4.428916027255673, -5.180454296193629, -4.176529332805268, -3.0070532722253502, -2.015203681937656, -5.593195159440233, -4.870704998502978, -4.58082741581725, -5.889649502127881, -6.529673660729845, -7.820046093541282, -4.990154715796644, -4.938024944128733, -6.394654914347473, -7.090527726959768, -7.030055455882298, -7.670400784764845 ], "z": [ -0.245, -0.554, 0.203, -0.192, 0.102, -0.345, 0.17534369512279074, -0.41274579257047955, 0.7251602592474138, 1.9372280638749304, 2.387308854685343, 3.560158773959561, 1.1610816637660615, 0.6082789343354923, 1.6130244037803165, 1.93063145402505, 2.455060947684393, 2.7180305992473626, 0.3929095272013252, 0.7516217186823146, 0.30897956916399116, -1.183120178009101, -1.4415267029557932, -2.938210466440504, 1.5255678557714771, 1.8366188063795275, 2.878109820237629, 2.373372926281779, 2.0613135432581124, 1.500158178586843, -1.37362362572875, -1.396273220894092, -2.753791895336952, -3.905208375900025, -3.649247570296521, -4.811413107548858, -5.821938410794584, -7.0777973041145055, -7.972010075359489, -8.197626854306273, -6.841411899717597, -7.053272447738804, -8.177596079112483, -9.011868998951725, -9.239822694067463, -7.889153992095742, -7.098576715628343, -5.724559536238706 ] }, { "customdata": [ [ "O1", 7, 1, "GLC", "A" ], [ "O2", 8, 1, "GLC", "A" ], [ "O3", 9, 1, "GLC", "A" ], [ "O4", 10, 1, "GLC", "A" ], [ "O5", 11, 1, "GLC", "A" ], [ "O6", 12, 1, "GLC", "A" ], [ "O2", 30, 2, "GLC", "A" ], [ "O3", 31, 2, "GLC", "A" ], [ "O4", 32, 2, "GLC", "A" ], [ "O5", 33, 2, "GLC", "A" ], [ "O6", 34, 2, "GLC", "A" ], [ "O2", 50, 3, "GAL", "A" ], [ "O3", 51, 3, "GAL", "A" ], [ "O4", 52, 3, "GAL", "A" ], [ "O5", 53, 3, "GAL", "A" ], [ "O6", 54, 3, "GAL", "A" ], [ "O2", 71, 4, "GAL", "A" ], [ "O3", 72, 4, "GAL", "A" ], [ "O4", 73, 4, "GAL", "A" ], [ "O5", 74, 4, "GAL", "A" ], [ "O6", 75, 4, "GAL", "A" ], [ "O2", 92, 5, "GAL", "A" ], [ "O3", 93, 5, "GAL", "A" ], [ "O4", 94, 5, "GAL", "A" ], [ "O5", 95, 5, "GAL", "A" ], [ "O6", 96, 5, "GAL", "A" ], [ "O2", 114, 6, "MAN", "A" ], [ "O3", 115, 6, "MAN", "A" ], [ "O4", 116, 6, "MAN", "A" ], [ "O5", 117, 6, "MAN", "A" ], [ "O6", 118, 6, "MAN", "A" ], [ "O2", 135, 7, "MAN", "A" ], [ "O3", 136, 7, "MAN", "A" ], [ "O4", 137, 7, "MAN", "A" ], [ "O5", 138, 7, "MAN", "A" ], [ "O6", 139, 7, "MAN", "A" ], [ "O2", 156, 8, "GLC", "A" ], [ "O3", 157, 8, "GLC", "A" ], [ "O4", 158, 8, "GLC", "A" ], [ "O5", 159, 8, "GLC", "A" ], [ "O6", 160, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=O
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "O", "marker": { "color": "red", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "O", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.6, -2.881, -2.075, 0.658, 0.744, 3.506, 2.0557165148821412, 3.6560021202222073, 2.871911843306936, -0.24841655015355635, -1.05368002484943, 6.4501145589467095, 7.268059606190845, 4.757062466408645, 3.2730243177675633, 1.5763239118701482, 4.613285882466256, 5.063898568748781, 4.866732557493377, 5.889503553988567, 7.734357007618706, 3.4243256316584656, 4.447338718774149, 6.4858867322284555, 6.913566454608555, 9.739042540523322, 5.6931151787176795, 5.114014472594497, 3.9061357968303754, 3.6513411897599326, 2.495838629348798, 6.212870644604493, 4.495757895226084, 2.086833690943052, 4.2122388629982375, 1.929556146828481, 0.038307062765999156, -1.9226212522332116, -1.2466496147377981, 0.8414877960416614, 1.4740185926894056 ], "y": [ 1.871, 0.879, -1.866, -2.338, 1.133, 0.661, -3.682652200920845, -5.289853972410993, -5.2639965018699755, -4.314104692702984, -4.3351816382697255, -5.7207385604272005, -8.371315322648217, -9.568812006158048, -7.235385181769363, -8.609828869733189, -12.033710588156481, -14.370606262810867, -13.10459502514153, -10.592083898242059, -10.289543579286654, -15.852327531560718, -18.404771869239635, -18.533502597734714, -15.700883742571754, -15.879398386889584, -3.9714881249176446, -6.204095885248117, -4.815542656683917, -2.3255380371075307, -0.9244632548408709, -5.705523275807865, -4.044923593491571, -5.616470869902409, -6.855098930072356, -8.416952350266765, -4.319162696522309, -6.381025382003934, -8.454924631817272, -5.67203003170339, -7.720137586158515 ], "z": [ 1.151, -0.139, -0.137, 0.562, -0.608, 0.035, -1.4913524081315273, 0.2523945480121395, 3.0028868364696355, 1.3269380024925652, 4.056388347536358, 0.3547361315445239, 1.0546687906359133, 0.7450544224477391, 1.4982306989307586, 3.315514224063996, 2.134268649266833, 0.5467032765205987, -1.941932315545984, -1.0146759531615976, -3.1651352301246685, 2.3132319127021854, 3.1025158455431296, 1.188693388682874, 1.087962860783268, 1.31799197696408, -1.3611689028370513, -2.8983982158153663, -5.135813473669448, -2.4584561007210395, -4.5759054562717845, -7.823035316725588, -9.229058609922799, -8.88206965329011, -6.164512645991869, -5.787638970231665, -10.250870302701873, -9.953974008260785, -8.103925834043304, -6.906487949251861, -5.031323272268199 ] }, { "customdata": [ [ "H1", 13, 1, "GLC", "A" ], [ "H2", 14, 1, "GLC", "A" ], [ "H3", 15, 1, "GLC", "A" ], [ "H4", 16, 1, "GLC", "A" ], [ "H5", 17, 1, "GLC", "A" ], [ "H61", 18, 1, "GLC", "A" ], [ "H62", 19, 1, "GLC", "A" ], [ "HO1", 20, 1, "GLC", "A" ], [ "HO2", 21, 1, "GLC", "A" ], [ "HO3", 22, 1, "GLC", "A" ], [ "HO6", 23, 1, "GLC", "A" ], [ "H1", 35, 2, "GLC", "A" ], [ "H2", 36, 2, "GLC", "A" ], [ "H3", 37, 2, "GLC", "A" ], [ "H4", 38, 2, "GLC", "A" ], [ "H5", 39, 2, "GLC", "A" ], [ "H61", 40, 2, "GLC", "A" ], [ "H62", 41, 2, "GLC", "A" ], [ "HO4", 42, 2, "GLC", "A" ], [ "HO6", 43, 2, "GLC", "A" ], [ "H1", 55, 3, "GAL", "A" ], [ "H2", 56, 3, "GAL", "A" ], [ "H3", 57, 3, "GAL", "A" ], [ "H4", 58, 3, "GAL", "A" ], [ "H5", 59, 3, "GAL", "A" ], [ "H61", 60, 3, "GAL", "A" ], [ "H62", 61, 3, "GAL", "A" ], [ "HO2", 62, 3, "GAL", "A" ], [ "HO3", 63, 3, "GAL", "A" ], [ "HO6", 64, 3, "GAL", "A" ], [ "H1", 76, 4, "GAL", "A" ], [ "H2", 77, 4, "GAL", "A" ], [ "H3", 78, 4, "GAL", "A" ], [ "H4", 79, 4, "GAL", "A" ], [ "H5", 80, 4, "GAL", "A" ], [ "H61", 81, 4, "GAL", "A" ], [ "H62", 82, 4, "GAL", "A" ], [ "HO2", 83, 4, "GAL", "A" ], [ "HO4", 84, 4, "GAL", "A" ], [ "HO6", 85, 4, "GAL", "A" ], [ "H1", 97, 5, "GAL", "A" ], [ "H2", 98, 5, "GAL", "A" ], [ "H3", 99, 5, "GAL", "A" ], [ "H4", 100, 5, "GAL", "A" ], [ "H5", 101, 5, "GAL", "A" ], [ "H61", 102, 5, "GAL", "A" ], [ "H62", 103, 5, "GAL", "A" ], [ "HO2", 104, 5, "GAL", "A" ], [ "HO3", 105, 5, "GAL", "A" ], [ "HO4", 106, 5, "GAL", "A" ], [ "HO6", 107, 5, "GAL", "A" ], [ "H1", 119, 6, "MAN", "A" ], [ "H2", 120, 6, "MAN", "A" ], [ "H3", 121, 6, "MAN", "A" ], [ "H4", 122, 6, "MAN", "A" ], [ "H5", 123, 6, "MAN", "A" ], [ "H61", 124, 6, "MAN", "A" ], [ "H62", 125, 6, "MAN", "A" ], [ "HO2", 126, 6, "MAN", "A" ], [ "HO3", 127, 6, "MAN", "A" ], [ "HO6", 128, 6, "MAN", "A" ], [ "H1", 140, 7, "MAN", "A" ], [ "H2", 141, 7, "MAN", "A" ], [ "H3", 142, 7, "MAN", "A" ], [ "H4", 143, 7, "MAN", "A" ], [ "H5", 144, 7, "MAN", "A" ], [ "H61", 145, 7, "MAN", "A" ], [ "H62", 146, 7, "MAN", "A" ], [ "HO2", 147, 7, "MAN", "A" ], [ "HO3", 148, 7, "MAN", "A" ], [ "HO6", 149, 7, "MAN", "A" ], [ "H1", 161, 8, "GLC", "A" ], [ "H2", 162, 8, "GLC", "A" ], [ "H3", 163, 8, "GLC", "A" ], [ "H4", 164, 8, "GLC", "A" ], [ "H5", 165, 8, "GLC", "A" ], [ "H61", 166, 8, "GLC", "A" ], [ "H62", 167, 8, "GLC", "A" ], [ "HO2", 168, 8, "GLC", "A" ], [ "HO3", 169, 8, "GLC", "A" ], [ "HO4", 170, 8, "GLC", "A" ], [ "HO6", 171, 8, "GLC", "A" ] ], "hovertemplate": "atom_element=H
x=%{x}
y=%{y}
z=%{z}
__marker_size=%{marker.size}
atom_id=%{customdata[0]}
atom_serial=%{customdata[1]}
residue_serial=%{customdata[2]}
residue_name=%{customdata[3]}
chain_id=%{customdata[4]}", "legendgroup": "H", "marker": { "color": "lightgray", "opacity": 1, "size": [ 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5 ], "sizemode": "area", "sizeref": 0.0125, "symbol": "circle" }, "mode": "markers", "name": "H", "scene": "scene", "showlegend": true, "type": "scatter3d", "x": [ -0.822, -1.583, -1.223, 0.281, 1.187, 2.913, 2.627, 0.017, -3.197, -3, 4.425, -0.4416295953503676, 1.1919755460235848, 2.896806132278614, 1.6207417462584381, 0.9993730295362181, 0.7522731954762831, -0.3628865421639118, 3.6796362109456524, -1.5254480198313956, 4.45947410918213, 5.289448765979703, 6.372724850492382, 5.453656357902075, 4.012903730923322, 3.120192819292222, 2.4326195125580146, 6.1386606975519245, 7.969060484031795, 0.8573331964579283, 6.497273049932705, 3.915869335389768, 6.6767494043434965, 6.752111311166291, 7.680601729368044, 7.597109525329493, 6.063279431367136, 4.059169802496751, 4.388930815680088, 7.9409160854812875, 5.755962247218171, 4.491937561016933, 5.4243888274427965, 7.141472278920311, 7.703335398877375, 9.341313078102722, 8.721174348626654, 2.971062137616493, 3.562555299041767, 5.93603403185406, 10.610602235370095, 3.5423803632455018, 4.1509052912370175, 3.132931607851224, 5.275095253770038, 2.2777254688201847, 4.407808504863519, 3.1126184885617403, 5.784390382598928, 5.006818908150823, 2.582990241096269, 5.724886884762493, 5.794990104880636, 3.431152574440655, 3.9193105574312717, 2.422894263718906, 2.8016620025926566, 1.2813790946080754, 6.964522809939714, 4.982039170775689, 1.4298529739146204, 1.3707270138672034, -0.9913924222133286, 0.0673129752384698, -1.6672085761392532, 1.2063066222945351, -0.16118999514392973, -0.485914944288643, 0.34246243163845413, -1.8735540957454768, -2.066879108740731, 1.4201167905380263 ], "y": [ 2.466, 0.264, -0.619, -1.429, 0.184, -1.315, -0.503, 2.566, 1.682, -1.684, 0.501, -3.5957016204844336, -5.388081243451282, -3.521925079396222, -6.220381288812529, -3.4159166774238843, -5.2917608967610965, -6.0954392445781584, -5.749565157600491, -4.729868650877535, -5.62775641845167, -7.289668686159617, -7.2276474006764335, -9.508976488460096, -7.632381632327901, -9.980787994570843, -9.689360576626795, -5.054095831051121, -7.746525027949044, -9.22646079261854, -10.594351436161782, -12.014988732506897, -13.120206039521296, -13.814333154915182, -11.607017487840857, -12.347118069098148, -11.463257089612863, -11.3165810551099, -13.937777708142, -10.123949627724773, -14.619546879882066, -16.929185109861237, -16.723969738915073, -18.36140667031443, -15.96709079461748, -17.706253656468846, -17.500760583015754, -15.260246485555093, -18.174237447766984, -19.320253362073174, -16.102964567175196, -2.7681284895084564, -5.113942855256785, -5.627876943376505, -3.808843410924452, -3.38117119847117, -1.6398390750244078, -2.5160098758477174, -3.506280047215519, -6.803818758841155, -0.3238508512565992, -5.7567260484560006, -3.9377957250393565, -3.8624002123259515, -6.568506241148279, -5.838697120784186, -8.512436312634552, -7.592282628135919, -5.869952274639815, -3.231333255527607, -9.22528768162956, -3.9569017600971703, -4.40675335502595, -6.928600392572839, -6.584084533642819, -7.570824230452708, -8.681537197098164, -7.077784377118048, -3.404238718726907, -5.948402160589389, -8.567832760325874, -8.114030389522794 ], "z": [ -0.815, -1.626, 1.276, -1.257, 1.173, 0.129, -1.428, 1.42, -0.576, 0.08, -0.218, -0.6260918905290271, -0.7041667123716273, 1.0110320643095607, 1.6623374984904256, 2.699826853302184, 4.353962016094727, 3.224400653088586, 2.784791842270555, 4.801926489410682, 2.087985956511503, -0.32758650299542413, 2.52768656360782, 2.690341717722105, 3.3823399935812337, 3.3919725442112836, 1.7764927368670225, -0.27264012206433663, 0.8231242875356707, 3.5102510280578465, 0.9653984051857829, 0.18811586698458171, 0.8852198399541047, -1.4786993910423796, -0.8939763034224639, -3.293417526184007, -3.4767669515955597, 2.471459400551062, -1.8231589503990726, -4.095198126147665, 2.4409623805387883, 0.9079442110737146, 3.809381662970315, 3.141526352029738, 2.9747950657705227, 2.1973764769031643, 0.5418818218327794, 1.697594649429607, 3.417777928075968, 1.3123066675158301, 0.9637225013510946, -0.41616036169778625, -0.5983171137701268, -2.7627316611714594, -3.9592453142146766, -3.570982708540395, -4.890177044266867, -5.73924803626744, -0.5187133956456453, -2.147421794179567, -5.328446709114805, -5.23004328147226, -6.840145617535461, -7.465986369121752, -8.79567992194284, -6.237165914995541, -7.657524578837811, -7.56713057132887, -7.237831825032318, -9.037420192528138, -5.965233258006978, -7.953825577059064, -8.460271283609043, -9.820537213720648, -7.329162330096764, -7.64022530621182, -5.84794109130058, -5.149428672077571, -10.173168137731391, -10.817841800487761, -8.6041621099014, -4.15035048314094 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -1.578 ], "y": [ 1.572, 0.465 ], "z": [ -0.245, -0.554 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -0.6 ], "y": [ 1.572, 1.871 ], "z": [ -0.245, 1.151 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, 0.744 ], "y": [ 1.572, 1.133 ], "z": [ -0.245, -0.608 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.567, -0.822 ], "y": [ 1.572, 2.466 ], "z": [ -0.245, -0.815 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -1.179 ], "y": [ 0.465, -0.806 ], "z": [ -0.554, 0.203 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -2.881 ], "y": [ 0.465, 0.879 ], "z": [ -0.554, -0.139 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.578, -1.583 ], "y": [ 0.465, 0.264 ], "z": [ -0.554, -1.626 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, 0.249 ], "y": [ -0.806, -1.195 ], "z": [ 0.203, -0.192 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, -2.075 ], "y": [ -0.806, -1.866 ], "z": [ 0.203, -0.137 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.179, -1.223 ], "y": [ -0.806, -0.619 ], "z": [ 0.203, 1.276 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 1.189 ], "y": [ -1.195, -0.024 ], "z": [ -0.192, 0.102 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 0.658 ], "y": [ -1.195, -2.338 ], "z": [ -0.192, 0.562 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.249, 0.281 ], "y": [ -1.195, -1.429 ], "z": [ -0.192, -1.257 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 2.607 ], "y": [ -0.024, -0.383 ], "z": [ 0.102, -0.345 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 0.744 ], "y": [ -0.024, 1.133 ], "z": [ 0.102, -0.608 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.189, 1.187 ], "y": [ -0.024, 0.184 ], "z": [ 0.102, 1.173 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 3.506 ], "y": [ -0.383, 0.661 ], "z": [ -0.345, 0.035 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 2.913 ], "y": [ -0.383, -1.315 ], "z": [ -0.345, 0.129 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.607, 2.627 ], "y": [ -0.383, -0.503 ], "z": [ -0.345, -1.428 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6, 0.017 ], "y": [ 1.871, 2.566 ], "z": [ 1.151, 1.42 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.881, -3.197 ], "y": [ 0.879, 1.682 ], "z": [ -0.139, -0.576 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -2.075, -3 ], "y": [ -1.866, -1.684 ], "z": [ -0.137, 0.08 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.658, 0.28739188564117757 ], "y": [ -2.338, -3.6208883690602627 ], "z": [ 0.562, 0.17534369512279074 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.506, 4.425 ], "y": [ 0.661, 0.501 ], "z": [ 0.035, -0.218 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, 1.480320584831757 ], "y": [ -3.6208883690602627, -4.38081146590108 ], "z": [ 0.17534369512279074, -0.41274579257047955 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, -0.24841655015355635 ], "y": [ -3.6208883690602627, -4.314104692702984 ], "z": [ 0.17534369512279074, 1.3269380024925652 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.28739188564117757, -0.4416295953503676 ], "y": [ -3.6208883690602627, -3.5957016204844336 ], "z": [ 0.17534369512279074, -0.6260918905290271 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 2.5518550249893526 ], "y": [ -4.38081146590108, -4.515665510620806 ], "z": [ -0.41274579257047955, 0.7251602592474138 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 2.0557165148821412 ], "y": [ -4.38081146590108, -3.682652200920845 ], "z": [ -0.41274579257047955, -1.4913524081315273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.480320584831757, 1.1919755460235848 ], "y": [ -4.38081146590108, -5.388081243451282 ], "z": [ -0.41274579257047955, -0.7041667123716273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 1.921370521263502 ], "y": [ -4.515665510620806, -5.208421548159997 ], "z": [ 0.7251602592474138, 1.9372280638749304 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 3.6560021202222073 ], "y": [ -4.515665510620806, -5.289853972410993 ], "z": [ 0.7251602592474138, 0.2523945480121395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.5518550249893526, 2.896806132278614 ], "y": [ -4.515665510620806, -3.521925079396222 ], "z": [ 0.7251602592474138, 1.0110320643095607 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 0.6927362615491512 ], "y": [ -5.208421548159997, -4.415224134145273 ], "z": [ 1.9372280638749304, 2.387308854685343 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 2.871911843306936 ], "y": [ -5.208421548159997, -5.2639965018699755 ], "z": [ 1.9372280638749304, 3.0028868364696355 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.921370521263502, 1.6207417462584381 ], "y": [ -5.208421548159997, -6.220381288812529 ], "z": [ 1.9372280638749304, 1.6623374984904256 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, 0.023121121966325875 ], "y": [ -4.415224134145273, -5.133174433051773 ], "z": [ 2.387308854685343, 3.560158773959561 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, -0.24841655015355635 ], "y": [ -4.415224134145273, -4.314104692702984 ], "z": [ 2.387308854685343, 1.3269380024925652 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.6927362615491512, 0.9993730295362181 ], "y": [ -4.415224134145273, -3.4159166774238843 ], "z": [ 2.387308854685343, 2.699826853302184 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, -1.05368002484943 ], "y": [ -5.133174433051773, -4.3351816382697255 ], "z": [ 3.560158773959561, 4.056388347536358 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, 0.7522731954762831 ], "y": [ -5.133174433051773, -5.2917608967610965 ], "z": [ 3.560158773959561, 4.353962016094727 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.023121121966325875, -0.3628865421639118 ], "y": [ -5.133174433051773, -6.0954392445781584 ], "z": [ 3.560158773959561, 3.224400653088586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.0557165148821412, 3.370180722730016 ], "y": [ -3.682652200920845, -3.245639821141027 ], "z": [ -1.4913524081315273, -1.37362362572875 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.6560021202222073, 4.237486750862174 ], "y": [ -5.289853972410993, -6.188240615228172 ], "z": [ 0.2523945480121395, 1.1610816637660615 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.871911843306936, 3.6796362109456524 ], "y": [ -5.2639965018699755, -5.749565157600491 ], "z": [ 3.0028868364696355, 2.784791842270555 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.05368002484943, -1.5254480198313956 ], "y": [ -4.3351816382697255, -4.729868650877535 ], "z": [ 4.056388347536358, 4.801926489410682 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 5.523963815710899 ], "y": [ -6.188240615228172, -6.745677888786661 ], "z": [ 1.1610816637660615, 0.6082789343354923 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 3.2730243177675633 ], "y": [ -6.188240615228172, -7.235385181769363 ], "z": [ 1.1610816637660615, 1.4982306989307586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.237486750862174, 4.45947410918213 ], "y": [ -6.188240615228172, -5.62775641845167 ], "z": [ 1.1610816637660615, 2.087985956511503 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 6.104282643049588 ], "y": [ -6.745677888786661, -7.757267939027173 ], "z": [ 0.6082789343354923, 1.6130244037803165 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 6.4501145589467095 ], "y": [ -6.745677888786661, -5.7207385604272005 ], "z": [ 0.6082789343354923, 0.3547361315445239 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.523963815710899, 5.289448765979703 ], "y": [ -6.745677888786661, -7.289668686159617 ], "z": [ 0.6082789343354923, -0.32758650299542413 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 5.060830356326785 ], "y": [ -7.757267939027173, -8.832623734551516 ], "z": [ 1.6130244037803165, 1.93063145402505 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 7.268059606190845 ], "y": [ -7.757267939027173, -8.371315322648217 ], "z": [ 1.6130244037803165, 1.0546687906359133 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.104282643049588, 6.372724850492382 ], "y": [ -7.757267939027173, -7.2276474006764335 ], "z": [ 1.6130244037803165, 2.52768656360782 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 3.788838332467793 ], "y": [ -8.832623734551516, -8.160416923057232 ], "z": [ 1.93063145402505, 2.455060947684393 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 4.757062466408645 ], "y": [ -8.832623734551516, -9.568812006158048 ], "z": [ 1.93063145402505, 0.7450544224477391 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.060830356326785, 5.453656357902075 ], "y": [ -8.832623734551516, -9.508976488460096 ], "z": [ 1.93063145402505, 2.690341717722105 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 2.7209660646246197 ], "y": [ -8.160416923057232, -9.222950114034496 ], "z": [ 2.455060947684393, 2.7180305992473626 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 3.2730243177675633 ], "y": [ -8.160416923057232, -7.235385181769363 ], "z": [ 2.455060947684393, 1.4982306989307586 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.788838332467793, 4.012903730923322 ], "y": [ -8.160416923057232, -7.632381632327901 ], "z": [ 2.455060947684393, 3.3823399935812337 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 1.5763239118701482 ], "y": [ -9.222950114034496, -8.609828869733189 ], "z": [ 2.7180305992473626, 3.315514224063996 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 3.120192819292222 ], "y": [ -9.222950114034496, -9.980787994570843 ], "z": [ 2.7180305992473626, 3.3919725442112836 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.7209660646246197, 2.4326195125580146 ], "y": [ -9.222950114034496, -9.689360576626795 ], "z": [ 2.7180305992473626, 1.7764927368670225 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.4501145589467095, 6.1386606975519245 ], "y": [ -5.7207385604272005, -5.054095831051121 ], "z": [ 0.3547361315445239, -0.27264012206433663 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.268059606190845, 7.969060484031795 ], "y": [ -8.371315322648217, -7.746525027949044 ], "z": [ 1.0546687906359133, 0.8231242875356707 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.757062466408645, 5.554273632628825 ], "y": [ -9.568812006158048, -10.66905801919593 ], "z": [ 0.7450544224477391, 0.3929095272013252 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.5763239118701482, 0.8573331964579283 ], "y": [ -8.609828869733189, -9.22646079261854 ], "z": [ 3.315514224063996, 3.5102510280578465 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 4.866320224547966 ], "y": [ -10.66905801919593, -11.96110913350714 ], "z": [ 0.3929095272013252, 0.7516217186823146 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 5.889503553988567 ], "y": [ -10.66905801919593, -10.592083898242059 ], "z": [ 0.3929095272013252, -1.0146759531615976 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.554273632628825, 6.497273049932705 ], "y": [ -10.66905801919593, -10.594351436161782 ], "z": [ 0.3929095272013252, 0.9653984051857829 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 5.751157293389987 ], "y": [ -11.96110913350714, -13.140014988518228 ], "z": [ 0.7516217186823146, 0.30897956916399116 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 4.613285882466256 ], "y": [ -11.96110913350714, -12.033710588156481 ], "z": [ 0.7516217186823146, 2.134268649266833 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866320224547966, 3.915869335389768 ], "y": [ -11.96110913350714, -12.014988732506897 ], "z": [ 0.7516217186823146, 0.18811586698458171 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 6.073302144052585 ], "y": [ -13.140014988518228, -13.01384827469256 ], "z": [ 0.30897956916399116, -1.183120178009101 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 5.063898568748781 ], "y": [ -13.140014988518228, -14.370606262810867 ], "z": [ 0.30897956916399116, 0.5467032765205987 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.751157293389987, 6.6767494043434965 ], "y": [ -13.140014988518228, -13.120206039521296 ], "z": [ 0.30897956916399116, 0.8852198399541047 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 6.739153388942172 ], "y": [ -13.01384827469256, -11.65932984087781 ], "z": [ -1.183120178009101, -1.4415267029557932 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 4.866732557493377 ], "y": [ -13.01384827469256, -13.10459502514153 ], "z": [ -1.183120178009101, -1.941932315545984 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.073302144052585, 6.752111311166291 ], "y": [ -13.01384827469256, -13.814333154915182 ], "z": [ -1.183120178009101, -1.4786993910423796 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 7.009716398925601 ], "y": [ -11.65932984087781, -11.500539508206224 ], "z": [ -1.4415267029557932, -2.938210466440504 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 5.889503553988567 ], "y": [ -11.65932984087781, -10.592083898242059 ], "z": [ -1.4415267029557932, -1.0146759531615976 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.739153388942172, 7.680601729368044 ], "y": [ -11.65932984087781, -11.607017487840857 ], "z": [ -1.4415267029557932, -0.8939763034224639 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 7.734357007618706 ], "y": [ -11.500539508206224, -10.289543579286654 ], "z": [ -2.938210466440504, -3.1651352301246685 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 7.597109525329493 ], "y": [ -11.500539508206224, -12.347118069098148 ], "z": [ -2.938210466440504, -3.293417526184007 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.009716398925601, 6.063279431367136 ], "y": [ -11.500539508206224, -11.463257089612863 ], "z": [ -2.938210466440504, -3.4767669515955597 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.613285882466256, 4.059169802496751 ], "y": [ -12.033710588156481, -11.3165810551099 ], "z": [ 2.134268649266833, 2.471459400551062 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.063898568748781, 5.602796079668819 ], "y": [ -14.370606262810867, -15.220517327694829 ], "z": [ 0.5467032765205987, 1.5255678557714771 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.866732557493377, 4.388930815680088 ], "y": [ -13.10459502514153, -13.937777708142 ], "z": [ -1.941932315545984, -1.8231589503990726 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.734357007618706, 7.9409160854812875 ], "y": [ -10.289543579286654, -10.123949627724773 ], "z": [ -3.1651352301246685, -4.095198126147665 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 4.649374390469093 ], "y": [ -15.220517327694829, -16.345365490199157 ], "z": [ 1.5255678557714771, 1.8366188063795275 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 6.913566454608555 ], "y": [ -15.220517327694829, -15.700883742571754 ], "z": [ 1.5255678557714771, 1.087962860783268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.602796079668819, 5.755962247218171 ], "y": [ -15.220517327694829, -14.619546879882066 ], "z": [ 1.5255678557714771, 2.4409623805387883 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 5.295886194255522 ], "y": [ -16.345365490199157, -17.276586991810067 ], "z": [ 1.8366188063795275, 2.878109820237629 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 3.4243256316584656 ], "y": [ -16.345365490199157, -15.852327531560718 ], "z": [ 1.8366188063795275, 2.3132319127021854 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.649374390469093, 4.491937561016933 ], "y": [ -16.345365490199157, -16.929185109861237 ], "z": [ 1.8366188063795275, 0.9079442110737146 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 6.660546453315634 ], "y": [ -17.276586991810067, -17.75512648362008 ], "z": [ 2.878109820237629, 2.373372926281779 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 4.447338718774149 ], "y": [ -17.276586991810067, -18.404771869239635 ], "z": [ 2.878109820237629, 3.1025158455431296 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.295886194255522, 5.4243888274427965 ], "y": [ -17.276586991810067, -16.723969738915073 ], "z": [ 2.878109820237629, 3.809381662970315 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 7.536663942409769 ], "y": [ -17.75512648362008, -16.538619563471133 ], "z": [ 2.373372926281779, 2.0613135432581124 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 6.4858867322284555 ], "y": [ -17.75512648362008, -18.533502597734714 ], "z": [ 2.373372926281779, 1.188693388682874 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.660546453315634, 7.141472278920311 ], "y": [ -17.75512648362008, -18.36140667031443 ], "z": [ 2.373372926281779, 3.141526352029738 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 8.879838771321644 ], "y": [ -16.538619563471133, -17.0070926530699 ], "z": [ 2.0613135432581124, 1.500158178586843 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 6.913566454608555 ], "y": [ -16.538619563471133, -15.700883742571754 ], "z": [ 2.0613135432581124, 1.087962860783268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 7.536663942409769, 7.703335398877375 ], "y": [ -16.538619563471133, -15.96709079461748 ], "z": [ 2.0613135432581124, 2.9747950657705227 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 9.739042540523322 ], "y": [ -17.0070926530699, -15.879398386889584 ], "z": [ 1.500158178586843, 1.31799197696408 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 9.341313078102722 ], "y": [ -17.0070926530699, -17.706253656468846 ], "z": [ 1.500158178586843, 2.1973764769031643 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 8.879838771321644, 8.721174348626654 ], "y": [ -17.0070926530699, -17.500760583015754 ], "z": [ 1.500158178586843, 0.5418818218327794 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.4243256316584656, 2.971062137616493 ], "y": [ -15.852327531560718, -15.260246485555093 ], "z": [ 2.3132319127021854, 1.697594649429607 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.447338718774149, 3.562555299041767 ], "y": [ -18.404771869239635, -18.174237447766984 ], "z": [ 3.1025158455431296, 3.417777928075968 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.4858867322284555, 5.93603403185406 ], "y": [ -18.533502597734714, -19.320253362073174 ], "z": [ 1.188693388682874, 1.3123066675158301 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 9.739042540523322, 10.610602235370095 ], "y": [ -15.879398386889584, -16.102964567175196 ], "z": [ 1.31799197696408, 0.9637225013510946 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 4.342995410058376 ], "y": [ -3.245639821141027, -4.428916027255673 ], "z": [ -1.37362362572875, -1.396273220894092 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 3.6513411897599326 ], "y": [ -3.245639821141027, -2.3255380371075307 ], "z": [ -1.37362362572875, -2.4584561007210395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.370180722730016, 3.5423803632455018 ], "y": [ -3.245639821141027, -2.7681284895084564 ], "z": [ -1.37362362572875, -0.41616036169778625 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 4.126498442731844 ], "y": [ -4.428916027255673, -5.180454296193629 ], "z": [ -1.396273220894092, -2.753791895336952 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 5.6931151787176795 ], "y": [ -4.428916027255673, -3.9714881249176446 ], "z": [ -1.396273220894092, -1.3611689028370513 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.342995410058376, 4.1509052912370175 ], "y": [ -4.428916027255673, -5.113942855256785 ], "z": [ -1.396273220894092, -0.5983171137701268 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 4.250016685001658 ], "y": [ -5.180454296193629, -4.176529332805268 ], "z": [ -2.753791895336952, -3.905208375900025 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 5.114014472594497 ], "y": [ -5.180454296193629, -6.204095885248117 ], "z": [ -2.753791895336952, -2.8983982158153663 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.126498442731844, 3.132931607851224 ], "y": [ -5.180454296193629, -5.627876943376505 ], "z": [ -2.753791895336952, -2.7627316611714594 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 3.298046197158006 ], "y": [ -4.176529332805268, -3.0070532722253502 ], "z": [ -3.905208375900025, -3.649247570296521 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 3.9061357968303754 ], "y": [ -4.176529332805268, -4.815542656683917 ], "z": [ -3.905208375900025, -5.135813473669448 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.250016685001658, 5.275095253770038 ], "y": [ -4.176529332805268, -3.808843410924452 ], "z": [ -3.905208375900025, -3.9592453142146766 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 3.3870442548285054 ], "y": [ -3.0070532722253502, -2.015203681937656 ], "z": [ -3.649247570296521, -4.811413107548858 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 3.6513411897599326 ], "y": [ -3.0070532722253502, -2.3255380371075307 ], "z": [ -3.649247570296521, -2.4584561007210395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.298046197158006, 2.2777254688201847 ], "y": [ -3.0070532722253502, -3.38117119847117 ], "z": [ -3.649247570296521, -3.570982708540395 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 2.495838629348798 ], "y": [ -2.015203681937656, -0.9244632548408709 ], "z": [ -4.811413107548858, -4.5759054562717845 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 4.407808504863519 ], "y": [ -2.015203681937656, -1.6398390750244078 ], "z": [ -4.811413107548858, -4.890177044266867 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.3870442548285054, 3.1126184885617403 ], "y": [ -2.015203681937656, -2.5160098758477174 ], "z": [ -4.811413107548858, -5.73924803626744 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.6931151787176795, 5.784390382598928 ], "y": [ -3.9714881249176446, -3.506280047215519 ], "z": [ -1.3611689028370513, -0.5187133956456453 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.114014472594497, 5.006818908150823 ], "y": [ -6.204095885248117, -6.803818758841155 ], "z": [ -2.8983982158153663, -2.147421794179567 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.9061357968303754, 4.83195715951967 ], "y": [ -4.815542656683917, -5.593195159440233 ], "z": [ -5.135813473669448, -5.821938410794584 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.495838629348798, 2.582990241096269 ], "y": [ -0.9244632548408709, -0.3238508512565992 ], "z": [ -4.5759054562717845, -5.328446709114805 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 5.329187133895838 ], "y": [ -5.593195159440233, -4.870704998502978 ], "z": [ -5.821938410794584, -7.0777973041145055 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 4.2122388629982375 ], "y": [ -5.593195159440233, -6.855098930072356 ], "z": [ -5.821938410794584, -6.164512645991869 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.83195715951967, 5.724886884762493 ], "y": [ -5.593195159440233, -5.7567260484560006 ], "z": [ -5.821938410794584, -5.23004328147226 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 4.075547144567604 ], "y": [ -4.870704998502978, -4.58082741581725 ], "z": [ -7.0777973041145055, -7.972010075359489 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 6.212870644604493 ], "y": [ -4.870704998502978, -5.705523275807865 ], "z": [ -7.0777973041145055, -7.823035316725588 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 5.329187133895838, 5.794990104880636 ], "y": [ -4.870704998502978, -3.9377957250393565 ], "z": [ -7.0777973041145055, -6.840145617535461 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 3.310717872479275 ], "y": [ -4.58082741581725, -5.889649502127881 ], "z": [ -7.972010075359489, -8.197626854306273 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 4.495757895226084 ], "y": [ -4.58082741581725, -4.044923593491571 ], "z": [ -7.972010075359489, -9.229058609922799 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.075547144567604, 3.431152574440655 ], "y": [ -4.58082741581725, -3.8624002123259515 ], "z": [ -7.972010075359489, -7.465986369121752 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 3.0099055167558433 ], "y": [ -5.889649502127881, -6.529673660729845 ], "z": [ -8.197626854306273, -6.841411899717597 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 2.086833690943052 ], "y": [ -5.889649502127881, -5.616470869902409 ], "z": [ -8.197626854306273, -8.88206965329011 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.310717872479275, 3.9193105574312717 ], "y": [ -5.889649502127881, -6.568506241148279 ], "z": [ -8.197626854306273, -8.79567992194284 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 2.2146891356164398 ], "y": [ -6.529673660729845, -7.820046093541282 ], "z": [ -6.841411899717597, -7.053272447738804 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 4.2122388629982375 ], "y": [ -6.529673660729845, -6.855098930072356 ], "z": [ -6.841411899717597, -6.164512645991869 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 3.0099055167558433, 2.422894263718906 ], "y": [ -6.529673660729845, -5.838697120784186 ], "z": [ -6.841411899717597, -6.237165914995541 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 1.929556146828481 ], "y": [ -7.820046093541282, -8.416952350266765 ], "z": [ -7.053272447738804, -5.787638970231665 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 2.8016620025926566 ], "y": [ -7.820046093541282, -8.512436312634552 ], "z": [ -7.053272447738804, -7.657524578837811 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.2146891356164398, 1.2813790946080754 ], "y": [ -7.820046093541282, -7.592282628135919 ], "z": [ -7.053272447738804, -7.56713057132887 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 6.212870644604493, 6.964522809939714 ], "y": [ -5.705523275807865, -5.869952274639815 ], "z": [ -7.823035316725588, -7.237831825032318 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 4.495757895226084, 4.982039170775689 ], "y": [ -4.044923593491571, -3.231333255527607 ], "z": [ -9.229058609922799, -9.037420192528138 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 2.086833690943052, 1.046863490220184 ], "y": [ -5.616470869902409, -4.990154715796644 ], "z": [ -8.88206965329011, -8.177596079112483 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.929556146828481, 1.4298529739146204 ], "y": [ -8.416952350266765, -9.22528768162956 ], "z": [ -5.787638970231665, -5.965233258006978 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, -0.20597664009523564 ], "y": [ -4.990154715796644, -4.938024944128733 ], "z": [ -8.177596079112483, -9.011868998951725 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, 0.8414877960416614 ], "y": [ -4.990154715796644, -5.67203003170339 ], "z": [ -8.177596079112483, -6.906487949251861 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.046863490220184, 1.3707270138672034 ], "y": [ -4.990154715796644, -3.9569017600971703 ], "z": [ -8.177596079112483, -7.953825577059064 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, -0.6849548447210543 ], "y": [ -4.938024944128733, -6.394654914347473 ], "z": [ -9.011868998951725, -9.239822694067463 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, 0.038307062765999156 ], "y": [ -4.938024944128733, -4.319162696522309 ], "z": [ -9.011868998951725, -10.250870302701873 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.20597664009523564, -0.9913924222133286 ], "y": [ -4.938024944128733, -4.40675335502595 ], "z": [ -9.011868998951725, -8.460271283609043 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, -0.8798524747248084 ], "y": [ -6.394654914347473, -7.090527726959768 ], "z": [ -9.239822694067463, -7.889153992095742 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, -1.9226212522332116 ], "y": [ -6.394654914347473, -6.381025382003934 ], "z": [ -9.239822694067463, -9.953974008260785 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.6849548447210543, 0.0673129752384698 ], "y": [ -6.394654914347473, -6.928600392572839 ], "z": [ -9.239822694067463, -9.820537213720648 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, 0.42881389771857537 ], "y": [ -7.090527726959768, -7.030055455882298 ], "z": [ -7.889153992095742, -7.098576715628343 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, -1.2466496147377981 ], "y": [ -7.090527726959768, -8.454924631817272 ], "z": [ -7.889153992095742, -8.103925834043304 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -0.8798524747248084, -1.6672085761392532 ], "y": [ -7.090527726959768, -6.584084533642819 ], "z": [ -7.889153992095742, -7.329162330096764 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 0.22522448119490424 ], "y": [ -7.030055455882298, -7.670400784764845 ], "z": [ -7.098576715628343, -5.724559536238706 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 0.8414877960416614 ], "y": [ -7.030055455882298, -5.67203003170339 ], "z": [ -7.098576715628343, -6.906487949251861 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.42881389771857537, 1.2063066222945351 ], "y": [ -7.030055455882298, -7.570824230452708 ], "z": [ -7.098576715628343, -7.64022530621182 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, 1.4740185926894056 ], "y": [ -7.670400784764845, -7.720137586158515 ], "z": [ -5.724559536238706, -5.031323272268199 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, -0.16118999514392973 ], "y": [ -7.670400784764845, -8.681537197098164 ], "z": [ -5.724559536238706, -5.84794109130058 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.22522448119490424, -0.485914944288643 ], "y": [ -7.670400784764845, -7.077784377118048 ], "z": [ -5.724559536238706, -5.149428672077571 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 0.038307062765999156, 0.34246243163845413 ], "y": [ -4.319162696522309, -3.404238718726907 ], "z": [ -10.250870302701873, -10.173168137731391 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.9226212522332116, -1.8735540957454768 ], "y": [ -6.381025382003934, -5.948402160589389 ], "z": [ -9.953974008260785, -10.817841800487761 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ -1.2466496147377981, -2.066879108740731 ], "y": [ -8.454924631817272, -8.567832760325874 ], "z": [ -8.103925834043304, -8.6041621099014 ] }, { "hoverinfo": "skip", "line": { "color": "black", "width": 1.44 }, "mode": "lines", "showlegend": false, "type": "scatter3d", "x": [ 1.4740185926894056, 1.4201167905380263 ], "y": [ -7.720137586158515, -8.114030389522794 ], "z": [ -5.031323272268199, -4.15035048314094 ] } ], "layout": { "scene": { "xaxis": { "showgrid": false, "showline": false, "showticklabels": false }, "yaxis": { "showgrid": false, "showline": false, "showticklabels": false }, "zaxis": { "showgrid": false, "showline": false, "showticklabels": false } }, "template": { "data": { "bar": [ { "error_x": { "color": "rgb(36,36,36)" }, "error_y": { "color": "rgb(36,36,36)" }, "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "baxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "line": { "color": "white", "width": 0.6 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "colorscale": { "diverging": [ [ 0, "rgb(103,0,31)" ], [ 0.1, "rgb(178,24,43)" ], [ 0.2, "rgb(214,96,77)" ], [ 0.3, "rgb(244,165,130)" ], [ 0.4, "rgb(253,219,199)" ], [ 0.5, "rgb(247,247,247)" ], [ 0.6, "rgb(209,229,240)" ], [ 0.7, "rgb(146,197,222)" ], [ 0.8, "rgb(67,147,195)" ], [ 0.9, "rgb(33,102,172)" ], [ 1, "rgb(5,48,97)" ] ], "sequential": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "sequentialminus": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ] }, "colorway": [ "#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF" ], "font": { "color": "rgb(36,36,36)" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "white", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": { "angularaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "radialaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "scene": { "xaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "zaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } }, "shapedefaults": { "fillcolor": "black", "line": { "width": 0 }, "opacity": 0.3 }, "ternary": { "aaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "baxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "caxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# start again with the glucose-glucose at the top\n", "# first set the linkage using %, then add the next molecule\n", "glycan3 = glc % \"14bb\" + glc\n", "\n", "# now build the galactose branch\n", "# we can separate the statements into multiple lines\n", "gal % \"14aa\"\n", "gal_branch3 = gal + gal\n", "gal_branch3 % \"13aa\"\n", "gal_branch3 += gal\n", "\n", "# now build the mannose branch\n", "# or we can \"chain\" the statements together using ()\n", "man_branch3 = (man % \"14bb\" + man) % \"14ab\" + glc\n", "\n", "# now attach both branches to the glucose-glucose\n", "# now we also need to set the attach residues using @\n", "glycan3 = glycan3 % \"13ab\" + gal_branch3 @ 1\n", "glycan3 = glycan3 % \"12bb\" @ 2 + man_branch3 @ 1\n", "\n", "# that's it! now we can visualize the glycan\n", "glycan3.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Naturally, we can combine all three syntaxes together if we like. Whatever bits and pieces you like best about the three. So, if you don't like the `mol_a % \"14bb\"` syntax just use `mol_a.set_linkage(\"14bb\")` instead, it will not affect your ability to use `mol_a + mol_b` or `mol_a.attach(mol_b)` or `bam.connect(mol_a, mol_b)` later on. By the way, if you set the linkage beforehand, there is no need to specify it again when calling the `attach` method or `connect` function. Same thing goes for the attach residue. " ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "With that we are at the end of this little tour through the three different ways to construct molecules in buildamol. Of course, there are many more functions and methods than there are operators, and it may not help readability to rely on the operators too much, especially when chaining many statements together. Nevertheless, they are a handy way to very concisely construct molecules. Please, feel free to use whichever syntax you prefer. Good luck in your project using BuildAMol! " ] } ], "metadata": { "kernelspec": { "display_name": "glyco2", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.0" }, "orig_nbformat": 4 }, "nbformat": 4, "nbformat_minor": 2 }