diff --git a/modules/gfx/tests/CMakeLists.txt b/modules/gfx/tests/CMakeLists.txt
index f2b2bb27ced5c521d32225f60d8d77dd595e18c1..8d6fa15afec93cbb0cb90b600b42c2f743857dae 100644
--- a/modules/gfx/tests/CMakeLists.txt
+++ b/modules/gfx/tests/CMakeLists.txt
@@ -1,7 +1,12 @@
 set(OST_GFX_UNIT_TESTS
-  test_map_octree.cc
+  test_ent_pov_export.cc
   tests.cc
 )
+if (ENABLE_IMG)
+  list(APPEND OST_GFX_UNIT_TESTS test_map_octree.cc)
+endif()
 
 ost_unittest(gfx "${OST_GFX_UNIT_TESTS}")
 
+target_link_libraries(gfx_tests ost_io)
+
diff --git a/modules/gfx/tests/test_ent_pov_export.cc b/modules/gfx/tests/test_ent_pov_export.cc
new file mode 100644
index 0000000000000000000000000000000000000000..0c44aa27370010a78849d9110f41ff856a9e6c48
--- /dev/null
+++ b/modules/gfx/tests/test_ent_pov_export.cc
@@ -0,0 +1,198 @@
+//------------------------------------------------------------------------------
+// This file is part of the OpenStructure project <www.openstructure.org>
+//
+// Copyright (C) 2008-2010 by the OpenStructure authors
+//
+// This library is free software; you can redistribute it and/or modify it under
+// the terms of the GNU Lesser General Public License as published by the Free
+// Software Foundation; either version 3.0 of the License, or (at your option)
+// any later version.
+// This library is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
+// details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with this library; if not, write to the Free Software Foundation, Inc.,
+// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+//------------------------------------------------------------------------------
+
+/*
+  Author: Marco Biasini
+ */
+
+#include <fstream>
+#include <boost/test/unit_test.hpp>
+#include <ost/io/load_entity.hh>
+#include <ost/gfx/scene.hh>
+#include <ost/gfx/entity.hh>
+
+using boost::unit_test_framework::test_suite;
+using namespace ost;
+using namespace ost::gfx;
+
+namespace {
+
+boost::shared_ptr<Entity> prepare_object(gfx::RenderMode::Type mode)
+{
+  mol::EntityHandle ent=io::LoadEntity("testfiles/helix.pdb");
+  boost::shared_ptr<Entity> gfx_ent(new Entity("Helix", mode, ent));
+  Scene::Instance().Add(gfx_ent);
+  Scene::Instance().CenterOn(gfx_ent);
+  return gfx_ent;
+}
+
+bool compare_files(const String& test, const String& gold_standard)
+{
+  std::ifstream test_stream(test.c_str());
+  std::ifstream gold_stream(gold_standard.c_str());
+  String test_line, gold_line;
+  while (true) {
+    bool test_end=std::getline(test_stream, test_line);
+    bool gold_end=std::getline(gold_stream, gold_line);
+    if (!(test_end || gold_end)) {
+      return true;
+    }
+    if (!test_end) {
+      std::cerr << gold_standard << " contains additional line(s):"
+                << std::endl << gold_line;
+      return false;
+    }
+    if (!gold_end) {
+      std::cerr << test << " contains additional line(s):"
+                << std::endl << test_line;
+      return false;
+    }
+    if (gold_line!=test_line) {
+      std::cerr << "line mismatch:" << std::endl << "test: " << test_line 
+                << std::endl << "gold: " << gold_line;
+      return false;
+    }
+  }
+  return true;
+}
+
+bool compare_sphere_cyl_entries(const String& test, 
+                                const String& gold_standard)
+{
+  std::vector<String> gold_spheres;
+  std::vector<String> test_spheres;
+  std::vector<String> test_cyls;
+  std::vector<String> gold_cyls;
+  std::ifstream test_stream(test.c_str());
+  std::ifstream gold_stream(gold_standard.c_str());
+  String test_line, gold_line;
+  while (true) {
+    bool test_end=std::getline(test_stream, test_line);
+    bool gold_end=std::getline(gold_stream, gold_line);
+    if (!(test_end && gold_end)) {
+      break;
+    }
+    if (gold_line.find(" sphere")==0) {
+      gold_spheres.push_back(gold_line);
+    } else if (gold_line.find(" cylinder")==0) {
+      gold_cyls.push_back(gold_line);
+    }
+    if (test_line.find(" sphere")==0) {
+      test_spheres.push_back(test_line);
+    } else if (gold_line.find(" cylinder")==0) {
+      test_cyls.push_back(test_line);
+    }
+  }
+
+  BOOST_CHECK_EQUAL(gold_spheres.size(), test_spheres.size());
+  BOOST_CHECK_EQUAL(test_cyls.size(), gold_cyls.size());
+
+  if (gold_spheres.size()!=test_spheres.size()) {
+    return false;
+  }
+  if (gold_cyls.size()!=test_cyls.size()) {
+    return false;
+  }
+  std::sort(gold_spheres.begin(), gold_spheres.end());
+  std::sort(gold_cyls.begin(), gold_cyls.end());
+  std::sort(test_spheres.begin(), test_spheres.end());
+  std::sort(test_cyls.begin(), test_cyls.end());  
+  for (size_t i=0;i<gold_cyls.size(); ++i) {
+    BOOST_CHECK_EQUAL(gold_cyls[i], test_cyls[i]);
+  }
+  for (size_t i=0;i<gold_spheres.size(); ++i) {
+    BOOST_CHECK_EQUAL(gold_spheres[i], test_spheres[i]);
+  }
+  return true;
+}
+
+}
+BOOST_AUTO_TEST_SUITE(gfx)
+
+BOOST_AUTO_TEST_CASE(pov_export_simple)
+{
+  Scene::Instance().SetOffscreenMode();
+  boost::shared_ptr<Entity> obj=prepare_object(RenderMode::SIMPLE);    
+  Scene::Instance().ExportPov("pov_simple_test", ".");
+  compare_sphere_cyl_entries("pov_simple_test.inc", 
+                             "testfiles/pov_simple_std.inc");
+  Scene::Instance().Remove(obj);
+}
+
+BOOST_AUTO_TEST_CASE(pov_export_custom)
+{
+  Scene::Instance().SetOffscreenMode();
+  boost::shared_ptr<Entity> obj=prepare_object(RenderMode::CUSTOM);
+  Scene::Instance().ExportPov("pov_custom_test", ".");
+  compare_sphere_cyl_entries("pov_custom_test.inc", 
+                            "testfiles/pov_custom_std.inc");
+  Scene::Instance().Remove(obj);
+}
+
+BOOST_AUTO_TEST_CASE(pov_export_cartoon)
+{
+  Scene::Instance().SetOffscreenMode();
+  boost::shared_ptr<Entity> obj=prepare_object(RenderMode::HSC);
+  Scene::Instance().ExportPov("pov_cartoon_test", ".");
+  BOOST_CHECK(compare_files("pov_cartoon_test.inc", 
+                            "testfiles/pov_cartoon_std.inc"));
+  Scene::Instance().Remove(obj);
+}
+
+BOOST_AUTO_TEST_CASE(pov_export_cpk)
+{
+  Scene::Instance().SetOffscreenMode();
+  boost::shared_ptr<Entity> obj=prepare_object(RenderMode::CPK);
+  Scene::Instance().ExportPov("pov_cpk_test", ".");
+  compare_sphere_cyl_entries("pov_cpk_test.inc", 
+                            "testfiles/pov_cpk_std.inc");
+  Scene::Instance().Remove(obj);
+}
+
+BOOST_AUTO_TEST_CASE(pov_export_trace)
+{
+  Scene::Instance().SetOffscreenMode();
+  boost::shared_ptr<Entity> obj=prepare_object(RenderMode::TRACE);
+  Scene::Instance().ExportPov("pov_trace_test", ".");
+  BOOST_CHECK(compare_files("pov_trace_test.inc", 
+                            "testfiles/pov_trace_std.inc"));
+  Scene::Instance().Remove(obj);
+}
+
+BOOST_AUTO_TEST_CASE(pov_export_line_trace)
+{
+  Scene::Instance().SetOffscreenMode();
+  boost::shared_ptr<Entity> obj=prepare_object(RenderMode::LINE_TRACE);
+  Scene::Instance().ExportPov("pov_line_trace_test", ".");
+  BOOST_CHECK(compare_files("pov_line_trace_test.inc", 
+                            "testfiles/pov_line_trace_std.inc"));
+  Scene::Instance().Remove(obj);
+}
+
+BOOST_AUTO_TEST_CASE(pov_export_sline)
+{
+  Scene::Instance().SetOffscreenMode();
+  boost::shared_ptr<Entity> obj=prepare_object(RenderMode::SLINE);
+  Scene::Instance().ExportPov("pov_sline_test", ".");
+  BOOST_CHECK(compare_files("pov_sline_test.inc", 
+                            "testfiles/pov_sline_std.inc"));
+  Scene::Instance().Remove(obj);
+}
+
+BOOST_AUTO_TEST_SUITE_END()
diff --git a/modules/gfx/tests/testfiles/helix.pdb b/modules/gfx/tests/testfiles/helix.pdb
new file mode 100644
index 0000000000000000000000000000000000000000..d895a960c782509680f9e8218d569748bd49d253
--- /dev/null
+++ b/modules/gfx/tests/testfiles/helix.pdb
@@ -0,0 +1,69 @@
+ATOM      1  N   ASP A  62      20.818  21.098  88.433  1.00 36.00           N
+ATOM      2  CA  ASP A  62      19.945  21.644  89.473  1.00 35.14           C
+ATOM      3  C   ASP A  62      18.631  22.188  88.916  1.00 34.81           C
+ATOM      4  O   ASP A  62      18.615  23.185  88.194  1.00 34.83           O
+ATOM      5  N   GLN A  63      17.527  21.546  89.275  1.00 33.87           N
+ATOM      6  CA  GLN A  63      16.217  21.962  88.794  1.00 33.52           C
+ATOM      7  C   GLN A  63      15.944  23.448  89.021  1.00 34.72           C
+ATOM      8  O   GLN A  63      15.393  24.129  88.158  1.00 35.13           O
+ATOM      9  N   ALA A  64      16.329  23.955  90.187  1.00 35.86           N
+ATOM     10  CA  ALA A  64      16.097  25.362  90.506  1.00 34.48           C
+ATOM     11  C   ALA A  64      16.796  26.271  89.506  1.00 32.80           C
+ATOM     12  O   ALA A  64      16.200  27.223  89.001  1.00 32.43           O
+ATOM     13  N   SER A  65      18.062  25.976  89.227  1.00 31.21           N
+ATOM     14  CA  SER A  65      18.843  26.772  88.284  1.00 30.13           C
+ATOM     15  C   SER A  65      18.215  26.692  86.894  1.00 29.47           C
+ATOM     16  O   SER A  65      18.210  27.665  86.144  1.00 27.80           O
+ATOM     17  N   ILE A  66      17.674  25.523  86.567  1.00 29.84           N
+ATOM     18  CA  ILE A  66      17.037  25.306  85.277  1.00 30.26           C
+ATOM     19  C   ILE A  66      15.785  26.169  85.134  1.00 32.24           C
+ATOM     20  O   ILE A  66      15.634  26.890  84.147  1.00 32.91           O
+ATOM     21  N   ASP A  67      14.893  26.108  86.117  1.00 34.00           N
+ATOM     22  CA  ASP A  67      13.664  26.895  86.059  1.00 35.40           C
+ATOM     23  C   ASP A  67      13.937  28.400  86.059  1.00 36.75           C
+ATOM     24  O   ASP A  67      13.202  29.176  85.442  1.00 36.01           O
+ATOM     25  N   ARG A  68      14.985  28.819  86.758  1.00 38.36           N
+ATOM     26  CA  ARG A  68      15.316  30.231  86.796  1.00 40.77           C
+ATOM     27  C   ARG A  68      15.752  30.657  85.408  1.00 41.08           C
+ATOM     28  O   ARG A  68      15.227  31.623  84.852  1.00 40.58           O
+ATOM     29  N   CYS A  69      16.712  29.918  84.856  1.00 40.06           N
+ATOM     30  CA  CYS A  69      17.252  30.191  83.531  1.00 39.62           C
+ATOM     31  C   CYS A  69      16.169  30.403  82.475  1.00 38.72           C
+ATOM     32  O   CYS A  69      16.150  31.422  81.783  1.00 37.80           O
+ATOM     33  N   VAL A  70      15.265  29.438  82.361  1.00 38.16           N
+ATOM     34  CA  VAL A  70      14.189  29.507  81.384  1.00 37.40           C
+ATOM     35  C   VAL A  70      13.238  30.673  81.619  1.00 38.38           C
+ATOM     36  O   VAL A  70      12.861  31.369  80.679  1.00 40.49           O
+ATOM     37  N   ALA A  71      12.843  30.881  82.868  1.00 38.72           N
+ATOM     38  CA  ALA A  71      11.934  31.969  83.201  1.00 38.96           C
+ATOM     39  C   ALA A  71      12.553  33.335  82.885  1.00 39.02           C
+ATOM     40  O   ALA A  71      11.873  34.233  82.394  1.00 37.96           O
+ATOM     41  N   GLU A  72      13.844  33.483  83.160  1.00 38.71           N
+ATOM     42  CA  GLU A  72      14.534  34.741  82.913  1.00 40.87           C
+ATOM     43  C   GLU A  72      14.619  35.073  81.427  1.00 42.58           C
+ATOM     44  O   GLU A  72      14.327  36.200  81.017  1.00 43.89           O
+ATOM     45  N   LEU A  73      15.021  34.094  80.622  1.00 42.36           N
+ATOM     46  CA  LEU A  73      15.134  34.288  79.183  1.00 40.61           C
+ATOM     47  C   LEU A  73      13.766  34.552  78.574  1.00 41.27           C
+ATOM     48  O   LEU A  73      13.641  35.313  77.613  1.00 40.27           O
+ATOM     49  N   LEU A  74      12.738  33.925  79.135  1.00 42.57           N
+ATOM     50  CA  LEU A  74      11.384  34.124  78.639  1.00 45.20           C
+ATOM     51  C   LEU A  74      10.957  35.578  78.780  1.00 47.81           C
+ATOM     52  O   LEU A  74      10.206  36.089  77.953  1.00 48.42           O
+ATOM     53  N   ASP A  75      11.432  36.243  79.830  1.00 50.76           N
+ATOM     54  CA  ASP A  75      11.076  37.637  80.051  1.00 52.76           C
+ATOM     55  C   ASP A  75      11.948  38.559  79.219  1.00 52.17           C
+ATOM     56  O   ASP A  75      11.502  39.623  78.803  1.00 52.65           O
+ATOM     57  N   ARG A  76      13.189  38.152  78.972  1.00 51.65           N
+ATOM     58  CA  ARG A  76      14.096  38.966  78.170  1.00 50.77           C
+ATOM     59  C   ARG A  76      13.787  38.837  76.680  1.00 48.49           C
+ATOM     60  O   ARG A  76      13.930  39.802  75.932  1.00 48.31           O
+ATOM     61  N   TRP A  77      13.367  37.649  76.250  1.00 45.41           N
+ATOM     62  CA  TRP A  77      13.073  37.420  74.835  1.00 42.13           C
+ATOM     63  C   TRP A  77      11.604  37.231  74.487  1.00 41.62           C
+ATOM     64  O   TRP A  77      11.191  37.532  73.372  1.00 42.05           O
+ATOM     65  N   GLY A  78      10.817  36.722  75.427  1.00 41.28           N
+ATOM     66  CA  GLY A  78       9.413  36.492  75.148  1.00 39.86           C
+ATOM     67  C   GLY A  78       9.199  35.091  74.606  1.00 39.97           C
+ATOM     68  O   GLY A  78       8.073  34.603  74.550  1.00 40.78           O
+END
\ No newline at end of file
diff --git a/modules/gfx/tests/testfiles/pov_cartoon_std.inc b/modules/gfx/tests/testfiles/pov_cartoon_std.inc
new file mode 100644
index 0000000000000000000000000000000000000000..5937c69b0c71b8afe1345c8eb3c4cd5741d9e328
--- /dev/null
+++ b/modules/gfx/tests/testfiles/pov_cartoon_std.inc
@@ -0,0 +1,6736 @@
+#declare _Helix = object {
+mesh2 {
+ vertex_vectors { 1554,
+  <19.909203,21.312914,89.694588>,
+  <19.860155,21.422062,89.794785>,
+  <19.824026,21.564999,89.845993>,
+  <19.806313,21.719963,89.840416>,
+  <19.809715,21.863361,89.778908>,
+  <19.833712,21.973366,89.670822>,
+  <19.874651,22.033226,89.532623>,
+  <19.926300,22.033831,89.385345>,
+  <19.980797,21.975088,89.251411>,
+  <20.029844,21.865940,89.151215>,
+  <20.065973,21.723003,89.100006>,
+  <20.083687,21.568039,89.105583>,
+  <20.080284,21.424641,89.167091>,
+  <20.056288,21.314636,89.275177>,
+  <20.015348,21.254776,89.413376>,
+  <19.963699,21.254171,89.560654>,
+  <19.945000,21.644001,89.473000>,
+  <19.168407,21.230007,89.450272>,
+  <19.123180,21.344370,89.546364>,
+  <19.091507,21.490189,89.592110>,
+  <19.078211,21.645262,89.580536>,
+  <19.085312,21.785982,89.513405>,
+  <19.111732,21.890926,89.400948>,
+  <19.153450,21.944115,89.260277>,
+  <19.204113,21.937454,89.112801>,
+  <19.256008,21.871956,88.980988>,
+  <19.301235,21.757593,88.884895>,
+  <19.332909,21.611774,88.839149>,
+  <19.346205,21.456701,88.850723>,
+  <19.339104,21.315981,88.917854>,
+  <19.312683,21.211037,89.030312>,
+  <19.270966,21.157848,89.170982>,
+  <19.220303,21.164509,89.318459>,
+  <18.442190,21.176701,89.234001>,
+  <18.407457,21.298065,89.325783>,
+  <18.386589,21.447582,89.365372>,
+  <18.382763,21.602493,89.346741>,
+  <18.396559,21.739210,89.272736>,
+  <18.425880,21.836920,89.154625>,
+  <18.466261,21.880749,89.010376>,
+  <18.511553,21.864023,88.861961>,
+  <18.554861,21.789288,88.731972>,
+  <18.589594,21.667923,88.640190>,
+  <18.610462,21.518406,88.600601>,
+  <18.614288,21.363495,88.619232>,
+  <18.600492,21.226778,88.693237>,
+  <18.571171,21.129068,88.811348>,
+  <18.530790,21.085239,88.955597>,
+  <18.485498,21.101965,89.104012>,
+  <17.752037,21.184183,89.075569>,
+  <17.737461,21.314430,89.160309>,
+  <17.735916,21.467613,89.190163>,
+  <17.747639,21.620407,89.160591>,
+  <17.770842,21.749556,89.076088>,
+  <17.801994,21.835392,88.949516>,
+  <17.836353,21.864851,88.800148>,
+  <17.868689,21.833448,88.650726>,
+  <17.894077,21.745962,88.523994>,
+  <17.908653,21.615715,88.439255>,
+  <17.910198,21.462532,88.409401>,
+  <17.898476,21.309738,88.438972>,
+  <17.875273,21.180590,88.523476>,
+  <17.844120,21.094753,88.650047>,
+  <17.809761,21.065294,88.799416>,
+  <17.777426,21.096697,88.948837>,
+  <17.129284,21.288036,89.006050>,
+  <17.148878,21.426638,89.075073>,
+  <17.177002,21.579796,89.085579>,
+  <17.209373,21.724190,89.035980>,
+  <17.241066,21.837841,88.933815>,
+  <17.267254,21.903446,88.794640>,
+  <17.283951,21.911015,88.639648>,
+  <17.288612,21.859398,88.492432>,
+  <17.280533,21.756451,88.375404>,
+  <17.260939,21.617849,88.306381>,
+  <17.232815,21.464691,88.295876>,
+  <17.200443,21.320297,88.345474>,
+  <17.168751,21.206646,88.447639>,
+  <17.142563,21.141041,88.586815>,
+  <17.125866,21.133472,88.741806>,
+  <17.121204,21.185089,88.889023>,
+  <16.627609,21.513554,89.042755>,
+  <16.693003,21.650707,89.078407>,
+  <16.753857,21.792252,89.053490>,
+  <16.800907,21.916636,88.971802>,
+  <16.826988,22.004925,88.845772>,
+  <16.828135,22.043678,88.694595>,
+  <16.804167,22.026995,88.541275>,
+  <16.758738,21.957415,88.409164>,
+  <16.698761,21.845531,88.318375>,
+  <16.633368,21.708378,88.282722>,
+  <16.572514,21.566833,88.307640>,
+  <16.525463,21.442450,88.389328>,
+  <16.499382,21.354160,88.515358>,
+  <16.498236,21.315407,88.666534>,
+  <16.522203,21.332090,88.819855>,
+  <16.567633,21.401670,88.951965>,
+  <16.277546,21.838848,89.169716>,
+  <16.378511,21.957457,89.159904>,
+  <16.454889,22.076757,89.094391>,
+  <16.495052,22.178587,88.983139>,
+  <16.492882,22.247444,88.843094>,
+  <16.448713,22.272844,88.695572>,
+  <16.369268,22.250921,88.563034>,
+  <16.266642,22.185013,88.465660>,
+  <16.156456,22.085152,88.418266>,
+  <16.055490,21.966543,88.428078>,
+  <15.979112,21.847242,88.493591>,
+  <15.938951,21.745413,88.604843>,
+  <15.941119,21.676556,88.744888>,
+  <15.985289,21.651155,88.892410>,
+  <16.064734,21.673079,89.024948>,
+  <16.167360,21.738987,89.122322>,
+  <16.027973,22.254225,89.391647>,
+  <16.142149,22.349831,89.344925>,
+  <16.216879,22.450621,89.252106>,
+  <16.240786,22.541250,89.127319>,
+  <16.210234,22.607922,88.989548>,
+  <16.129869,22.640488,88.859779>,
+  <16.011930,22.633986,88.757767>,
+  <15.874372,22.589409,88.699043>,
+  <15.738134,22.513544,88.692535>,
+  <15.623960,22.417938,88.739258>,
+  <15.549230,22.317148,88.832077>,
+  <15.525321,22.226519,88.956863>,
+  <15.555874,22.159847,89.094635>,
+  <15.636238,22.127281,89.224403>,
+  <15.754177,22.133783,89.326416>,
+  <15.891736,22.178360,89.385139>,
+  <15.861060,22.769363,89.699554>,
+  <15.976042,22.846170,89.627174>,
+  <16.044193,22.933670,89.517365>,
+  <16.055140,23.018543,89.386848>,
+  <16.007214,23.087868,89.255486>,
+  <15.907712,23.131090,89.143280>,
+  <15.771783,23.141628,89.067314>,
+  <15.620120,23.117882,89.039154>,
+  <15.475814,23.063461,89.063080>,
+  <15.360832,22.986654,89.135460>,
+  <15.292681,22.899155,89.245270>,
+  <15.281734,22.814281,89.375786>,
+  <15.329660,22.744957,89.507149>,
+  <15.429162,22.701735,89.619354>,
+  <15.565091,22.691196,89.695320>,
+  <15.716754,22.714943,89.723480>,
+  <15.801212,23.359940,90.045143>,
+  <15.911061,23.419348,89.951538>,
+  <15.970181,23.494085,89.827934>,
+  <15.969568,23.572771,89.693146>,
+  <15.909318,23.643431,89.567703>,
+  <15.798602,23.695301,89.470703>,
+  <15.654278,23.720491,89.416901>,
+  <15.498315,23.715162,89.414497>,
+  <15.354458,23.680126,89.463860>,
+  <15.244609,23.620718,89.557465>,
+  <15.185490,23.545980,89.681068>,
+  <15.186102,23.467295,89.815857>,
+  <15.246352,23.396635,89.941299>,
+  <15.357068,23.344765,90.038300>,
+  <15.501392,23.319574,90.092102>,
+  <15.657355,23.324903,90.094505>,
+  <15.864976,23.984819,90.367043>,
+  <15.963615,24.024281,90.252708>,
+  <16.009325,24.083673,90.115814>,
+  <15.995144,24.153955,89.977180>,
+  <15.923232,24.224428,89.857933>,
+  <15.804538,24.284363,89.776215>,
+  <15.657130,24.324635,89.744469>,
+  <15.503451,24.339111,89.767525>,
+  <15.366897,24.325590,89.841881>,
+  <15.268257,24.286129,89.956215>,
+  <15.222548,24.226736,90.093109>,
+  <15.236729,24.156454,90.231743>,
+  <15.308640,24.085981,90.350990>,
+  <15.427335,24.026047,90.432709>,
+  <15.574742,23.985775,90.464455>,
+  <15.728421,23.971298,90.441399>,
+  <16.060032,24.597803,90.601234>,
+  <16.137114,24.611423,90.466209>,
+  <16.160959,24.651070,90.317154>,
+  <16.127937,24.710705,90.176758>,
+  <16.043077,24.781252,90.066391>,
+  <15.919298,24.851971,90.002861>,
+  <15.775442,24.912092,89.995842>,
+  <15.633411,24.952467,90.046394>,
+  <15.514829,24.966948,90.146828>,
+  <15.437747,24.953327,90.281853>,
+  <15.413901,24.913681,90.430908>,
+  <15.446921,24.854046,90.571304>,
+  <15.531781,24.783499,90.681671>,
+  <15.655561,24.712780,90.745201>,
+  <15.799417,24.652658,90.752220>,
+  <15.941448,24.612284,90.701668>,
+  <16.382095,25.149002,90.688622>,
+  <16.422737,25.132185,90.538879>,
+  <16.413788,25.150356,90.384125>,
+  <16.356611,25.200748,90.247925>,
+  <16.259911,25.275688,90.151016>,
+  <16.138409,25.363770,90.108147>,
+  <16.010603,25.451580,90.125854>,
+  <15.895950,25.525753,90.201424>,
+  <15.811905,25.574997,90.323372>,
+  <15.771263,25.591814,90.473114>,
+  <15.780212,25.573643,90.627869>,
+  <15.837389,25.523251,90.764069>,
+  <15.934089,25.448311,90.860977>,
+  <16.055592,25.360229,90.903847>,
+  <16.183397,25.272419,90.886139>,
+  <16.298050,25.198246,90.810570>,
+  <16.813309,25.608131,90.603378>,
+  <16.811249,25.566992,90.452843>,
+  <16.767714,25.570433,90.303001>,
+  <16.689327,25.617933,90.176674>,
+  <16.588028,25.702261,90.093094>,
+  <16.479237,25.810577,90.064980>,
+  <16.379513,25.926392,90.096619>,
+  <16.304043,26.032074,90.183189>,
+  <16.264313,26.111534,90.311508>,
+  <16.266373,26.152674,90.462044>,
+  <16.309908,26.149233,90.611885>,
+  <16.388294,26.101732,90.738213>,
+  <16.489594,26.017405,90.821793>,
+  <16.598385,25.909088,90.849907>,
+  <16.698109,25.793274,90.818268>,
+  <16.773579,25.687592,90.731697>,
+  <17.316685,25.978056,90.366997>,
+  <17.277578,25.924467,90.225731>,
+  <17.206099,25.922390,90.087006>,
+  <17.113127,25.972145,89.971939>,
+  <17.012814,26.066156,89.898064>,
+  <16.920435,26.190109,89.876610>,
+  <16.850052,26.325136,89.910858>,
+  <16.812382,26.450678,89.995583>,
+  <16.813156,26.547625,90.117897>,
+  <16.852262,26.601213,90.259163>,
+  <16.923742,26.603291,90.397888>,
+  <17.016714,26.553535,90.512955>,
+  <17.117027,26.459524,90.586830>,
+  <17.209406,26.335571,90.608284>,
+  <17.279789,26.200544,90.574036>,
+  <17.317459,26.075003,90.489311>,
+  <17.842497,26.251390,89.997948>,
+  <17.771593,26.194889,89.870911>,
+  <17.677132,26.194473,89.746674>,
+  <17.573496,26.250206,89.644142>,
+  <17.476461,26.353603,89.578934>,
+  <17.400803,26.488924,89.560982>,
+  <17.358036,26.635567,89.593002>,
+  <17.354673,26.771206,89.670135>,
+  <17.391226,26.875193,89.780632>,
+  <17.462130,26.931694,89.907669>,
+  <17.556591,26.932110,90.031906>,
+  <17.660227,26.876377,90.134438>,
+  <17.757261,26.772980,90.199646>,
+  <17.832920,26.637659,90.217598>,
+  <17.875687,26.491016,90.185577>,
+  <17.879049,26.355377,90.108444>,
+  <18.327557,26.414478,89.518288>,
+  <18.226496,26.364107,89.410553>,
+  <18.111681,26.373011,89.305206>,
+  <18.000595,26.439833,89.218300>,
+  <17.910149,26.554403,89.163055>,
+  <17.854111,26.699276,89.147888>,
+  <17.841015,26.852398,89.175102>,
+  <17.872850,26.990456,89.240562>,
+  <17.944775,27.092434,89.334297>,
+  <18.045835,27.142805,89.442032>,
+  <18.160650,27.133902,89.547379>,
+  <18.271736,27.067080,89.634285>,
+  <18.362183,26.952509,89.689529>,
+  <18.418221,26.807636,89.704697>,
+  <18.431316,26.654514,89.677483>,
+  <18.399481,26.516457,89.612022>,
+  <18.700575,26.457853,88.960556>,
+  <18.570667,26.425653,88.880272>,
+  <18.439800,26.454342,88.800217>,
+  <18.327898,26.539553,88.732567>,
+  <18.251995,26.668310,88.687637>,
+  <18.223650,26.821014,88.672256>,
+  <18.247173,26.974417,88.688774>,
+  <18.318989,27.105164,88.734673>,
+  <18.428160,27.193350,88.802963>,
+  <18.558067,27.225550,88.883247>,
+  <18.688934,27.196861,88.963303>,
+  <18.800837,27.111650,89.030952>,
+  <18.876740,26.982893,89.075882>,
+  <18.905085,26.830189,89.091263>,
+  <18.881561,26.676786,89.074745>,
+  <18.809746,26.546040,89.028847>,
+  <18.898384,26.386204,88.373955>,
+  <18.748730,26.385960,88.329666>,
+  <18.613426,26.444489,88.278419>,
+  <18.513075,26.552877,88.228020>,
+  <18.462950,26.694626,88.186150>,
+  <18.470684,26.848154,88.159172>,
+  <18.535101,26.990088,88.151192>,
+  <18.646393,27.098822,88.163437>,
+  <18.787617,27.157799,88.194038>,
+  <18.937271,27.158043,88.238327>,
+  <19.072575,27.099514,88.289574>,
+  <19.172926,26.991125,88.339973>,
+  <19.223051,26.849377,88.381844>,
+  <19.215317,26.695848,88.408821>,
+  <19.150900,26.553915,88.416801>,
+  <19.039608,26.445181,88.404556>,
+  <18.911669,26.217503,87.796448>,
+  <18.759901,26.252254,87.785622>,
+  <18.633600,26.339012,87.755951>,
+  <18.551998,26.464565,87.711952>,
+  <18.527515,26.609802,87.660332>,
+  <18.563881,26.752611,87.608932>,
+  <18.655558,26.871250,87.565590>,
+  <18.788588,26.947659,87.536896>,
+  <18.942720,26.970203,87.527222>,
+  <19.094488,26.935452,87.538048>,
+  <19.220789,26.848694,87.567719>,
+  <19.302391,26.723141,87.611717>,
+  <19.326874,26.577904,87.663338>,
+  <19.290508,26.435095,87.714737>,
+  <19.198832,26.316456,87.758080>,
+  <19.065802,26.240047,87.786774>,
+  <18.774429,25.976805,87.230286>,
+  <18.632029,26.039362,87.243225>,
+  <18.519232,26.145874,87.226173>,
+  <18.453211,26.280125,87.181725>,
+  <18.444017,26.421679,87.116631>,
+  <18.493050,26.548983,87.040817>,
+  <18.592842,26.642658,86.965820>,
+  <18.728205,26.688442,86.903053>,
+  <18.878529,26.679365,86.862076>,
+  <19.020929,26.616808,86.849136>,
+  <19.133726,26.510296,86.866188>,
+  <19.199747,26.376045,86.910637>,
+  <19.208941,26.234491,86.975731>,
+  <19.159908,26.107187,87.051544>,
+  <19.060116,26.013512,87.126541>,
+  <18.924753,25.967728,87.189308>,
+  <18.498196,25.695135,86.691551>,
+  <18.370405,25.779356,86.722130>,
+  <18.272085,25.900297,86.714088>,
+  <18.218201,26.039547,86.668655>,
+  <18.216959,26.175907,86.592735>,
+  <18.268545,26.288616,86.497902>,
+  <18.365108,26.360516,86.398582>,
+  <18.491947,26.380661,86.309898>,
+  <18.629753,26.345984,86.245354>,
+  <18.757544,26.261763,86.214775>,
+  <18.855864,26.140821,86.222816>,
+  <18.909748,26.001572,86.268250>,
+  <18.910990,25.865211,86.344170>,
+  <18.859404,25.752502,86.439003>,
+  <18.762840,25.680603,86.538322>,
+  <18.636002,25.660458,86.627007>,
+  <18.094282,25.414700,86.212730>,
+  <17.986300,25.517675,86.258492>,
+  <17.905190,25.651014,86.258827>,
+  <17.863298,25.794418,86.213676>,
+  <17.867006,25.926058,86.129906>,
+  <17.915747,26.025887,86.020287>,
+  <18.002100,26.078711,85.901497>,
+  <18.112921,26.076487,85.791626>,
+  <18.231337,26.019554,85.707390>,
+  <18.339319,25.916578,85.661629>,
+  <18.420429,25.783239,85.661293>,
+  <18.462320,25.639835,85.706444>,
+  <18.458612,25.508196,85.790215>,
+  <18.409872,25.408367,85.899834>,
+  <18.323519,25.355543,86.018623>,
+  <18.212698,25.357767,86.128494>,
+  <17.580709,25.182760,85.829605>,
+  <17.501070,25.303173,85.888901>,
+  <17.443512,25.448021,85.896980>,
+  <17.416798,25.595247,85.852608>,
+  <17.424994,25.722439,85.762527>,
+  <17.466852,25.810234,85.640472>,
+  <17.536001,25.845266,85.505013>,
+  <17.621914,25.822201,85.376770>,
+  <17.711508,25.744551,85.275269>,
+  <17.791147,25.624138,85.215973>,
+  <17.848705,25.479290,85.207893>,
+  <17.875420,25.332064,85.252266>,
+  <17.867224,25.204872,85.342346>,
+  <17.825365,25.117077,85.464401>,
+  <17.756216,25.082045,85.599861>,
+  <17.670303,25.105110,85.728104>,
+  <16.981083,25.047441,85.577034>,
+  <16.940878,25.182077,85.644974>,
+  <16.915306,25.335579,85.656891>,
+  <16.908262,25.484577,85.610970>,
+  <16.920816,25.606388,85.514206>,
+  <16.951059,25.682468,85.381332>,
+  <16.994385,25.701235,85.232574>,
+  <17.044199,25.659830,85.090584>,
+  <17.092918,25.564558,84.976967>,
+  <17.133123,25.429922,84.909027>,
+  <17.158695,25.276421,84.897110>,
+  <17.165739,25.127422,84.943031>,
+  <17.153185,25.005611,85.039795>,
+  <17.122942,24.929531,85.172668>,
+  <17.079617,24.910765,85.321426>,
+  <17.029802,24.952169,85.463417>,
+  <16.324074,25.043463,85.475258>,
+  <16.326855,25.184488,85.542061>,
+  <16.335123,25.340139,85.550003>,
+  <16.347620,25.486717,85.497879>,
+  <16.362442,25.601910,85.393616>,
+  <16.377333,25.668177,85.253098>,
+  <16.390026,25.675432,85.097710>,
+  <16.398590,25.622570,84.951118>,
+  <16.401718,25.517637,84.835625>,
+  <16.398937,25.376612,84.768822>,
+  <16.390669,25.220961,84.760880>,
+  <16.378172,25.074383,84.813004>,
+  <16.363350,24.959190,84.917267>,
+  <16.348459,24.892923,85.057785>,
+  <16.335766,24.885668,85.213173>,
+  <16.327202,24.938530,85.359764>,
+  <15.650524,25.169977,85.506851>,
+  <15.690175,25.310200,85.562744>,
+  <15.726509,25.461935,85.558929>,
+  <15.753996,25.602083,85.495987>,
+  <15.768450,25.709309,85.383507>,
+  <15.767672,25.767284,85.238602>,
+  <15.751779,25.767187,85.083344>,
+  <15.723190,25.709030,84.941360>,
+  <15.686260,25.601667,84.834274>,
+  <15.646609,25.461445,84.778381>,
+  <15.610275,25.309710,84.782196>,
+  <15.582788,25.169561,84.845139>,
+  <15.568335,25.062336,84.957619>,
+  <15.569113,25.004360,85.102524>,
+  <15.585006,25.004457,85.257782>,
+  <15.613594,25.062614,85.399765>,
+  <15.011493,25.421659,85.647720>,
+  <15.081216,25.556555,85.683784>,
+  <15.138935,25.699717,85.660721>,
+  <15.175864,25.829350,85.582047>,
+  <15.186379,25.925718,85.459732>,
+  <15.168881,25.974152,85.312401>,
+  <15.126033,25.967278,85.162483>,
+  <15.064358,25.906141,85.032799>,
+  <14.993245,25.800051,84.943100>,
+  <14.923522,25.665155,84.907036>,
+  <14.865803,25.521994,84.930099>,
+  <14.828874,25.392361,85.008774>,
+  <14.818358,25.295992,85.131088>,
+  <14.835856,25.247559,85.278419>,
+  <14.878705,25.254433,85.428337>,
+  <14.940380,25.315569,85.558022>,
+  <14.466025,25.791233,85.868729>,
+  <14.559731,25.915918,85.874344>,
+  <14.631206,26.044985,85.823441>,
+  <14.669567,26.158785,85.723755>,
+  <14.668977,26.239994,85.590477>,
+  <14.629523,26.276247,85.443886>,
+  <14.557214,26.262026,85.306313>,
+  <14.463056,26.199495,85.198685>,
+  <14.361384,26.098175,85.137405>,
+  <14.267679,25.973490,85.131790>,
+  <14.196204,25.844423,85.182693>,
+  <14.157843,25.730623,85.282379>,
+  <14.158433,25.649414,85.415657>,
+  <14.197886,25.613161,85.562248>,
+  <14.270196,25.627382,85.699821>,
+  <14.364354,25.689913,85.807449>,
+  <14.074452,26.260994,86.129219>,
+  <14.182740,26.367285,86.092682>,
+  <14.255791,26.474962,86.006500>,
+  <14.282484,26.567635,85.883789>,
+  <14.258756,26.631193,85.743233>,
+  <14.188218,26.655962,85.606232>,
+  <14.081611,26.638170,85.493637>,
+  <13.955163,26.580526,85.422600>,
+  <13.828126,26.491806,85.403923>,
+  <13.719838,26.385515,85.440460>,
+  <13.646788,26.277838,85.526642>,
+  <13.620094,26.185165,85.649353>,
+  <13.643823,26.121607,85.789909>,
+  <13.714360,26.096838,85.926910>,
+  <13.820968,26.114630,86.039505>,
+  <13.947415,26.172274,86.110542>,
+  <13.874363,26.792654,86.383461>,
+  <13.981315,26.871290,86.301392>,
+  <14.039957,26.953537,86.182411>,
+  <14.041365,27.026871,86.044655>,
+  <13.985321,27.080130,85.909073>,
+  <13.880360,27.105204,85.796326>,
+  <13.742459,27.098274,85.723564>,
+  <13.592615,27.060400,85.701866>,
+  <13.453638,26.997343,85.734550>,
+  <13.346686,26.918707,85.816620>,
+  <13.288044,26.836460,85.935600>,
+  <13.286636,26.763126,86.073357>,
+  <13.342680,26.709867,86.208939>,
+  <13.447641,26.684793,86.321686>,
+  <13.585542,26.691723,86.394447>,
+  <13.735386,26.729597,86.416145>,
+  <13.854696,27.355385,86.620018>,
+  <13.947860,27.405840,86.505417>,
+  <13.986033,27.468344,86.367599>,
+  <13.963404,27.533379,86.227539>,
+  <13.883417,27.591043,86.106560>,
+  <13.758250,27.632561,86.023087>,
+  <13.606959,27.651609,85.989822>,
+  <13.452576,27.645287,86.011826>,
+  <13.318604,27.614559,86.085762>,
+  <13.225440,27.564104,86.200363>,
+  <13.187266,27.501600,86.338181>,
+  <13.209896,27.436565,86.478241>,
+  <13.289883,27.378901,86.599220>,
+  <13.415050,27.337383,86.682693>,
+  <13.566340,27.318335,86.715958>,
+  <13.720724,27.324657,86.693954>,
+  <13.983251,27.943281,86.841873>,
+  <14.060582,27.970467,86.709061>,
+  <14.082679,28.019278,86.562469>,
+  <14.046175,28.082283,86.424431>,
+  <13.956630,28.149891,86.315941>,
+  <13.827674,28.211809,86.253532>,
+  <13.678942,28.258612,86.246696>,
+  <13.533074,28.283171,86.296478>,
+  <13.412280,28.281752,86.395294>,
+  <13.334949,28.254566,86.528107>,
+  <13.312852,28.205755,86.674698>,
+  <13.349356,28.142750,86.812737>,
+  <13.438901,28.075142,86.921227>,
+  <13.567857,28.013224,86.983635>,
+  <13.716589,27.966421,86.990471>,
+  <13.862456,27.941862,86.940689>,
+  <14.244219,28.536121,87.023323>,
+  <14.305568,28.542015,86.879936>,
+  <14.314581,28.577938,86.728325>,
+  <14.269888,28.638422,86.591568>,
+  <14.178291,28.714256,86.490486>,
+  <14.053736,28.793898,86.440468>,
+  <13.915184,28.865221,86.449127>,
+  <13.783731,28.917370,86.515152>,
+  <13.679386,28.942402,86.628487>,
+  <13.618037,28.936508,86.771873>,
+  <13.609024,28.900585,86.923485>,
+  <13.653717,28.840101,87.060242>,
+  <13.745314,28.764267,87.161324>,
+  <13.869869,28.684626,87.211342>,
+  <14.008421,28.613302,87.202682>,
+  <14.139874,28.561153,87.136658>,
+  <14.615323,29.097414,87.127251>,
+  <14.657118,29.081127,86.977760>,
+  <14.651125,29.102249,86.823242>,
+  <14.598255,29.157562,86.687210>,
+  <14.506559,29.238646,86.590385>,
+  <14.389996,29.333157,86.547501>,
+  <14.266311,29.426704,86.565079>,
+  <14.154335,29.505051,86.640457>,
+  <14.071115,29.556265,86.762154>,
+  <14.029320,29.572552,86.911644>,
+  <14.035313,29.551430,87.066162>,
+  <14.088182,29.496117,87.202194>,
+  <14.179878,29.415033,87.299019>,
+  <14.296442,29.320522,87.341904>,
+  <14.420127,29.226974,87.324326>,
+  <14.532103,29.148628,87.248947>,
+  <15.066348,29.584900,87.114990>,
+  <15.079579,29.545300,86.964607>,
+  <15.051231,29.550089,86.811203>,
+  <14.985620,29.598539,86.678139>,
+  <14.892735,29.683273,86.585670>,
+  <14.786715,29.791393,86.547874>,
+  <14.683702,29.906435,86.570503>,
+  <14.599379,30.010889,86.650108>,
+  <14.546582,30.088848,86.774582>,
+  <14.533351,30.128448,86.924965>,
+  <14.561699,30.123659,87.078369>,
+  <14.627310,30.075209,87.211433>,
+  <14.720196,29.990475,87.303902>,
+  <14.826216,29.882355,87.341698>,
+  <14.929229,29.767313,87.319069>,
+  <15.013552,29.662859,87.239464>,
+  <15.559275,29.953098,86.949570>,
+  <15.531759,29.894381,86.807610>,
+  <15.471396,29.886911,86.663872>,
+  <15.387376,29.931826,86.540253>,
+  <15.292489,30.022287,86.455566>,
+  <15.201182,30.144524,86.422707>,
+  <15.127355,30.279926,86.446678>,
+  <15.082247,30.407879,86.523827>,
+  <15.072725,30.508904,86.642410>,
+  <15.100241,30.567621,86.784370>,
+  <15.160604,30.575090,86.928108>,
+  <15.244624,30.530176,87.051727>,
+  <15.339511,30.439714,87.136414>,
+  <15.430818,30.317478,87.169273>,
+  <15.504645,30.182076,87.145302>,
+  <15.549753,30.054123,87.068153>,
+  <16.051310,30.171965,86.613976>,
+  <15.980446,30.108158,86.490425>,
+  <15.887562,30.101105,86.365196>,
+  <15.786798,30.151875,86.257362>,
+  <15.693495,30.252739,86.183342>,
+  <15.621857,30.388346,86.154404>,
+  <15.582791,30.538046,86.174942>,
+  <15.582244,30.679052,86.241844>,
+  <15.620299,30.789896,86.344917>,
+  <15.691164,30.853703,86.468468>,
+  <15.784048,30.860756,86.593697>,
+  <15.884812,30.809986,86.701530>,
+  <15.978115,30.709122,86.775551>,
+  <16.049753,30.573515,86.804489>,
+  <16.088820,30.423815,86.783951>,
+  <16.089365,30.282808,86.717049>,
+  <16.505526,30.260290,86.139633>,
+  <16.400494,30.205683,86.037926>,
+  <16.284418,30.210909,85.933723>,
+  <16.174969,30.275177,85.842896>,
+  <16.088812,30.388697,85.779274>,
+  <16.039061,30.534191,85.752533>,
+  <16.033289,30.689507,85.766754>,
+  <16.072380,30.830999,85.819763>,
+  <16.150377,30.937128,85.903503>,
+  <16.255409,30.991735,86.005211>,
+  <16.371485,30.986509,86.109413>,
+  <16.480934,30.922241,86.200241>,
+  <16.567091,30.808722,86.263863>,
+  <16.616842,30.663227,86.290604>,
+  <16.622614,30.507912,86.276382>,
+  <16.583523,30.366419,86.223373>,
+  <16.887152,30.244387,85.565788>,
+  <16.757826,30.207375,85.486641>,
+  <16.627926,30.231123,85.403450>,
+  <16.517225,30.312014,85.328880>,
+  <16.442579,30.437735,85.274284>,
+  <16.415350,30.589142,85.247971>,
+  <16.439686,30.743191,85.253944>,
+  <16.511879,30.876425,85.291298>,
+  <16.620939,30.968561,85.354347>,
+  <16.750265,31.005573,85.433495>,
+  <16.880165,30.981825,85.516685>,
+  <16.990866,30.900934,85.591255>,
+  <17.065512,30.775213,85.645851>,
+  <17.092741,30.623806,85.672165>,
+  <17.068405,30.469757,85.666191>,
+  <16.996212,30.336523,85.628838>,
+  <17.160152,30.148279,84.932266>,
+  <17.014471,30.133699,84.878204>,
+  <16.878109,30.178898,84.817207>,
+  <16.771826,30.276993,84.758553>,
+  <16.711803,30.413052,84.711189>,
+  <16.707176,30.566359,84.682312>,
+  <16.758652,30.713575,84.676323>,
+  <16.858393,30.832291,84.694130>,
+  <16.991215,30.904428,84.733032>,
+  <17.136896,30.919008,84.787094>,
+  <17.273258,30.873810,84.848091>,
+  <17.379541,30.775715,84.906746>,
+  <17.439564,30.639656,84.954109>,
+  <17.444191,30.486349,84.982986>,
+  <17.392715,30.339132,84.988976>,
+  <17.292974,30.220417,84.971169>,
+  <17.288492,29.995714,84.280945>,
+  <17.134647,30.007412,84.257423>,
+  <16.999044,30.075909,84.221664>,
+  <16.902327,30.190773,84.179123>,
+  <16.859219,30.334522,84.136261>,
+  <16.876286,30.485268,84.099609>,
+  <16.950928,30.620060,84.074753>,
+  <17.071779,30.718382,84.065475>,
+  <17.220446,30.765261,84.073181>,
+  <17.374290,30.753563,84.096703>,
+  <17.509893,30.685066,84.132462>,
+  <17.606611,30.570202,84.175003>,
+  <17.649719,30.426453,84.217865>,
+  <17.632652,30.275707,84.254517>,
+  <17.558010,30.140915,84.279373>,
+  <17.437159,30.042593,84.288651>,
+  <17.239740,29.810881,83.654930>,
+  <17.089630,29.851788,83.667274>,
+  <16.964241,29.944336,83.658867>,
+  <16.882660,30.074436,83.630997>,
+  <16.857307,30.222282,83.587898>,
+  <16.892042,30.365366,83.536140>,
+  <16.981579,30.481905,83.483604>,
+  <17.112286,30.554155,83.438278>,
+  <17.264261,30.571119,83.407066>,
+  <17.414371,30.530212,83.394722>,
+  <17.539761,30.437664,83.403130>,
+  <17.621342,30.307564,83.431000>,
+  <17.646694,30.159718,83.474098>,
+  <17.611959,30.016634,83.525856>,
+  <17.522423,29.900095,83.578392>,
+  <17.391716,29.827845,83.623718>,
+  <17.000053,29.615152,83.086174>,
+  <16.866875,29.683311,83.130630>,
+  <16.760561,29.796736,83.144463>,
+  <16.697300,29.938154,83.125565>,
+  <16.686722,30.086040,83.076813>,
+  <16.730436,30.217878,83.005638>,
+  <16.821789,30.313599,82.922867>,
+  <16.946871,30.358625,82.841103>,
+  <17.086639,30.346106,82.772789>,
+  <17.219818,30.277946,82.728333>,
+  <17.326132,30.164522,82.714500>,
+  <17.389393,30.023104,82.733398>,
+  <17.399971,29.875217,82.782150>,
+  <17.356256,29.743380,82.853325>,
+  <17.264904,29.647659,82.936096>,
+  <17.139822,29.602633,83.017860>,
+  <16.597389,29.428396,82.588074>,
+  <16.488386,29.518778,82.653709>,
+  <16.405119,29.648090,82.680229>,
+  <16.360264,29.796650,82.663589>,
+  <16.360649,29.941837,82.606331>,
+  <16.406218,30.061548,82.517159>,
+  <16.490028,30.137562,82.409660>,
+  <16.599327,30.158300,82.300194>,
+  <16.717468,30.120611,82.205429>,
+  <16.826471,30.030230,82.139793>,
+  <16.909739,29.900917,82.113274>,
+  <16.954594,29.752357,82.129913>,
+  <16.954208,29.607170,82.187172>,
+  <16.908640,29.487459,82.276344>,
+  <16.824829,29.411446,82.383842>,
+  <16.715530,29.390707,82.493309>,
+  <16.067081,29.275623,82.180161>,
+  <15.986113,29.384644,82.257080>,
+  <15.928061,29.526201,82.287903>,
+  <15.901764,29.678741,82.267944>,
+  <15.911225,29.819042,82.200233>,
+  <15.955005,29.925745,82.095085>,
+  <16.026438,29.982605,81.968506>,
+  <16.114647,29.980965,81.839760>,
+  <16.206207,29.921074,81.728455>,
+  <16.287176,29.812054,81.651535>,
+  <16.345228,29.670496,81.620712>,
+  <16.371525,29.517956,81.640671>,
+  <16.362062,29.377655,81.708382>,
+  <16.318283,29.270952,81.813530>,
+  <16.246851,29.214092,81.940109>,
+  <16.158642,29.215733,82.068855>,
+  <15.451252,29.185350,81.886772>,
+  <15.402857,29.310541,81.966423>,
+  <15.372811,29.461212,81.993889>,
+  <15.365688,29.614420,81.964996>,
+  <15.382572,29.746845,81.884148>,
+  <15.420894,29.838326,81.763641>,
+  <15.474817,29.874933,81.621826>,
+  <15.536135,29.851095,81.480301>,
+  <15.595510,29.770441,81.360603>,
+  <15.643906,29.645250,81.280952>,
+  <15.673951,29.494579,81.253487>,
+  <15.681074,29.341372,81.282379>,
+  <15.664190,29.208946,81.363228>,
+  <15.625869,29.117466,81.483734>,
+  <15.571945,29.080858,81.625549>,
+  <15.510628,29.104696,81.767075>,
+  <14.800196,29.185177,81.729820>,
+  <14.790338,29.322786,81.802795>,
+  <14.791091,29.478067,81.818466>,
+  <14.802340,29.627382,81.774452>,
+  <14.822373,29.747995,81.677444>,
+  <14.848140,29.821548,81.542229>,
+  <14.875718,29.836842,81.389374>,
+  <14.900909,29.791546,81.242157>,
+  <14.919878,29.692558,81.122993>,
+  <14.929736,29.554949,81.050018>,
+  <14.928983,29.399668,81.034348>,
+  <14.917734,29.250353,81.078362>,
+  <14.897700,29.129740,81.175369>,
+  <14.871934,29.056187,81.310585>,
+  <14.844356,29.040894,81.463440>,
+  <14.819164,29.086189,81.610657>,
+  <14.167265,29.294300,81.722069>,
+  <14.199076,29.436632,81.777634>,
+  <14.229353,29.589678,81.773277>,
+  <14.253487,29.730137,81.709656>,
+  <14.267802,29.836624,81.596458>,
+  <14.270122,29.892929,81.450912>,
+  <14.260091,29.890482,81.295189>,
+  <14.239237,29.829651,81.152977>,
+  <14.210735,29.719700,81.045937>,
+  <14.178925,29.577368,80.990372>,
+  <14.148647,29.424322,80.994728>,
+  <14.124514,29.283863,81.058350>,
+  <14.110198,29.177376,81.171547>,
+  <14.107879,29.121071,81.317093>,
+  <14.117909,29.123518,81.472816>,
+  <14.138763,29.184349,81.615028>,
+  <13.583581,29.514772,81.859711>,
+  <13.649958,29.652420,81.891426>,
+  <13.701211,29.797377,81.864609>,
+  <13.729538,29.927574,81.783340>,
+  <13.730626,30.023191,81.659988>,
+  <13.704309,30.069672,81.513344>,
+  <13.654595,30.059938,81.365723>,
+  <13.589052,29.995474,81.239594>,
+  <13.517657,29.886091,81.154175>,
+  <13.451281,29.748444,81.122459>,
+  <13.400027,29.603487,81.149277>,
+  <13.371700,29.473289,81.230545>,
+  <13.370612,29.377672,81.353897>,
+  <13.396929,29.331192,81.500542>,
+  <13.446643,29.340925,81.648163>,
+  <13.512186,29.405390,81.774292>,
+  <13.059628,29.834000,82.112610>,
+  <13.149182,29.961622,82.119743>,
+  <13.212536,30.096151,82.072334>,
+  <13.240043,30.217104,81.977615>,
+  <13.227514,30.306068,81.849998>,
+  <13.176860,30.349501,81.708908>,
+  <13.095790,30.340786,81.575829>,
+  <12.996646,30.281254,81.471016>,
+  <12.894524,30.179966,81.410431>,
+  <12.804969,30.052343,81.403297>,
+  <12.741615,29.917814,81.450706>,
+  <12.714108,29.796862,81.545425>,
+  <12.726637,29.707897,81.673042>,
+  <12.777291,29.664465,81.814133>,
+  <12.858361,29.673180,81.947212>,
+  <12.957505,29.732712,82.052025>,
+  <12.623086,30.241398,82.445160>,
+  <12.727533,30.355927,82.426926>,
+  <12.797114,30.478212,82.359375>,
+  <12.821235,30.589638,82.252785>,
+  <12.796223,30.673241,82.123390>,
+  <12.725886,30.716291,81.990883>,
+  <12.620933,30.712238,81.875443>,
+  <12.497341,30.661697,81.794640>,
+  <12.373927,30.572361,81.760773>,
+  <12.269480,30.457832,81.779007>,
+  <12.199899,30.335546,81.846558>,
+  <12.175778,30.224121,81.953148>,
+  <12.200790,30.140518,82.082542>,
+  <12.271127,30.097467,82.215050>,
+  <12.376081,30.101521,82.330490>,
+  <12.499672,30.152061,82.411293>,
+  <12.311476,30.721766,82.813881>,
+  <12.423858,30.819288,82.766785>,
+  <12.493793,30.926111,82.677032>,
+  <12.510634,31.025969,82.558273>,
+  <12.471818,31.103659,82.428596>,
+  <12.383254,31.147354,82.307739>,
+  <12.258425,31.150404,82.214111>,
+  <12.116334,31.112341,82.161957>,
+  <11.978615,31.038961,82.159218>,
+  <11.866233,30.941439,82.206314>,
+  <11.796298,30.834616,82.296066>,
+  <11.779456,30.734758,82.414825>,
+  <11.818273,30.657068,82.544502>,
+  <11.906837,30.613373,82.665359>,
+  <12.031666,30.610323,82.758987>,
+  <12.173757,30.648386,82.811142>,
+  <12.161744,31.252388,83.166977>,
+  <12.272224,31.326729,83.085571>,
+  <12.333166,31.413389,82.970970>,
+  <12.335293,31.499180,82.840607>,
+  <12.278278,31.571035,82.714333>,
+  <12.170805,31.618019,82.611374>,
+  <12.029233,31.632978,82.547401>,
+  <11.875116,31.613634,82.532158>,
+  <11.731917,31.562931,82.567963>,
+  <11.621437,31.488590,82.649368>,
+  <11.560495,31.401930,82.763969>,
+  <11.558369,31.316139,82.894333>,
+  <11.615383,31.244284,83.020607>,
+  <11.722857,31.197300,83.123566>,
+  <11.864429,31.182341,83.187538>,
+  <12.018545,31.201685,83.202782>,
+  <12.197362,31.800587,83.450554>,
+  <12.290605,31.845760,83.333832>,
+  <12.329557,31.909697,83.196884>,
+  <12.308290,31.982660,83.060570>,
+  <12.230040,32.053547,82.945633>,
+  <12.106721,32.111557,82.869568>,
+  <11.957106,32.147869,82.843964>,
+  <11.803973,32.156948,82.872711>,
+  <11.670636,32.137413,82.951439>,
+  <11.577394,32.092239,83.068161>,
+  <11.538441,32.028301,83.205109>,
+  <11.559709,31.955339,83.341423>,
+  <11.637959,31.884455,83.456360>,
+  <11.761277,31.826441,83.532425>,
+  <11.910892,31.790131,83.558029>,
+  <12.064025,31.781052,83.529282>,
+  <12.410896,32.341419,83.638634>,
+  <12.474967,32.359726,83.497498>,
+  <12.485492,32.406036,83.348831>,
+  <12.440866,32.473305,83.215256>,
+  <12.347886,32.551285,83.117111>,
+  <12.220706,32.628105,83.069336>,
+  <12.078689,32.692074,83.079208>,
+  <11.943454,32.733452,83.145226>,
+  <11.835590,32.745937,83.257332>,
+  <11.771520,32.727631,83.398468>,
+  <11.760995,32.681320,83.547134>,
+  <11.805620,32.614052,83.680710>,
+  <11.898601,32.536072,83.778854>,
+  <12.025781,32.459251,83.826630>,
+  <12.167798,32.395283,83.816757>,
+  <12.303033,32.353905,83.750740>,
+  <12.764234,32.868343,83.735680>,
+  <12.797705,32.867641,83.583237>,
+  <12.782425,32.903416,83.432091>,
+  <12.720721,32.970211,83.305244>,
+  <12.621986,33.057865,83.222015>,
+  <12.501253,33.153027,83.195076>,
+  <12.376902,33.241215,83.228516>,
+  <12.267862,33.308998,83.317253>,
+  <12.190738,33.346058,83.447777>,
+  <12.157267,33.346760,83.600220>,
+  <12.172546,33.310986,83.751366>,
+  <12.234250,33.244190,83.878212>,
+  <12.332985,33.156536,83.961441>,
+  <12.453718,33.061375,83.988380>,
+  <12.578070,32.973186,83.954941>,
+  <12.687109,32.905403,83.866203>,
+  <13.220514,33.364666,83.731384>,
+  <13.224480,33.350361,83.576019>,
+  <13.186081,33.379257,83.427528>,
+  <13.111162,33.446953,83.308517>,
+  <13.011130,33.543144,83.237114>,
+  <12.901213,33.653187,83.224174>,
+  <12.798145,33.760330,83.271675>,
+  <12.717618,33.848255,83.372383>,
+  <12.671890,33.903584,83.510971>,
+  <12.667925,33.917889,83.666336>,
+  <12.706324,33.888992,83.814827>,
+  <12.781242,33.821297,83.933838>,
+  <12.881274,33.725105,84.005241>,
+  <12.991192,33.615063,84.018181>,
+  <13.094259,33.507919,83.970680>,
+  <13.174787,33.419994,83.869972>,
+  <13.735056,33.803562,83.609344>,
+  <13.708348,33.778450,83.457634>,
+  <13.646706,33.802143,83.316223>,
+  <13.559512,33.871037,83.206635>,
+  <13.460043,33.974636,83.145554>,
+  <13.363441,34.097176,83.142273>,
+  <13.284412,34.219997,83.197304>,
+  <13.234989,34.324402,83.302261>,
+  <13.222696,34.394497,83.441162>,
+  <13.249404,34.419609,83.592873>,
+  <13.311047,34.395916,83.734283>,
+  <13.398240,34.327023,83.843872>,
+  <13.497709,34.223423,83.904953>,
+  <13.594312,34.100883,83.908234>,
+  <13.673340,33.978062,83.853203>,
+  <13.722763,33.873657,83.748245>,
+  <14.256071,34.156025,83.355469>,
+  <14.194999,34.122707,83.215767>,
+  <14.108042,34.143246,83.087799>,
+  <14.008441,34.214512,82.991058>,
+  <13.911358,34.325661,82.940262>,
+  <13.831573,34.459766,82.943161>,
+  <13.781235,34.596416,82.999298>,
+  <13.768003,34.714806,83.100128>,
+  <13.793896,34.796909,83.230316>,
+  <13.854968,34.830227,83.370018>,
+  <13.941925,34.809689,83.497986>,
+  <14.041526,34.738422,83.594727>,
+  <14.138609,34.627274,83.645523>,
+  <14.218393,34.493168,83.642624>,
+  <14.268732,34.356518,83.586487>,
+  <14.281963,34.238129,83.485657>,
+  <14.728802,34.395058,82.961739>,
+  <14.631324,34.358971,82.845314>,
+  <14.519029,34.381046,82.739197>,
+  <14.409013,34.457924,82.659538>,
+  <14.318026,34.577892,82.618469>,
+  <14.259917,34.722694,82.622238>,
+  <14.243536,34.870285,82.670273>,
+  <14.271376,34.998192,82.755264>,
+  <14.339197,35.086945,82.864265>,
+  <14.436675,35.123032,82.980690>,
+  <14.548970,35.100956,83.086807>,
+  <14.658986,35.024078,83.166466>,
+  <14.749973,34.904110,83.207535>,
+  <14.808082,34.759308,83.203766>,
+  <14.824463,34.611717,83.155731>,
+  <14.796623,34.483810,83.070740>,
+  <15.112459,34.508446,82.433823>,
+  <14.985744,34.477829,82.348007>,
+  <14.855223,34.507729,82.267830>,
+  <14.740768,34.593594,82.205490>,
+  <14.659804,34.722347,82.170486>,
+  <14.624657,34.874393,82.168137>,
+  <14.640676,35.026581,82.198814>,
+  <14.705425,35.155743,82.257835>,
+  <14.809044,35.242210,82.336227>,
+  <14.935760,35.272827,82.422043>,
+  <15.066280,35.242928,82.502220>,
+  <15.180735,35.157063,82.564560>,
+  <15.261699,35.028309,82.599564>,
+  <15.296846,34.876263,82.601913>,
+  <15.280827,34.724075,82.571236>,
+  <15.216078,34.594913,82.512215>,
+  <15.391352,34.514442,81.808426>,
+  <15.246754,34.496147,81.752617>,
+  <15.107434,34.538513,81.696457>,
+  <14.994603,34.635098,81.648514>,
+  <14.925438,34.771194,81.616066>,
+  <14.910469,34.926086,81.604073>,
+  <14.951975,35.076187,81.614349>,
+  <15.043636,35.198647,81.645332>,
+  <15.171499,35.274826,81.692307>,
+  <15.316097,35.293121,81.748116>,
+  <15.455417,35.250755,81.804276>,
+  <15.568248,35.154171,81.852219>,
+  <15.637413,35.018074,81.884666>,
+  <15.652382,34.863182,81.896660>,
+  <15.610876,34.713081,81.886383>,
+  <15.519215,34.590622,81.855400>,
+  <15.544800,34.434570,81.132988>,
+  <15.391174,34.434223,81.105461>,
+  <15.250699,34.492950,81.071159>,
+  <15.144761,34.601807,81.035301>,
+  <15.089488,34.744221,81.003349>,
+  <15.093295,34.898518,80.980164>,
+  <15.155602,35.041199,80.969276>,
+  <15.266923,35.150543,80.972343>,
+  <15.410311,35.209908,80.988899>,
+  <15.563936,35.210255,81.016426>,
+  <15.704412,35.151527,81.050728>,
+  <15.810349,35.042671,81.086586>,
+  <15.865623,34.900257,81.118538>,
+  <15.861815,34.745960,81.141724>,
+  <15.799509,34.603279,81.152611>,
+  <15.688188,34.493935,81.149544>,
+  <15.549162,34.293221,80.463120>,
+  <15.394984,34.317451,80.463959>,
+  <15.261465,34.397102,80.450279>,
+  <15.168929,34.520042,80.424179>,
+  <15.131466,34.667557,80.389610>,
+  <15.154778,34.817184,80.351852>,
+  <15.235317,34.946152,80.316643>,
+  <15.360822,35.034824,80.289352>,
+  <15.512184,35.069695,80.274124>,
+  <15.666362,35.045464,80.273285>,
+  <15.799881,34.965813,80.286964>,
+  <15.892417,34.842873,80.313065>,
+  <15.929880,34.695358,80.347633>,
+  <15.906568,34.545731,80.385391>,
+  <15.826029,34.416763,80.420601>,
+  <15.700524,34.328091,80.447891>,
+  <15.387440,34.121216,79.861786>,
+  <15.244971,34.177742,79.891220>,
+  <15.129500,34.282661,79.895393>,
+  <15.058608,34.419998,79.873680>,
+  <15.043085,34.568844,79.829384>,
+  <15.085296,34.706539,79.769249>,
+  <15.178814,34.812126,79.702431>,
+  <15.309402,34.869522,79.639099>,
+  <15.457180,34.869995,79.588898>,
+  <15.599648,34.813469,79.559464>,
+  <15.715119,34.708549,79.555290>,
+  <15.786012,34.571213,79.577003>,
+  <15.801535,34.422367,79.621300>,
+  <15.759324,34.284672,79.681435>,
+  <15.665806,34.179085,79.748253>,
+  <15.535217,34.121689,79.811584>,
+  <15.063912,33.951118,79.386955>,
+  <14.949140,34.042934,79.439453>,
+  <14.862510,34.172058,79.452904>,
+  <14.817211,34.318832,79.425270>,
+  <14.820142,34.460915,79.360748>,
+  <14.870854,34.576672,79.269165>,
+  <14.961628,34.648479,79.164467>,
+  <15.078644,34.665409,79.062592>,
+  <15.204087,34.624886,78.979042>,
+  <15.318860,34.533070,78.926544>,
+  <15.405490,34.403946,78.913094>,
+  <15.450788,34.257172,78.940727>,
+  <15.447858,34.115089,79.005249>,
+  <15.397145,33.999332,79.096832>,
+  <15.306372,33.927525,79.201530>,
+  <15.189356,33.910595,79.303406>,
+  <14.595970,33.794682,79.052429>,
+  <14.516088,33.913250,79.115028>,
+  <14.458147,34.057671,79.127045>,
+  <14.430966,34.205952,79.086639>,
+  <14.438685,34.335522,78.999977>,
+  <14.480128,34.426655,78.880249>,
+  <14.548985,34.465477,78.745674>,
+  <14.634775,34.446075,78.616745>,
+  <14.724436,34.371403,78.513092>,
+  <14.804317,34.252834,78.450493>,
+  <14.862259,34.108414,78.438477>,
+  <14.889440,33.960133,78.478882>,
+  <14.881721,33.830563,78.565544>,
+  <14.840278,33.739429,78.685272>,
+  <14.771420,33.700607,78.819847>,
+  <14.685631,33.720009,78.948776>,
+  <14.007320,33.662197,78.834862>,
+  <13.958967,33.797138,78.896599>,
+  <13.924031,33.949173,78.901451>,
+  <13.907832,34.095154,78.848671>,
+  <13.912837,34.212860,78.746307>,
+  <13.938282,34.284370,78.609932>,
+  <13.980294,34.298798,78.460320>,
+  <14.032478,34.253948,78.320236>,
+  <14.086889,34.156643,78.211006>,
+  <14.135242,34.021702,78.149269>,
+  <14.170178,33.869667,78.144417>,
+  <14.186378,33.723686,78.197197>,
+  <14.181373,33.605980,78.299561>,
+  <14.155928,33.534470,78.435936>,
+  <14.113915,33.520042,78.585548>,
+  <14.061731,33.564892,78.725632>,
+  <13.338232,33.585640,78.730354>,
+  <13.318744,33.730892,78.784019>,
+  <13.304597,33.886200,78.777855>,
+  <13.297944,34.027920,78.712814>,
+  <13.299799,34.134468,78.598785>,
+  <13.309877,34.189632,78.453140>,
+  <13.326647,34.185009,78.298035>,
+  <13.347554,34.121307,78.157104>,
+  <13.369415,34.008217,78.051781>,
+  <13.388904,33.862965,77.998116>,
+  <13.403050,33.707657,78.004280>,
+  <13.409703,33.565937,78.069321>,
+  <13.407848,33.459389,78.183350>,
+  <13.397770,33.404224,78.328995>,
+  <13.381001,33.408848,78.484100>,
+  <13.360093,33.472549,78.625031>,
+  <12.648391,33.603279,78.735748>,
+  <12.659030,33.754288,78.773720>,
+  <12.666692,33.908501,78.750954>,
+  <12.670208,34.042439,78.670914>,
+  <12.669044,34.135715,78.545792>,
+  <12.663379,34.174126,78.394623>,
+  <12.654072,34.151825,78.240433>,
+  <12.642542,34.072208,78.106689>,
+  <12.630544,33.947395,78.013763>,
+  <12.619905,33.796387,77.975792>,
+  <12.612243,33.642174,77.998558>,
+  <12.608727,33.508236,78.078598>,
+  <12.609890,33.414959,78.203720>,
+  <12.615556,33.376549,78.354889>,
+  <12.624863,33.398849,78.509079>,
+  <12.636393,33.478466,78.642822>,
+  <12.008726,33.750851,78.839218>,
+  <12.053086,33.900063,78.850449>,
+  <12.083755,34.045376,78.802467>,
+  <12.096063,34.164665,78.702583>,
+  <12.088137,34.239773,78.566002>,
+  <12.061183,34.259262,78.413513>,
+  <12.019304,34.220161,78.268333>,
+  <11.968878,34.128433,78.152573>,
+  <11.917580,33.998035,78.083847>,
+  <11.873219,33.848824,78.072617>,
+  <11.842550,33.703510,78.120598>,
+  <11.830243,33.584221,78.220482>,
+  <11.838169,33.509113,78.357063>,
+  <11.865123,33.489624,78.509552>,
+  <11.907001,33.528725,78.654732>,
+  <11.957428,33.620453,78.770493>,
+  <11.492823,34.046352,79.015999>,
+  <11.569297,34.179718,78.989090>,
+  <11.617560,34.304600,78.908875>,
+  <11.630267,34.401985,78.787582>,
+  <11.605481,34.457054,78.643661>,
+  <11.546977,34.461414,78.499039>,
+  <11.463661,34.414410,78.375717>,
+  <11.368217,34.323193,78.292480>,
+  <11.275177,34.201649,78.262001>,
+  <11.198703,34.068283,78.288910>,
+  <11.150439,33.943401,78.369125>,
+  <11.137733,33.846016,78.490417>,
+  <11.162519,33.790947,78.634338>,
+  <11.221023,33.786587,78.778961>,
+  <11.304338,33.833591,78.902283>,
+  <11.399782,33.924809,78.985519>,
+  <11.130215,34.475063,79.242233>,
+  <11.225308,34.581448,79.178993>,
+  <11.278643,34.681637,79.071869>,
+  <11.282096,34.760387,78.937164>,
+  <11.235144,34.805706,78.795395>,
+  <11.144935,34.810696,78.668129>,
+  <11.025201,34.774593,78.574753>,
+  <10.894172,34.702896,78.529480>,
+  <10.771795,34.606525,78.539200>,
+  <10.676702,34.500141,78.602440>,
+  <10.623367,34.399952,78.709564>,
+  <10.619914,34.321201,78.844269>,
+  <10.666866,34.275883,78.986038>,
+  <10.757075,34.270893,79.113304>,
+  <10.876809,34.306995,79.206680>,
+  <11.007838,34.378693,79.251953>,
+  <10.899679,35.007420,79.503326>,
+  <11.000126,35.086872,79.414131>,
+  <11.050732,35.166729,79.289948>,
+  <11.043790,35.234829,79.149689>,
+  <10.980359,35.280804,79.014702>,
+  <10.870096,35.297653,78.905540>,
+  <10.729786,35.282818,78.838821>,
+  <10.580791,35.238548,78.824699>,
+  <10.445793,35.171589,78.865326>,
+  <10.345346,35.092136,78.954521>,
+  <10.294741,35.012280,79.078705>,
+  <10.301682,34.944180,79.218964>,
+  <10.365113,34.898205,79.353951>,
+  <10.475376,34.881355,79.463112>,
+  <10.615686,34.896191,79.529831>,
+  <10.764682,34.940460,79.543953>,
+  <10.803241,35.615273,79.772171>,
+  <10.901044,35.670177,79.663643>,
+  <10.945045,35.732944,79.527687>,
+  <10.928546,35.794010,79.385010>,
+  <10.854058,35.844090,79.257332>,
+  <10.732923,35.875549,79.164085>,
+  <10.583581,35.883602,79.119469>,
+  <10.428768,35.867023,79.130272>,
+  <10.292054,35.828339,79.194855>,
+  <10.194251,35.773434,79.303383>,
+  <10.150250,35.710667,79.439339>,
+  <10.166749,35.649601,79.582016>,
+  <10.241237,35.599522,79.709694>,
+  <10.362372,35.568062,79.802940>,
+  <10.511714,35.560009,79.847557>,
+  <10.666527,35.576588,79.836754>,
+  <10.850258,36.255581,80.008591>,
+  <10.937792,36.286552,79.883148>,
+  <10.969972,36.333176,79.737717>,
+  <10.941896,36.388355,79.594452>,
+  <10.857842,36.443687,79.475151>,
+  <10.730606,36.490753,79.397987>,
+  <10.579556,36.522385,79.374710>,
+  <10.427691,36.533768,79.408852>,
+  <10.298128,36.523167,79.495224>,
+  <10.210594,36.492195,79.620667>,
+  <10.178414,36.445572,79.766098>,
+  <10.206490,36.390392,79.909363>,
+  <10.290544,36.335060,80.028664>,
+  <10.417780,36.287994,80.105827>,
+  <10.568830,36.256363,80.129105>,
+  <10.720695,36.244980,80.094963>,
+  <11.042333,36.874584,80.168503>,
+  <11.108713,36.881382,80.027420>,
+  <11.120609,36.912914,79.875031>,
+  <11.076208,36.964390,79.734535>,
+  <10.982270,37.027966,79.627335>,
+  <10.853098,37.093964,79.569740>,
+  <10.708355,37.152336,79.570518>,
+  <10.570079,37.194199,79.629555>,
+  <10.459319,37.213177,79.737869>,
+  <10.392939,37.206379,79.878952>,
+  <10.381042,37.174847,80.031342>,
+  <10.425444,37.123371,80.171837>,
+  <10.519382,37.059795,80.279037>,
+  <10.648554,36.993797,80.336632>,
+  <10.793297,36.935425,80.335854>,
+  <10.931573,36.893562,80.276817>,
+  <11.366428,37.416088,80.214867>,
+  <11.398946,37.401279,80.062935>,
+  <11.382298,37.422356,79.909195>,
+  <11.319019,37.476109,79.777039>,
+  <11.218742,37.554356,79.686592>,
+  <11.096735,37.645184,79.651627>,
+  <10.971570,37.734764,79.677460>,
+  <10.862304,37.809464,79.760162>,
+  <10.785570,37.857906,79.887138>,
+  <10.753053,37.872715,80.039070>,
+  <10.769700,37.851639,80.192810>,
+  <10.832979,37.797886,80.324966>,
+  <10.933256,37.719639,80.415413>,
+  <11.055264,37.628811,80.450378>,
+  <11.180429,37.539230,80.424545>,
+  <11.289695,37.464531,80.341843>,
+  <11.800858,37.851833,80.139069>,
+  <11.795918,37.823544,79.985657>,
+  <11.751875,37.841694,79.837036>,
+  <11.675436,37.903519,79.715820>,
+  <11.578238,37.999607,79.640465>,
+  <11.475078,38.115334,79.622452>,
+  <11.381661,38.233070,79.664513>,
+  <11.312209,38.334904,79.760246>,
+  <11.277297,38.405323,79.895081>,
+  <11.282238,38.433613,80.048492>,
+  <11.326281,38.415462,80.197113>,
+  <11.402719,38.353638,80.318329>,
+  <11.499918,38.257549,80.393684>,
+  <11.603078,38.141823,80.411697>,
+  <11.696494,38.024086,80.369637>,
+  <11.765946,37.922253,80.273903>,
+  <12.314312,38.193005,79.954437>,
+  <12.277033,38.159332,79.806671>,
+  <12.211745,38.179222,79.666313>,
+  <12.128388,38.249645,79.554726>,
+  <12.039653,38.359886,79.488914>,
+  <11.959047,38.493156,79.478874>,
+  <11.898844,38.629166,79.526154>,
+  <11.868207,38.747211,79.623550>,
+  <11.871801,38.829319,79.756226>,
+  <11.909081,38.862991,79.903992>,
+  <11.974368,38.843102,80.044350>,
+  <12.057725,38.772678,80.155937>,
+  <12.146461,38.662437,80.221748>,
+  <12.227066,38.529167,80.231789>,
+  <12.287270,38.393158,80.184509>,
+  <12.317906,38.275112,80.087112>,
+  <12.863229,38.439735,79.664703>,
+  <12.797677,38.405983,79.527145>,
+  <12.714490,38.430004,79.397293>,
+  <12.626330,38.508144,79.294922>,
+  <12.546620,38.628506,79.235611>,
+  <12.487495,38.772762,79.228386>,
+  <12.457955,38.918957,79.274353>,
+  <12.462500,39.044830,79.366516>,
+  <12.500434,39.131218,79.490845>,
+  <12.565986,39.164970,79.628403>,
+  <12.649173,39.140949,79.758255>,
+  <12.737332,39.062809,79.860626>,
+  <12.817042,38.942448,79.919937>,
+  <12.876167,38.798191,79.927162>,
+  <12.905707,38.651997,79.881195>,
+  <12.901163,38.526123,79.789032>,
+  <13.390969,38.586521,79.274994>,
+  <13.298181,38.557629,79.152870>,
+  <13.197952,38.588814,79.037369>,
+  <13.105544,38.675323,78.946075>,
+  <13.035023,38.803997,78.892883>,
+  <12.997127,38.955235,78.885895>,
+  <12.997623,39.106018,78.926170>,
+  <13.036438,39.233395,79.007584>,
+  <13.107661,39.317966,79.117737>,
+  <13.200450,39.346859,79.239861>,
+  <13.300678,39.315674,79.355362>,
+  <13.393086,39.229164,79.446655>,
+  <13.463608,39.100491,79.499847>,
+  <13.501504,38.949253,79.506836>,
+  <13.501007,38.798470,79.466560>,
+  <13.462193,38.671093,79.385147>,
+  <13.834323,38.630630,78.796684>,
+  <13.714526,38.613735,78.698082>,
+  <13.598517,38.657501,78.603294>,
+  <13.503957,38.755260,78.526749>,
+  <13.445242,38.892136,78.480095>,
+  <13.431310,39.047287,78.470436>,
+  <13.464282,39.197090,78.499252>,
+  <13.539139,39.318741,78.562141>,
+  <13.644485,39.393723,78.649544>,
+  <13.764281,39.410618,78.748146>,
+  <13.880290,39.366852,78.842934>,
+  <13.974851,39.269093,78.919479>,
+  <14.033566,39.132217,78.966133>,
+  <14.047498,38.977066,78.975792>,
+  <14.014525,38.827263,78.946976>,
+  <13.939669,38.705612,78.884087>,
+  <14.132781,38.576103,78.251389>,
+  <13.991230,38.580292,78.185783>,
+  <13.865630,38.643200,78.117775>,
+  <13.775102,38.755253,78.057709>,
+  <13.733426,38.899391,78.014748>,
+  <13.746950,39.053669,77.995415>,
+  <13.813613,39.194603,78.002663>,
+  <13.923267,39.300732,78.035385>,
+  <14.059218,39.355904,78.088608>,
+  <14.200769,39.351715,78.154213>,
+  <14.326369,39.288807,78.222221>,
+  <14.416898,39.176754,78.282288>,
+  <14.458573,39.032616,78.325249>,
+  <14.445049,38.878338,78.344582>,
+  <14.378386,38.737404,78.337334>,
+  <14.268732,38.631275,78.304611>,
+  <14.261539,38.434723,77.664764>,
+  <14.111306,38.462936,77.633255>,
+  <13.986130,38.545307,77.589622>,
+  <13.905067,38.669304,77.540504>,
+  <13.880459,38.816040,77.493370>,
+  <13.916051,38.963181,77.455414>,
+  <14.006426,39.088326,77.432396>,
+  <14.137825,39.172421,77.427834>,
+  <14.290243,39.202667,77.442413>,
+  <14.440476,39.174454,77.473923>,
+  <14.565653,39.092083,77.517555>,
+  <14.646715,38.968086,77.566673>,
+  <14.671324,38.821350,77.613808>,
+  <14.635732,38.674210,77.651764>,
+  <14.545357,38.549065,77.674782>,
+  <14.413958,38.464970,77.679344>,
+  <14.244621,38.223743,77.058357>,
+  <14.096281,38.272011,77.053436>,
+  <13.977034,38.369030,77.026497>,
+  <13.905033,38.500031,76.981628>,
+  <13.891242,38.645073,76.925667>,
+  <13.937758,38.782070,76.867134>,
+  <14.037501,38.890171,76.814941>,
+  <14.175286,38.952915,76.777031>,
+  <14.330135,38.960751,76.759178>,
+  <14.478476,38.912483,76.764099>,
+  <14.597723,38.815464,76.791039>,
+  <14.669724,38.684464,76.835907>,
+  <14.683515,38.539421,76.891869>,
+  <14.636998,38.402424,76.950401>,
+  <14.537255,38.294323,77.002594>,
+  <14.399470,38.231579,77.040504>,
+  <14.096035,37.963318,76.461311>,
+  <13.954967,38.028442,76.476036>,
+  <13.843841,38.136875,76.460159>,
+  <13.779575,38.272106,76.416100>,
+  <13.771955,38.413548,76.350571>,
+  <13.822140,38.539669,76.273537>,
+  <13.922489,38.631268,76.196732>,
+  <14.057725,38.674397,76.131851>,
+  <14.207260,38.662491,76.088768>,
+  <14.348329,38.597366,76.074043>,
+  <14.459455,38.488934,76.089920>,
+  <14.523720,38.353703,76.133980>,
+  <14.531340,38.212261,76.199509>,
+  <14.481155,38.086140,76.276543>,
+  <14.380806,37.994541,76.353348>,
+  <14.245570,37.951412,76.418228>,
+  <13.827695,37.680370,75.914322>,
+  <13.698117,37.762291,75.943596>,
+  <13.597734,37.881454,75.934547>,
+  <13.541829,38.019718,75.888550>,
+  <13.538912,38.156036,75.812599>,
+  <13.589427,38.269650,75.718269>,
+  <13.685683,38.343266,75.619919>,
+  <13.813028,38.365677,75.532509>,
+  <13.952073,38.333469,75.469360>,
+  <14.081651,38.251549,75.440086>,
+  <14.182034,38.132385,75.449135>,
+  <14.237939,37.994122,75.495132>,
+  <14.240856,37.857803,75.571083>,
+  <14.190341,37.744190,75.665413>,
+  <14.094085,37.670574,75.763763>,
+  <13.966740,37.648163,75.851173>,
+  <13.457701,37.407619,75.463058>,
+  <13.345360,37.508949,75.501396>,
+  <13.260104,37.639450,75.493652>,
+  <13.214913,37.779247,75.441002>,
+  <13.216667,37.907066,75.351456>,
+  <13.265099,38.003441,75.238647>,
+  <13.352835,38.053699,75.119759>,
+  <13.466518,38.050198,75.012886>,
+  <13.588842,37.993458,74.934296>,
+  <13.701183,37.892128,74.895958>,
+  <13.786439,37.761627,74.903702>,
+  <13.831630,37.621830,74.956352>,
+  <13.829876,37.494011,75.045898>,
+  <13.781445,37.397636,75.158707>,
+  <13.693708,37.347378,75.277596>,
+  <13.580025,37.350880,75.384468>,
+  <13.015332,37.181374,75.150803>,
+  <12.927514,37.304531,75.189262>,
+  <12.861845,37.445267,75.173782>,
+  <12.828323,37.582157,75.106735>,
+  <12.832050,37.694359,74.998314>,
+  <12.872460,37.764793,74.865028>,
+  <12.943400,37.782738,74.727173>,
+  <13.034071,37.745457,74.605736>,
+  <13.130668,37.658630,74.519196>,
+  <13.218486,37.535473,74.480736>,
+  <13.284155,37.394737,74.496216>,
+  <13.317677,37.257847,74.563263>,
+  <13.313950,37.145645,74.671684>,
+  <13.273540,37.075211,74.804970>,
+  <13.202600,37.057266,74.942825>,
+  <13.111929,37.094547,75.064262>,
+  <12.533657,37.017799,74.991211>,
+  <12.471548,37.158356,75.018501>,
+  <12.422670,37.303082,74.986504>,
+  <12.394463,37.429943,74.900078>,
+  <12.391221,37.519627,74.772392>,
+  <12.413439,37.558479,74.622871>,
+  <12.457733,37.540588,74.474289>,
+  <12.517361,37.468674,74.349266>,
+  <12.583244,37.353683,74.266830>,
+  <12.645353,37.213127,74.239540>,
+  <12.694231,37.068401,74.271538>,
+  <12.722439,36.941540,74.357964>,
+  <12.725680,36.851856,74.485649>,
+  <12.703463,36.813004,74.635170>,
+  <12.659168,36.830894,74.783752>,
+  <12.599541,36.902809,74.908775>,
+  <12.014043,36.897343,74.951126>,
+  <11.969644,37.046711,74.959854>,
+  <11.928623,37.188190,74.908287>,
+  <11.897226,37.300243,74.804283>,
+  <11.880234,37.365810,74.663673>,
+  <11.880232,37.374908,74.507866>,
+  <11.897222,37.326153,74.360580>,
+  <11.928615,37.226967,74.244240>,
+  <11.969634,37.092449,74.176559>,
+  <12.014033,36.943081,74.167831>,
+  <12.055054,36.801601,74.219398>,
+  <12.086451,36.689548,74.323402>,
+  <12.103443,36.623981,74.464012>,
+  <12.103445,36.614883,74.619820>,
+  <12.086455,36.663639,74.767105>,
+  <12.055062,36.762825,74.883446>,
+  <11.446293,36.809372,75.005280>,
+  <11.409575,36.960438,74.991486>,
+  <11.368899,37.092979,74.919815>,
+  <11.330458,37.186825,74.801178>,
+  <11.300103,37.227680,74.653641>,
+  <11.282456,37.209332,74.499657>,
+  <11.280204,37.134571,74.362679>,
+  <11.293689,37.014778,74.263550>,
+  <11.320858,36.868195,74.217361>,
+  <11.357575,36.717129,74.231155>,
+  <11.398252,36.584587,74.302826>,
+  <11.436693,36.490742,74.421463>,
+  <11.467048,36.449886,74.569000>,
+  <11.484694,36.468235,74.722984>,
+  <11.486947,36.542995,74.859962>,
+  <11.473462,36.662788,74.959091>,
+  <10.830729,36.754414,75.131096>,
+  <10.793494,36.900520,75.090797>,
+  <10.748735,37.017429,74.997589>,
+  <10.703267,37.087341,74.865669>,
+  <10.664010,37.099609,74.715111>,
+  <10.636942,37.052368,74.568840>,
+  <10.626183,36.952808,74.449135>,
+  <10.633371,36.816090,74.374199>,
+  <10.657413,36.663021,74.355461>,
+  <10.694648,36.516914,74.395760>,
+  <10.739407,36.400005,74.488968>,
+  <10.784875,36.330093,74.620888>,
+  <10.824132,36.317825,74.771446>,
+  <10.851200,36.365067,74.917717>,
+  <10.861959,36.464626,75.037422>,
+  <10.854771,36.601345,75.112358>,
+  <10.172123,36.734032,75.296440>,
+  <10.128718,36.865253,75.223946>,
+  <10.078467,36.955486,75.106934>,
+  <10.029018,36.990990,74.963219>,
+  <9.987901,36.966366,74.814690>,
+  <9.961373,36.885361,74.683952>,
+  <9.953475,36.760303,74.590904>,
+  <9.965409,36.610237,74.549728>,
+  <9.995358,36.458008,74.566673>,
+  <10.038762,36.326786,74.639168>,
+  <10.089013,36.236553,74.756180>,
+  <10.138462,36.201050,74.899895>,
+  <10.179580,36.225674,75.048424>,
+  <10.206107,36.306679,75.179161>,
+  <10.214005,36.431736,75.272209>,
+  <10.202071,36.581802,75.313385>,
+  <10.172123,36.734032,75.296440>,
+  <10.128718,36.865253,75.223946>,
+  <10.078467,36.955486,75.106934>,
+  <10.029018,36.990990,74.963219>,
+  <9.987901,36.966366,74.814690>,
+  <9.961373,36.885361,74.683952>,
+  <9.953475,36.760303,74.590904>,
+  <9.965409,36.610237,74.549728>,
+  <9.995358,36.458008,74.566673>,
+  <10.038762,36.326786,74.639168>,
+  <10.089013,36.236553,74.756180>,
+  <10.138462,36.201050,74.899895>,
+  <10.179580,36.225674,75.048424>,
+  <10.206107,36.306679,75.179161>,
+  <10.214005,36.431736,75.272209>,
+  <10.202071,36.581802,75.313385>,
+  <10.083740,36.596020,74.931557>
+ }
+ normal_vectors { 1554,
+  <-0.089493,-0.827717,0.553964>,
+  <-0.212110,-0.554847,0.804459>,
+  <-0.302434,-0.197506,0.932483>,
+  <-0.346716,0.189903,0.918545>,
+  <-0.338213,0.548401,0.764767>,
+  <-0.278221,0.823410,0.494560>,
+  <-0.175872,0.973062,0.149060>,
+  <-0.046748,0.974575,-0.219132>,
+  <0.089493,0.827717,-0.553964>,
+  <0.212110,0.554847,-0.804459>,
+  <0.302434,0.197506,-0.932483>,
+  <0.346716,-0.189903,-0.918545>,
+  <0.338213,-0.548401,-0.764767>,
+  <0.278221,-0.823410,-0.494560>,
+  <0.175872,-0.973062,-0.149060>,
+  <0.046748,-0.974575,0.219132>,
+  <0.936805,0.118917,0.329023>,
+  <-0.109499,-0.802437,0.586604>,
+  <-0.222566,-0.516528,0.826839>,
+  <-0.301750,-0.151983,0.941195>,
+  <-0.334994,0.235701,0.912263>,
+  <-0.317239,0.587501,0.744447>,
+  <-0.251187,0.849860,0.463296>,
+  <-0.146894,0.982835,0.111612>,
+  <-0.020238,0.966183,-0.257064>,
+  <0.109499,0.802437,-0.586604>,
+  <0.222566,0.516528,-0.826839>,
+  <0.301750,0.151983,-0.941195>,
+  <0.334994,-0.235701,-0.912263>,
+  <0.317239,-0.587501,-0.744447>,
+  <0.251187,-0.849860,-0.463296>,
+  <0.146894,-0.982835,-0.111612>,
+  <0.020238,-0.966183,0.257064>,
+  <-0.140840,-0.765736,0.627545>,
+  <-0.227671,-0.462324,0.856984>,
+  <-0.279841,-0.088527,0.955956>,
+  <-0.289409,0.298747,0.909392>,
+  <-0.254916,0.640539,0.724381>,
+  <-0.181614,0.884816,0.429089>,
+  <-0.080664,0.994387,0.068473>,
+  <0.032567,0.952571,-0.302568>,
+  <0.140840,0.765736,-0.627545>,
+  <0.227671,0.462324,-0.856984>,
+  <0.279841,0.088527,-0.955956>,
+  <0.289409,-0.298747,-0.909392>,
+  <0.254916,-0.640539,-0.724381>,
+  <0.181614,-0.884816,-0.429089>,
+  <0.080664,-0.994387,-0.068473>,
+  <-0.032567,-0.952571,0.302568>,
+  <-0.177550,-0.702226,0.689460>,
+  <-0.213990,-0.376605,0.901320>,
+  <-0.217852,0.006350,0.975961>,
+  <-0.188549,0.388338,0.902021>,
+  <-0.130540,0.711206,0.690757>,
+  <-0.052658,0.925799,0.374332>,
+  <0.033241,0.999447,0.000917>,
+  <0.114079,0.920938,-0.372637>,
+  <0.177550,0.702226,-0.689460>,
+  <0.213990,0.376605,-0.901320>,
+  <0.217852,-0.006350,-0.975961>,
+  <0.188549,-0.388338,-0.902021>,
+  <0.130540,-0.711206,-0.690757>,
+  <0.052658,-0.925799,-0.374332>,
+  <-0.033241,-0.999447,-0.000917>,
+  <-0.114079,-0.920938,0.372637>,
+  <-0.189060,-0.585520,0.788304>,
+  <-0.140076,-0.239015,0.960859>,
+  <-0.069767,0.143879,0.987133>,
+  <0.011164,0.504868,0.863124>,
+  <0.090395,0.788995,0.607713>,
+  <0.155864,0.953005,0.259783>,
+  <0.197604,0.971929,-0.127697>,
+  <0.209261,0.842885,-0.495736>,
+  <0.189060,0.585520,-0.788304>,
+  <0.140076,0.239015,-0.960859>,
+  <0.069767,-0.143879,-0.987133>,
+  <-0.011164,-0.504868,-0.863124>,
+  <-0.090395,-0.788995,-0.607713>,
+  <-0.155864,-0.953005,-0.259783>,
+  <-0.197604,-0.971929,0.127697>,
+  <-0.209261,-0.842885,0.495736>,
+  <-0.088937,-0.414973,0.905477>,
+  <0.074545,-0.072088,0.994609>,
+  <0.226679,0.281771,0.932321>,
+  <0.344303,0.592733,0.728095>,
+  <0.409510,0.813457,0.413024>,
+  <0.412373,0.910340,0.035073>,
+  <0.352456,0.868631,-0.348217>,
+  <0.238880,0.694681,-0.678494>,
+  <0.088937,0.414973,-0.905477>,
+  <-0.074545,0.072088,-0.994609>,
+  <-0.226679,-0.281771,-0.932321>,
+  <-0.344303,-0.592733,-0.728095>,
+  <-0.409510,-0.813457,-0.413024>,
+  <-0.412373,-0.910340,-0.035073>,
+  <-0.352456,-0.868631,0.348217>,
+  <-0.238880,-0.694681,0.678494>,
+  <0.151360,-0.307880,0.939308>,
+  <0.403777,-0.011357,0.914787>,
+  <0.594722,0.286894,0.750997>,
+  <0.695127,0.541468,0.472875>,
+  <0.689704,0.713609,0.122763>,
+  <0.579280,0.777109,-0.246040>,
+  <0.380666,0.722302,-0.577385>,
+  <0.124099,0.557530,-0.820829>,
+  <-0.151360,0.307880,-0.939308>,
+  <-0.403777,0.011357,-0.914787>,
+  <-0.594722,-0.286894,-0.750997>,
+  <-0.695127,-0.541468,-0.472875>,
+  <-0.689704,-0.713609,-0.122763>,
+  <-0.579280,-0.777109,0.246040>,
+  <-0.380666,-0.722302,0.577385>,
+  <-0.124099,-0.557530,0.820829>,
+  <0.362299,-0.324148,0.873881>,
+  <0.647736,-0.085135,0.757093>,
+  <0.834561,0.166839,0.525045>,
+  <0.894332,0.393414,0.213064>,
+  <0.817949,0.560095,-0.131355>,
+  <0.617040,0.641506,-0.455775>,
+  <0.322193,0.625254,-0.710809>,
+  <-0.021705,0.513813,-0.857628>,
+  <-0.362299,0.324148,-0.873881>,
+  <-0.647736,0.085135,-0.757093>,
+  <-0.834561,-0.166839,-0.525045>,
+  <-0.894332,-0.393414,-0.213064>,
+  <-0.817949,-0.560095,0.131355>,
+  <-0.617040,-0.641506,0.455775>,
+  <-0.322193,-0.625254,0.710809>,
+  <0.021705,-0.513813,0.857628>,
+  <0.481559,-0.367622,0.795585>,
+  <0.769012,-0.175606,0.614640>,
+  <0.939391,0.043145,0.340122>,
+  <0.966756,0.255327,0.013823>,
+  <0.846941,0.428638,-0.314580>,
+  <0.598187,0.536693,-0.595091>,
+  <0.258364,0.563041,-0.785005>,
+  <-0.120792,0.503671,-0.855409>,
+  <-0.481559,0.367622,-0.795585>,
+  <-0.769012,0.175606,-0.614640>,
+  <-0.939391,-0.043145,-0.340122>,
+  <-0.966756,-0.255327,-0.013823>,
+  <-0.846941,-0.428638,0.314580>,
+  <-0.598187,-0.536693,0.595091>,
+  <-0.258364,-0.563041,0.785005>,
+  <0.120792,-0.503671,0.855409>,
+  <0.558442,-0.400233,0.726606>,
+  <0.833066,-0.251712,0.492588>,
+  <0.980862,-0.064870,0.183578>,
+  <0.979332,0.131847,-0.153380>,
+  <0.828707,0.308493,-0.466988>,
+  <0.551919,0.438173,-0.709500>,
+  <0.191106,0.501145,-0.843998>,
+  <-0.198801,0.487822,-0.850005>,
+  <-0.558442,0.400233,-0.726606>,
+  <-0.833066,0.251712,-0.492588>,
+  <-0.980862,0.064870,-0.183578>,
+  <-0.979332,-0.131847,0.153380>,
+  <-0.828707,-0.308493,0.466988>,
+  <-0.551919,-0.438173,0.709500>,
+  <-0.191106,-0.501145,0.843998>,
+  <0.198801,-0.487822,0.850005>,
+  <0.622598,-0.425962,0.656451>,
+  <0.869199,-0.327311,0.370623>,
+  <0.983471,-0.178829,0.028372>,
+  <0.948019,-0.003122,-0.318199>,
+  <0.768239,0.173060,-0.616327>,
+  <0.471503,0.322895,-0.820624>,
+  <0.102984,0.423572,-0.899989>,
+  <-0.281213,0.459765,-0.842339>,
+  <-0.622598,0.425962,-0.656451>,
+  <-0.869199,0.327311,-0.370623>,
+  <-0.983471,0.178829,-0.028372>,
+  <-0.948019,0.003122,0.318199>,
+  <-0.768239,-0.173060,0.616327>,
+  <-0.471503,-0.322895,0.820624>,
+  <-0.102984,-0.423572,0.899989>,
+  <0.281213,-0.459765,0.842339>,
+  <0.681503,-0.461429,0.568011>,
+  <0.874207,-0.427380,0.230452>,
+  <0.933822,-0.328265,-0.142192>,
+  <0.851270,-0.179176,-0.493189>,
+  <0.639120,-0.002809,-0.769102>,
+  <0.329670,0.173986,-0.927926>,
+  <-0.029969,0.324294,-0.945482>,
+  <-0.385046,0.425230,-0.819097>,
+  <-0.681503,0.461429,-0.568011>,
+  <-0.874207,0.427380,-0.230452>,
+  <-0.933822,0.328265,0.142192>,
+  <-0.851270,0.179176,0.493189>,
+  <-0.639120,0.002809,0.769102>,
+  <-0.329670,-0.173986,0.927926>,
+  <0.029969,-0.324294,0.945482>,
+  <0.385046,-0.425230,0.819097>,
+  <0.712737,-0.532493,0.456570>,
+  <0.814342,-0.574534,0.082204>,
+  <0.791970,-0.529108,-0.304677>,
+  <0.649028,-0.403129,-0.645174>,
+  <0.407278,-0.215778,-0.887448>,
+  <0.103523,0.004423,-0.994617>,
+  <-0.215992,0.223952,-0.950365>,
+  <-0.502625,0.409385,-0.761428>,
+  <-0.712737,0.532493,-0.456570>,
+  <-0.814342,0.574534,-0.082204>,
+  <-0.791970,0.529108,0.304677>,
+  <-0.649028,0.403129,0.645174>,
+  <-0.407278,0.215778,0.887448>,
+  <-0.103523,-0.004423,0.994617>,
+  <0.215992,-0.223952,0.950365>,
+  <0.502625,-0.409385,0.761428>,
+  <0.686246,-0.629253,0.364839>,
+  <0.681096,-0.732104,-0.011507>,
+  <0.572255,-0.723499,-0.386101>,
+  <0.376294,-0.604748,-0.701914>,
+  <0.123045,-0.393929,-0.910868>,
+  <-0.148936,-0.123139,-0.981150>,
+  <-0.398244,0.166399,-0.902061>,
+  <-0.586922,0.430603,-0.685641>,
+  <-0.686246,0.629253,-0.364839>,
+  <-0.681096,0.732104,0.011507>,
+  <-0.572255,0.723499,0.386101>,
+  <-0.376294,0.604748,0.701914>,
+  <-0.123045,0.393929,0.910868>,
+  <0.148936,0.123139,0.981150>,
+  <0.398244,-0.166399,0.902061>,
+  <0.586922,-0.430603,0.685641>,
+  <0.629408,-0.711959,0.311383>,
+  <0.531647,-0.845934,-0.041795>,
+  <0.352947,-0.851123,-0.388610>,
+  <0.120514,-0.726737,-0.676262>,
+  <-0.130266,-0.491711,-0.860959>,
+  <-0.361214,-0.181827,-0.914584>,
+  <-0.537171,0.155739,-0.828971>,
+  <-0.631348,0.469595,-0.617155>,
+  <-0.629408,0.711959,-0.311383>,
+  <-0.531647,0.845934,0.041795>,
+  <-0.352947,0.851123,0.388610>,
+  <-0.120514,0.726737,0.676262>,
+  <0.130266,0.491711,0.860959>,
+  <0.361214,0.181827,0.914584>,
+  <0.537171,-0.155739,0.828971>,
+  <0.631348,-0.469595,0.617155>,
+  <0.564088,-0.779751,0.271649>,
+  <0.386828,-0.921007,-0.045946>,
+  <0.150677,-0.922047,-0.356547>,
+  <-0.108414,-0.782714,-0.612866>,
+  <-0.350999,-0.524220,-0.775882>,
+  <-0.540148,-0.185919,-0.820777>,
+  <-0.647064,0.180688,-0.740716>,
+  <-0.655471,0.519786,-0.547888>,
+  <-0.564088,0.779751,-0.271649>,
+  <-0.386828,0.921007,0.045946>,
+  <-0.150677,0.922047,0.356547>,
+  <0.108414,0.782714,0.612866>,
+  <0.350999,0.524220,0.775882>,
+  <0.540148,0.185919,0.820777>,
+  <0.647064,-0.180688,0.740716>,
+  <0.655471,-0.519786,0.547888>,
+  <0.478477,-0.847445,0.229993>,
+  <0.225823,-0.973373,-0.039356>,
+  <-0.061210,-0.951114,-0.302713>,
+  <-0.338925,-0.784057,-0.519986>,
+  <-0.565041,-0.497634,-0.658095>,
+  <-0.705136,-0.135451,-0.696015>,
+  <-0.737879,0.247354,-0.627973>,
+  <-0.658287,0.592501,-0.464328>,
+  <-0.478477,0.847445,-0.229993>,
+  <-0.225823,0.973373,0.039356>,
+  <0.061210,0.951114,0.302713>,
+  <0.338925,0.784057,0.519986>,
+  <0.565041,0.497634,0.658095>,
+  <0.705136,0.135451,0.696015>,
+  <0.737879,-0.247354,0.627973>,
+  <0.658287,-0.592501,0.464328>,
+  <0.340517,-0.919370,0.196996>,
+  <0.015748,-0.999869,-0.003717>,
+  <-0.311419,-0.928147,-0.203865>,
+  <-0.591175,-0.715124,-0.372975>,
+  <-0.780930,-0.393229,-0.485304>,
+  <-0.851795,-0.011469,-0.523750>,
+  <-0.792983,0.372038,-0.482459>,
+  <-0.613446,0.698905,-0.367718>,
+  <-0.340517,0.919370,-0.196996>,
+  <-0.015748,0.999869,0.003717>,
+  <0.311419,0.928147,0.203865>,
+  <0.591175,0.715124,0.372975>,
+  <0.780930,0.393229,0.485304>,
+  <0.851795,0.011469,0.523750>,
+  <0.792983,-0.372038,0.482459>,
+  <0.613446,-0.698905,0.367718>,
+  <0.138461,-0.964494,0.224901>,
+  <-0.235677,-0.965102,0.114169>,
+  <-0.573935,-0.818782,-0.013945>,
+  <-0.824816,-0.547811,-0.139935>,
+  <-0.950127,-0.193440,-0.244622>,
+  <-0.930790,0.190381,-0.312067>,
+  <-0.769748,0.545218,-0.332003>,
+  <-0.491519,0.817050,-0.301394>,
+  <-0.138461,0.964494,-0.224901>,
+  <0.235677,0.965102,-0.114169>,
+  <0.573935,0.818782,0.013945>,
+  <0.824816,0.547811,0.139935>,
+  <0.950127,0.193440,0.244622>,
+  <0.930790,-0.190381,0.312067>,
+  <0.769748,-0.545218,0.332003>,
+  <0.491519,-0.817050,0.301394>,
+  <-0.038814,-0.940875,0.336523>,
+  <-0.418236,-0.853996,0.309466>,
+  <-0.733985,-0.637104,0.235295>,
+  <-0.937992,-0.323219,0.125303>,
+  <-0.999198,0.039873,-0.003766>,
+  <-0.908285,0.396895,-0.132261>,
+  <-0.679094,0.693494,-0.240621>,
+  <-0.346517,0.884514,-0.312348>,
+  <0.038814,0.940875,-0.336523>,
+  <0.418236,0.853996,-0.309466>,
+  <0.733985,0.637104,-0.235295>,
+  <0.937992,0.323219,-0.125303>,
+  <0.999198,-0.039873,0.003766>,
+  <0.908285,-0.396895,0.132261>,
+  <0.679094,-0.693494,0.240621>,
+  <0.346517,-0.884514,0.312348>,
+  <-0.130126,-0.878199,0.460254>,
+  <-0.486125,-0.721809,0.492620>,
+  <-0.768116,-0.455530,0.449989>,
+  <-0.933169,-0.119900,0.338852>,
+  <-0.956154,0.233983,0.176127>,
+  <-0.833575,0.552244,-0.013412>,
+  <-0.584090,0.786431,-0.200908>,
+  <-0.245684,0.900892,-0.357818>,
+  <0.130126,0.878199,-0.460254>,
+  <0.486125,0.721809,-0.492620>,
+  <0.768116,0.455530,-0.449989>,
+  <0.933169,0.119900,-0.338852>,
+  <0.956154,-0.233983,-0.176127>,
+  <0.833575,-0.552244,0.013412>,
+  <0.584090,-0.786431,0.200908>,
+  <0.245684,-0.900892,0.357818>,
+  <-0.164445,-0.813559,0.557745>,
+  <-0.483921,-0.603008,0.634194>,
+  <-0.729724,-0.300654,0.614093>,
+  <-0.864433,0.047471,0.500501>,
+  <-0.867540,0.388370,0.310713>,
+  <-0.738572,0.670142,0.073622>,
+  <-0.497163,0.849892,-0.174678>,
+  <-0.180066,0.900253,-0.396384>,
+  <0.164445,0.813559,-0.557745>,
+  <0.483921,0.603008,-0.634194>,
+  <0.729724,0.300654,-0.614093>,
+  <0.864433,-0.047471,-0.500501>,
+  <0.867540,-0.388370,-0.310713>,
+  <0.738572,-0.670142,-0.073622>,
+  <0.497163,-0.849892,0.174678>,
+  <0.180066,-0.900253,0.396384>,
+  <-0.171317,-0.756068,0.631673>,
+  <-0.441274,-0.498631,0.746086>,
+  <-0.644051,-0.165281,0.746914>,
+  <-0.748776,0.193231,0.634031>,
+  <-0.739508,0.522325,0.424623>,
+  <-0.617656,0.771901,0.150570>,
+  <-0.401771,0.903961,-0.146407>,
+  <-0.124721,0.898401,-0.421094>,
+  <0.171317,0.756068,-0.631673>,
+  <0.441274,0.498631,-0.746086>,
+  <0.644051,0.165281,-0.746914>,
+  <0.748776,-0.193231,-0.634031>,
+  <0.739508,-0.522325,-0.424623>,
+  <0.617656,-0.771901,-0.150570>,
+  <0.401771,-0.903961,0.146407>,
+  <0.124721,-0.898401,0.421094>,
+  <-0.163499,-0.702240,0.692912>,
+  <-0.362596,-0.401204,0.841165>,
+  <-0.506491,-0.039089,0.861359>,
+  <-0.573277,0.328977,0.750418>,
+  <-0.552787,0.646960,0.525233>,
+  <-0.448140,0.866448,0.220086>,
+  <-0.275268,0.954028,-0.118567>,
+  <-0.060489,0.896366,-0.439170>,
+  <0.163499,0.702240,-0.692912>,
+  <0.362596,0.401204,-0.841165>,
+  <0.506491,0.039089,-0.861359>,
+  <0.573277,-0.328977,-0.750418>,
+  <0.552787,-0.646960,-0.525233>,
+  <0.448140,-0.866448,-0.220086>,
+  <0.275268,-0.954028,0.118567>,
+  <0.060489,-0.896366,0.439170>,
+  <-0.139793,-0.646395,0.750088>,
+  <-0.240306,-0.309807,0.919931>,
+  <-0.304236,0.073946,0.949722>,
+  <-0.321848,0.446442,0.834927>,
+  <-0.290461,0.750970,0.593022>,
+  <-0.214855,0.941171,0.260835>,
+  <-0.106539,0.988086,-0.111062>,
+  <0.017997,0.884575,-0.466051>,
+  <0.139793,0.646395,-0.750088>,
+  <0.240306,0.309807,-0.919931>,
+  <0.304236,-0.073946,-0.949722>,
+  <0.321848,-0.446442,-0.834927>,
+  <0.290461,-0.750970,-0.593022>,
+  <0.214855,-0.941171,-0.260835>,
+  <0.106539,-0.988086,0.111062>,
+  <-0.017997,-0.884575,0.466051>,
+  <-0.097055,-0.592719,0.799540>,
+  <-0.090101,-0.240153,0.966544>,
+  <-0.069430,0.148973,0.986401>,
+  <-0.038189,0.515420,0.856087>,
+  <-0.001134,0.803398,0.595441>,
+  <0.036094,0.969067,0.244145>,
+  <0.067827,0.987204,-0.144320>,
+  <0.089234,0.855048,-0.510814>,
+  <0.097055,0.592719,-0.799540>,
+  <0.090101,0.240153,-0.966544>,
+  <0.069430,-0.148973,-0.986401>,
+  <0.038189,-0.515420,-0.856087>,
+  <0.001134,-0.803398,-0.595441>,
+  <-0.036094,-0.969067,-0.244145>,
+  <-0.067827,-0.987204,0.144320>,
+  <-0.089234,-0.855048,0.510814>,
+  <-0.044670,-0.539615,0.840726>,
+  <0.054457,-0.189057,0.980455>,
+  <0.145293,0.190283,0.970918>,
+  <0.214009,0.540654,0.813568>,
+  <0.250144,0.808716,0.532360>,
+  <0.248198,0.953657,0.170104>,
+  <0.208465,0.953414,-0.218048>,
+  <0.136996,0.808021,-0.573004>,
+  <0.044670,0.539615,-0.840726>,
+  <-0.054457,0.189057,-0.980455>,
+  <-0.145293,-0.190283,-0.970918>,
+  <-0.214009,-0.540654,-0.813568>,
+  <-0.250144,-0.808716,-0.532360>,
+  <-0.248198,-0.953657,-0.170104>,
+  <-0.208465,-0.953414,0.218048>,
+  <-0.136996,-0.808021,0.573004>,
+  <0.022808,-0.472987,0.880774>,
+  <0.197117,-0.135751,0.970936>,
+  <0.341416,0.222152,0.913282>,
+  <0.433738,0.546235,0.716588>,
+  <0.460027,0.787158,0.410801>,
+  <0.416281,0.908243,0.042473>,
+  <0.309160,0.891057,-0.332321>,
+  <0.154972,0.738215,-0.656522>,
+  <-0.022808,0.472987,-0.880774>,
+  <-0.197117,0.135751,-0.970936>,
+  <-0.341416,-0.222152,-0.913282>,
+  <-0.433738,-0.546235,-0.716588>,
+  <-0.460027,-0.787158,-0.410801>,
+  <-0.416281,-0.908243,-0.042473>,
+  <-0.309160,-0.891057,0.332321>,
+  <-0.154972,-0.738215,0.656522>,
+  <0.130800,-0.383676,0.914158>,
+  <0.365064,-0.071964,0.928197>,
+  <0.543751,0.250703,0.800926>,
+  <0.639657,0.535203,0.551722>,
+  <0.638180,0.738223,0.218523>,
+  <0.539547,0.828856,-0.147944>,
+  <0.358772,0.793302,-0.491888>,
+  <0.123377,0.636976,-0.760947>,
+  <-0.130800,0.383676,-0.914158>,
+  <-0.365064,0.071964,-0.928197>,
+  <-0.543751,-0.250703,-0.800926>,
+  <-0.639657,-0.535203,-0.551722>,
+  <-0.638180,-0.738223,-0.218523>,
+  <-0.539547,-0.828856,0.147944>,
+  <-0.358772,-0.793302,0.491888>,
+  <-0.123377,-0.636976,0.760947>,
+  <0.307909,-0.288514,0.906615>,
+  <0.578627,-0.022789,0.815274>,
+  <0.761254,0.246405,0.599815>,
+  <0.827986,0.478087,0.293039>,
+  <0.768666,0.636984,-0.058350>,
+  <0.592323,0.698906,-0.400855>,
+  <0.325804,0.654426,-0.682333>,
+  <0.009685,0.510315,-0.859933>,
+  <-0.307909,0.288514,-0.906615>,
+  <-0.578627,0.022789,-0.815274>,
+  <-0.761254,-0.246405,-0.599815>,
+  <-0.827986,-0.478087,-0.293039>,
+  <-0.768666,-0.636984,0.058350>,
+  <-0.592323,-0.698906,0.400855>,
+  <-0.325804,-0.654426,0.682333>,
+  <-0.009685,-0.510315,0.859933>,
+  <0.525907,-0.255862,0.811145>,
+  <0.793285,-0.059270,0.605959>,
+  <0.939892,0.146346,0.308521>,
+  <0.943410,0.329682,-0.035886>,
+  <0.803302,0.462827,-0.374830>,
+  <0.540898,0.525511,-0.656710>,
+  <0.196148,0.508190,-0.838611>,
+  <-0.178464,0.413502,-0.892842>,
+  <-0.525907,0.255862,-0.811145>,
+  <-0.793285,0.059270,-0.605959>,
+  <-0.939892,-0.146346,-0.308521>,
+  <-0.943410,-0.329682,0.035886>,
+  <-0.803302,-0.462827,0.374830>,
+  <-0.540898,-0.525511,0.656710>,
+  <-0.196148,-0.508190,0.838611>,
+  <0.178464,-0.413502,0.892842>,
+  <0.670115,-0.323969,0.667825>,
+  <0.903026,-0.197829,0.381325>,
+  <0.998459,-0.041570,0.036772>,
+  <0.941886,0.121017,-0.313379>,
+  <0.741919,0.265180,-0.615821>,
+  <0.429002,0.368972,-0.824510>,
+  <0.050773,0.416591,-0.907675>,
+  <-0.335185,0.400788,-0.852654>,
+  <-0.670115,0.323969,-0.667825>,
+  <-0.903026,0.197829,-0.381325>,
+  <-0.998459,0.041570,-0.036772>,
+  <-0.941886,-0.121017,0.313379>,
+  <-0.741919,-0.265180,0.615821>,
+  <-0.429002,-0.368972,0.824510>,
+  <-0.050773,-0.416591,0.907675>,
+  <0.335185,-0.400788,0.852654>,
+  <0.713712,-0.423086,0.558223>,
+  <0.907042,-0.355124,0.226190>,
+  <0.962282,-0.233098,-0.140278>,
+  <0.871024,-0.075584,-0.485390>,
+  <0.647161,0.093436,-0.756606>,
+  <0.324773,0.248232,-0.912636>,
+  <-0.047059,0.365237,-0.929724>,
+  <-0.411727,0.426637,-0.805271>,
+  <-0.713712,0.423086,-0.558223>,
+  <-0.907042,0.355124,-0.226190>,
+  <-0.962282,0.233098,0.140278>,
+  <-0.871024,0.075584,0.485390>,
+  <-0.647161,-0.093436,0.756606>,
+  <-0.324773,-0.248232,0.912636>,
+  <0.047059,-0.365237,0.929724>,
+  <0.411727,-0.426637,0.805271>,
+  <0.706041,-0.507849,0.493554>,
+  <0.859413,-0.493114,0.135084>,
+  <0.881947,-0.403307,-0.243952>,
+  <0.770213,-0.252100,-0.585847>,
+  <0.541221,-0.062513,-0.838554>,
+  <0.229833,0.136591,-0.963597>,
+  <-0.116545,0.314900,-0.941942>,
+  <-0.445180,0.445269,-0.776885>,
+  <-0.706041,0.507849,-0.493554>,
+  <-0.859413,0.493114,-0.135084>,
+  <-0.881947,0.403307,0.243952>,
+  <-0.770213,0.252100,0.585847>,
+  <-0.541221,0.062513,0.838554>,
+  <-0.229833,-0.136591,0.963597>,
+  <0.116545,-0.314900,0.941942>,
+  <0.445180,-0.445269,0.776885>,
+  <0.680261,-0.573564,0.456365>,
+  <0.784748,-0.614280,0.082647>,
+  <0.769765,-0.561477,-0.303654>,
+  <0.637591,-0.423195,-0.643726>,
+  <0.408351,-0.220485,-0.885797>,
+  <0.116942,0.015792,-0.993013>,
+  <-0.192270,0.249665,-0.949052>,
+  <-0.472210,0.445528,-0.760607>,
+  <-0.680261,0.573564,-0.456365>,
+  <-0.784748,0.614280,-0.082647>,
+  <-0.769765,0.561477,0.303654>,
+  <-0.637591,0.423195,0.643726>,
+  <-0.408351,0.220485,0.885797>,
+  <-0.116942,-0.015792,0.993013>,
+  <0.192270,-0.249665,0.949052>,
+  <0.472210,-0.445528,0.760607>,
+  <0.649707,-0.629937,0.425511>,
+  <0.682786,-0.728937,0.049551>,
+  <0.611916,-0.716962,-0.333953>,
+  <0.447887,-0.595837,-0.666615>,
+  <0.215672,-0.384001,-0.897791>,
+  <-0.049377,-0.113704,-0.992287>,
+  <-0.306909,0.173903,-0.935716>,
+  <-0.517717,0.435035,-0.736691>,
+  <-0.649707,0.629937,-0.425511>,
+  <-0.682786,0.728937,-0.049551>,
+  <-0.611916,0.716962,0.333953>,
+  <-0.447887,0.595837,0.666615>,
+  <-0.215672,0.384001,0.897791>,
+  <0.049377,0.113704,0.992287>,
+  <0.306909,-0.173903,0.935716>,
+  <0.517717,-0.435035,0.736691>,
+  <0.608186,-0.694758,0.383954>,
+  <0.539398,-0.841550,0.029044>,
+  <0.388491,-0.860224,-0.330288>,
+  <0.178440,-0.747936,-0.639336>,
+  <-0.058777,-0.521782,-0.851052>,
+  <-0.287045,-0.216191,-0.933202>,
+  <-0.471614,0.122313,-0.873281>,
+  <-0.584383,0.442195,-0.680411>,
+  <-0.608186,0.694758,-0.383954>,
+  <-0.539398,0.841550,-0.029044>,
+  <-0.388491,0.860224,0.330288>,
+  <-0.178440,0.747936,0.639336>,
+  <0.058777,0.521782,0.851052>,
+  <0.287045,0.216191,0.933202>,
+  <0.471614,-0.122313,0.873281>,
+  <0.584383,-0.442195,0.680411>,
+  <0.538764,-0.772412,0.336322>,
+  <0.361603,-0.931928,0.027437>,
+  <0.129392,-0.949566,-0.285625>,
+  <-0.122518,-0.822642,-0.555203>,
+  <-0.355776,-0.570477,-0.740256>,
+  <-0.534870,-0.231463,-0.812613>,
+  <-0.632535,0.142790,-0.761256>,
+  <-0.633902,0.495304,-0.594005>,
+  <-0.538764,0.772412,-0.336322>,
+  <-0.361603,0.931928,-0.027437>,
+  <-0.129392,0.949566,0.285625>,
+  <0.122518,0.822642,0.555203>,
+  <0.355776,0.570477,0.740256>,
+  <0.534870,0.231463,0.812613>,
+  <0.632535,-0.142790,0.761256>,
+  <0.633902,-0.495304,0.594005>,
+  <0.443935,-0.846049,0.295166>,
+  <0.181355,-0.982567,0.040892>,
+  <-0.108835,-0.969499,-0.219608>,
+  <-0.382456,-0.808833,-0.446674>,
+  <-0.597851,-0.525029,-0.605738>,
+  <-0.722229,-0.161295,-0.672584>,
+  <-0.736654,0.226995,-0.637035>,
+  <-0.638930,0.580727,-0.504504>,
+  <-0.443935,0.846049,-0.295166>,
+  <-0.181355,0.982567,-0.040892>,
+  <0.108835,0.969499,0.219608>,
+  <0.382456,0.808833,0.446674>,
+  <0.597851,0.525029,0.605738>,
+  <0.722229,0.161295,0.672584>,
+  <0.736654,-0.226995,0.637035>,
+  <0.638930,-0.580727,0.504504>,
+  <0.332764,-0.905216,0.264295>,
+  <0.009452,-0.997746,0.066436>,
+  <-0.315300,-0.938378,-0.141537>,
+  <-0.592050,-0.736150,-0.327963>,
+  <-0.778666,-0.421851,-0.464459>,
+  <-0.846737,-0.043328,-0.530245>,
+  <-0.785900,0.341791,-0.515306>,
+  <-0.605416,0.674875,-0.421917>,
+  <-0.332764,0.905216,-0.264295>,
+  <-0.009452,0.997746,-0.066436>,
+  <0.315300,0.938378,0.141537>,
+  <0.592050,0.736150,0.327963>,
+  <0.778666,0.421851,0.464459>,
+  <0.846737,0.043328,0.530245>,
+  <0.785900,-0.341791,0.515306>,
+  <0.605416,-0.674875,0.421917>,
+  <0.211173,-0.945187,0.249052>,
+  <-0.153030,-0.981637,0.113890>,
+  <-0.493935,-0.868641,-0.038611>,
+  <-0.759643,-0.623403,-0.185234>,
+  <-0.909702,-0.283257,-0.303656>,
+  <-0.921268,0.100012,-0.375850>,
+  <-0.792579,0.468056,-0.390824>,
+  <-0.543227,0.764841,-0.346298>,
+  <-0.211173,0.945187,-0.249052>,
+  <0.153030,0.981637,-0.113890>,
+  <0.493935,0.868641,0.038611>,
+  <0.759643,0.623403,0.185234>,
+  <0.909702,0.283257,0.303656>,
+  <0.921268,-0.100012,0.375850>,
+  <0.792579,-0.468056,0.390824>,
+  <0.543227,-0.764841,0.346298>,
+  <0.085059,-0.961934,0.259706>,
+  <-0.299554,-0.932688,0.200900>,
+  <-0.638563,-0.761448,0.111509>,
+  <-0.880357,-0.474284,0.005142>,
+  <-0.988124,-0.114915,-0.102008>,
+  <-0.945458,0.261949,-0.193628>,
+  <-0.758855,0.598933,-0.255770>,
+  <-0.456723,0.844735,-0.278974>,
+  <-0.085059,0.961934,-0.259706>,
+  <0.299554,0.932688,-0.200900>,
+  <0.638563,0.761448,-0.111509>,
+  <0.880357,0.474284,-0.005142>,
+  <0.988124,0.114915,0.102008>,
+  <0.945458,-0.261949,0.193628>,
+  <0.758855,-0.598933,0.255770>,
+  <0.456723,-0.844735,0.278974>,
+  <-0.030651,-0.950298,0.309830>,
+  <-0.405925,-0.848032,0.340684>,
+  <-0.719401,-0.616662,0.319673>,
+  <-0.923354,-0.291410,0.249994>,
+  <-0.986735,0.078207,0.142256>,
+  <-0.899895,0.435917,0.012861>,
+  <-0.676054,0.727263,-0.118492>,
+  <-0.349290,0.907889,-0.231806>,
+  <0.030651,0.950298,-0.309830>,
+  <0.405925,0.848032,-0.340684>,
+  <0.719401,0.616662,-0.319673>,
+  <0.923354,0.291410,-0.249994>,
+  <0.986735,-0.078207,-0.142256>,
+  <0.899895,-0.435917,-0.012861>,
+  <0.676054,-0.727263,0.118492>,
+  <0.349290,-0.907889,0.231806>,
+  <-0.108235,-0.913692,0.391729>,
+  <-0.441181,-0.743293,0.502867>,
+  <-0.706962,-0.459734,0.537447>,
+  <-0.865115,-0.106185,0.490206>,
+  <-0.891561,0.263530,0.368335>,
+  <-0.782275,0.593125,0.190389>,
+  <-0.553895,0.832422,-0.016542>,
+  <-0.241190,0.944990,-0.220955>,
+  <0.108235,0.913692,-0.391729>,
+  <0.441181,0.743293,-0.502867>,
+  <0.706962,0.459734,-0.537447>,
+  <0.865115,0.106185,-0.490206>,
+  <0.891561,-0.263530,-0.368335>,
+  <0.782275,-0.593125,-0.190389>,
+  <0.553895,-0.832422,0.016542>,
+  <0.241190,-0.944990,0.220955>,
+  <-0.150100,-0.865270,0.478307>,
+  <-0.422605,-0.639316,0.642402>,
+  <-0.630773,-0.316032,0.708696>,
+  <-0.742910,0.055365,0.667097>,
+  <-0.741947,0.418333,0.523940>,
+  <-0.628029,0.717614,0.301017>,
+  <-0.418499,0.907644,0.032267>,
+  <-0.145256,0.959494,-0.241396>,
+  <0.150100,0.865270,-0.478307>,
+  <0.422605,0.639316,-0.642402>,
+  <0.630773,0.316032,-0.708696>,
+  <0.742910,-0.055365,-0.667097>,
+  <0.741947,-0.418333,-0.523940>,
+  <0.628029,-0.717614,-0.301017>,
+  <0.418499,-0.907644,-0.032267>,
+  <0.145256,-0.959494,0.241396>,
+  <-0.173907,-0.806816,0.564628>,
+  <-0.376329,-0.534260,0.756930>,
+  <-0.521458,-0.180369,0.833995>,
+  <-0.587200,0.200982,0.784093>,
+  <-0.563547,0.551736,0.614820>,
+  <-0.454098,0.818492,0.351945>,
+  <-0.275517,0.960641,0.035491>,
+  <-0.054991,0.956541,-0.286367>,
+  <0.173907,0.806816,-0.564628>,
+  <0.376329,0.534260,-0.756930>,
+  <0.521458,0.180369,-0.833995>,
+  <0.587200,-0.200982,-0.784093>,
+  <0.563547,-0.551736,-0.614820>,
+  <0.454098,-0.818492,-0.351945>,
+  <0.275517,-0.960641,-0.035491>,
+  <0.054991,-0.956541,0.286367>,
+  <-0.180324,-0.731362,0.657718>,
+  <-0.301310,-0.418384,0.856835>,
+  <-0.376425,-0.041711,0.925508>,
+  <-0.394233,0.341313,0.853280>,
+  <-0.352022,0.672374,0.651148>,
+  <-0.256219,0.901073,0.349884>,
+  <-0.121409,0.992592,-0.004646>,
+  <0.031884,0.932997,-0.358468>,
+  <0.180324,0.731362,-0.657718>,
+  <0.301310,0.418384,-0.856835>,
+  <0.376425,0.041711,-0.925508>,
+  <0.394233,-0.341313,-0.853280>,
+  <0.352022,-0.672374,-0.651148>,
+  <0.256219,-0.901073,-0.349884>,
+  <0.121409,-0.992592,0.004646>,
+  <-0.031884,-0.932997,0.358468>,
+  <-0.149602,-0.634226,0.758536>,
+  <-0.174248,-0.290203,0.940968>,
+  <-0.172365,0.098001,0.980146>,
+  <-0.144242,0.471285,0.870106>,
+  <-0.094159,0.772821,0.627600>,
+  <-0.029742,0.956701,0.289548>,
+  <0.039204,0.994933,-0.092585>,
+  <0.102181,0.881695,-0.460623>,
+  <0.149602,0.634226,-0.758536>,
+  <0.174248,0.290203,-0.940968>,
+  <0.172365,-0.098001,-0.980146>,
+  <0.144242,-0.471285,-0.870106>,
+  <0.094159,-0.772821,-0.627600>,
+  <0.029742,-0.956701,-0.289548>,
+  <-0.039204,-0.994933,0.092585>,
+  <-0.102181,-0.881695,0.460623>,
+  <-0.054338,-0.531749,0.845157>,
+  <0.025189,-0.175918,0.984083>,
+  <0.100881,0.206696,0.973190>,
+  <0.161215,0.557842,0.814139>,
+  <0.197005,0.824061,0.531142>,
+  <0.202803,0.964825,0.167284>,
+  <0.177726,0.958703,-0.222042>,
+  <0.125592,0.806627,-0.577564>,
+  <0.054338,0.531749,-0.845157>,
+  <-0.025189,0.175918,-0.984083>,
+  <-0.100881,-0.206696,-0.973190>,
+  <-0.161215,-0.557842,-0.814139>,
+  <-0.197005,-0.824061,-0.531142>,
+  <-0.202803,-0.964825,-0.167284>,
+  <-0.177726,-0.958703,0.222042>,
+  <-0.125592,-0.806627,0.577564>,
+  <0.082404,-0.464147,0.881917>,
+  <0.248345,-0.120028,0.961206>,
+  <0.376479,0.242364,0.894161>,
+  <0.447296,0.567858,0.690988>,
+  <0.450017,0.806900,0.382617>,
+  <0.384227,0.923100,0.015997>,
+  <0.259942,0.898766,-0.353058>,
+  <0.096083,0.737603,-0.668364>,
+  <-0.082404,0.464147,-0.881917>,
+  <-0.248345,0.120028,-0.961206>,
+  <-0.376479,-0.242364,-0.894161>,
+  <-0.447296,-0.567858,-0.690988>,
+  <-0.450017,-0.806900,-0.382617>,
+  <-0.384227,-0.923100,-0.015997>,
+  <-0.259942,-0.898766,0.353058>,
+  <-0.096083,-0.737603,0.668364>,
+  <0.206380,-0.432457,0.877718>,
+  <0.430267,-0.113400,0.895550>,
+  <0.588650,0.222921,0.777044>,
+  <0.657417,0.525304,0.540239>,
+  <0.626098,0.747715,0.221188>,
+  <0.499460,0.856293,-0.131537>,
+  <0.296785,0.834508,-0.464236>,
+  <0.048927,0.685676,-0.726260>,
+  <-0.206380,0.432457,-0.877718>,
+  <-0.430267,0.113400,-0.895550>,
+  <-0.588650,-0.222921,-0.777044>,
+  <-0.657417,-0.525304,-0.540239>,
+  <-0.626098,-0.747715,-0.221188>,
+  <-0.499460,-0.856293,0.131537>,
+  <-0.296785,-0.834508,0.464236>,
+  <-0.048927,-0.685676,0.726260>,
+  <0.311448,-0.413705,0.855482>,
+  <0.572568,-0.127384,0.809901>,
+  <0.746519,0.178330,0.641020>,
+  <0.806820,0.456895,0.374550>,
+  <0.744290,0.665902,0.051058>,
+  <0.568449,0.773531,-0.280207>,
+  <0.306066,0.763397,-0.568813>,
+  <-0.002912,0.637043,-0.770823>,
+  <-0.311448,0.413705,-0.855482>,
+  <-0.572568,0.127384,-0.809901>,
+  <-0.746519,-0.178330,-0.641020>,
+  <-0.806820,-0.456895,-0.374550>,
+  <-0.744290,-0.665902,-0.051058>,
+  <-0.568449,-0.773531,0.280207>,
+  <-0.306066,-0.763397,0.568813>,
+  <0.002912,-0.637043,0.770823>,
+  <0.416076,-0.396496,0.818335>,
+  <0.697031,-0.152686,0.700597>,
+  <0.871868,0.114369,0.476199>,
+  <0.913972,0.364012,0.179304>,
+  <0.816932,0.558238,-0.144888>,
+  <0.595521,0.667477,-0.447022>,
+  <0.283448,0.675099,-0.681101>,
+  <-0.071778,0.579943,-0.811489>,
+  <-0.416076,0.396496,-0.818335>,
+  <-0.697031,0.152686,-0.700597>,
+  <-0.871868,-0.114369,-0.476199>,
+  <-0.913972,-0.364012,-0.179304>,
+  <-0.816932,-0.558238,0.144888>,
+  <-0.595521,-0.667477,0.447022>,
+  <-0.283448,-0.675099,0.681101>,
+  <0.071778,-0.579943,0.811489>,
+  <0.537284,-0.388180,0.748760>,
+  <0.813485,-0.202328,0.545258>,
+  <0.965840,0.014327,0.258744>,
+  <0.971154,0.228800,-0.067160>,
+  <0.828619,0.408441,-0.382840>,
+  <0.559934,0.525900,-0.640237>,
+  <0.206005,0.563296,-0.800163>,
+  <-0.179287,0.514935,-0.838271>,
+  <-0.537284,0.388180,-0.748760>,
+  <-0.813485,0.202328,-0.545258>,
+  <-0.965840,-0.014327,-0.258744>,
+  <-0.971154,-0.228800,0.067160>,
+  <-0.828619,-0.408441,0.382840>,
+  <-0.559934,-0.525900,0.640237>,
+  <-0.206005,-0.563296,0.800163>,
+  <0.179287,-0.514935,0.838271>,
+  <0.658407,-0.421032,0.623885>,
+  <0.891514,-0.308097,0.332083>,
+  <0.988895,-0.148257,-0.010275>,
+  <0.935727,0.034153,-0.351068>,
+  <0.740102,0.211364,-0.638415>,
+  <0.431804,0.356397,-0.828569>,
+  <0.057767,0.447172,-0.892581>,
+  <-0.325064,0.469868,-0.820705>,
+  <-0.658407,0.421032,-0.623885>,
+  <-0.891514,0.308097,-0.332083>,
+  <-0.988895,0.148257,0.010275>,
+  <-0.935727,-0.034153,0.351068>,
+  <-0.740102,-0.211364,0.638415>,
+  <-0.431804,-0.356397,0.828569>,
+  <-0.057767,-0.447172,0.892581>,
+  <0.325064,-0.469868,0.820705>,
+  <0.719133,-0.505646,0.476624>,
+  <0.879310,-0.459880,0.123793>,
+  <0.905620,-0.344101,-0.247884>,
+  <0.794058,-0.175937,-0.581823>,
+  <0.561608,0.019013,-0.827185>,
+  <0.243658,0.211068,-0.946616>,
+  <-0.111387,0.370990,-0.921933>,
+  <-0.449474,0.474432,-0.756893>,
+  <-0.719133,0.505646,-0.476624>,
+  <-0.879310,0.459880,-0.123793>,
+  <-0.905620,0.344101,0.247884>,
+  <-0.794058,0.175937,0.581823>,
+  <-0.561608,-0.019013,0.827185>,
+  <-0.243658,-0.211068,0.946616>,
+  <0.111387,-0.370990,0.921933>,
+  <0.449474,-0.474432,0.756893>,
+  <0.716871,-0.597148,0.359876>,
+  <0.800548,-0.598893,-0.021223>,
+  <0.762348,-0.509463,-0.399090>,
+  <0.608088,-0.342471,-0.716200>,
+  <0.361252,-0.123342,-0.924275>,
+  <0.059419,0.114566,-0.991637>,
+  <-0.251461,0.335031,-0.908032>,
+  <-0.524057,0.504492,-0.686187>,
+  <-0.716871,0.597148,-0.359876>,
+  <-0.800548,0.598893,0.021223>,
+  <-0.762348,0.509463,0.399090>,
+  <-0.608088,0.342471,0.716200>,
+  <-0.361252,0.123342,0.924275>,
+  <-0.059419,-0.114566,0.991637>,
+  <0.251461,-0.335031,0.908032>,
+  <0.524057,-0.504492,0.686187>,
+  <0.685779,-0.673647,0.275510>,
+  <0.695695,-0.709410,-0.112901>,
+  <0.599696,-0.637171,-0.484125>,
+  <0.412400,-0.467929,-0.781645>,
+  <0.162319,-0.227449,-0.960166>,
+  <-0.112473,0.047658,-0.992511>,
+  <-0.370142,0.315510,-0.873755>,
+  <-0.571461,0.535328,-0.621978>,
+  <-0.685779,0.673647,-0.275510>,
+  <-0.695695,0.709410,0.112901>,
+  <-0.599696,0.637171,0.484125>,
+  <-0.412400,0.467929,0.781645>,
+  <-0.162319,0.227449,0.960166>,
+  <0.112473,-0.047658,0.992511>,
+  <0.370142,-0.315510,0.873755>,
+  <0.571461,-0.535328,0.621978>,
+  <0.640450,-0.738667,0.210225>,
+  <0.573680,-0.801446,-0.169039>,
+  <0.419573,-0.742213,-0.522569>,
+  <0.201590,-0.569984,-0.796543>,
+  <-0.047083,-0.310980,-0.949250>,
+  <-0.288589,-0.004632,-0.957442>,
+  <-0.486159,0.302421,-0.819872>,
+  <-0.609717,0.563433,-0.557485>,
+  <-0.640450,0.738667,-0.210225>,
+  <-0.573680,0.801446,0.169039>,
+  <-0.419573,0.742213,0.522569>,
+  <-0.201590,0.569984,0.796543>,
+  <0.047083,0.310980,0.949250>,
+  <0.288589,0.004632,0.957442>,
+  <0.486159,-0.302421,0.819872>,
+  <0.609717,-0.563433,0.557485>,
+  <0.577720,-0.801101,0.156450>,
+  <0.425037,-0.884400,-0.192821>,
+  <0.207647,-0.833057,-0.512737>,
+  <-0.041356,-0.654888,-0.754594>,
+  <-0.284063,-0.377019,-0.881570>,
+  <-0.483524,-0.041752,-0.874335>,
+  <-0.609372,0.299872,-0.733991>,
+  <-0.642450,0.595842,-0.481903>,
+  <-0.577720,0.801101,-0.156450>,
+  <-0.425037,0.884400,0.192821>,
+  <-0.207647,0.833057,0.512737>,
+  <0.041356,0.654888,0.754594>,
+  <0.284063,0.377019,0.881570>,
+  <0.483524,0.041752,0.874335>,
+  <0.609372,-0.299872,0.733991>,
+  <0.642450,-0.595842,0.481903>,
+  <0.487007,-0.864859,0.121833>,
+  <0.243311,-0.955072,-0.169225>,
+  <-0.037427,-0.899884,-0.434520>,
+  <-0.312466,-0.707697,-0.633664>,
+  <-0.539936,-0.407769,-0.736338>,
+  <-0.685205,-0.045762,-0.726911>,
+  <-0.726158,0.323211,-0.606819>,
+  <-0.656560,0.642979,-0.394344>,
+  <-0.487007,0.864859,-0.121833>,
+  <-0.243311,0.955072,0.169225>,
+  <0.037427,0.899884,0.434520>,
+  <0.312466,0.707697,0.633664>,
+  <0.539936,0.407769,0.736338>,
+  <0.685205,0.045762,0.726911>,
+  <0.726158,-0.323211,0.606819>,
+  <0.656560,-0.642979,0.394344>,
+  <0.379268,-0.917208,0.122001>,
+  <0.062479,-0.993747,-0.092539>,
+  <-0.263821,-0.918996,-0.292992>,
+  <-0.549958,-0.704337,-0.448839>,
+  <-0.752368,-0.382449,-0.536354>,
+  <-0.840237,-0.002336,-0.542214>,
+  <-0.800188,0.378132,-0.465528>,
+  <-0.638317,0.701033,-0.317968>,
+  <-0.379268,0.917208,-0.122001>,
+  <-0.062479,0.993747,0.092539>,
+  <0.263821,0.918996,0.292992>,
+  <0.549958,0.704337,0.448839>,
+  <0.752368,0.382449,0.536354>,
+  <0.840237,0.002336,0.542214>,
+  <0.800188,-0.378132,0.465528>,
+  <0.638317,-0.701033,0.317968>,
+  <0.274816,-0.950477,0.145157>,
+  <-0.086679,-0.996220,0.005623>,
+  <-0.434978,-0.890299,-0.134767>,
+  <-0.717056,-0.648837,-0.254640>,
+  <-0.889968,-0.308596,-0.335747>,
+  <-0.927391,0.078626,-0.365739>,
+  <-0.823626,0.453878,-0.340050>,
+  <-0.594473,0.760031,-0.262593>,
+  <-0.274816,0.950477,-0.145157>,
+  <0.086679,0.996220,-0.005623>,
+  <0.434978,0.890299,0.134767>,
+  <0.717056,0.648837,0.254640>,
+  <0.889968,0.308596,0.335747>,
+  <0.927391,-0.078626,0.365739>,
+  <0.823626,-0.453878,0.340050>,
+  <0.594473,-0.760031,0.262593>,
+  <0.168111,-0.969176,0.180102>,
+  <-0.215953,-0.970041,0.111290>,
+  <-0.567140,-0.823225,0.025534>,
+  <-0.831985,-0.551082,-0.064109>,
+  <-0.970168,-0.195041,-0.143992>,
+  <-0.960651,0.190693,-0.201953>,
+  <-0.804884,0.547396,-0.229169>,
+  <-0.526581,0.820763,-0.221496>,
+  <-0.168111,0.969176,-0.180102>,
+  <0.215953,0.970041,-0.111290>,
+  <0.567140,0.823225,-0.025534>,
+  <0.831985,0.551082,0.064109>,
+  <0.970168,0.195041,0.143992>,
+  <0.960651,-0.190693,0.201953>,
+  <0.804884,-0.547396,0.229169>,
+  <0.526581,-0.820763,0.221496>,
+  <0.046222,-0.970596,0.236236>,
+  <-0.339221,-0.910014,0.238335>,
+  <-0.673021,-0.710891,0.204150>,
+  <-0.904359,-0.403541,0.138884>,
+  <-0.998017,-0.034756,0.052475>,
+  <-0.939736,0.339321,-0.041923>,
+  <-0.738389,0.661739,-0.129939>,
+  <-0.424628,0.883413,-0.198172>,
+  <-0.046222,0.970596,-0.236236>,
+  <0.339221,0.910014,-0.238335>,
+  <0.673021,0.710891,-0.204150>,
+  <0.904359,0.403541,-0.138884>,
+  <0.998017,0.034756,-0.052475>,
+  <0.939736,-0.339321,0.041923>,
+  <0.738389,-0.661739,0.129939>,
+  <0.424628,-0.883413,0.198172>,
+  <-0.087175,-0.935971,0.341115>,
+  <-0.443346,-0.794657,0.414687>,
+  <-0.732023,-0.532363,0.425126>,
+  <-0.909256,-0.189022,0.370844>,
+  <-0.948062,0.183096,0.260104>,
+  <-0.842535,0.527339,0.109766>,
+  <-0.608739,0.791300,-0.057284>,
+  <-0.282269,0.934792,-0.215612>,
+  <0.087175,0.935971,-0.341115>,
+  <0.443346,0.794657,-0.414687>,
+  <0.732023,0.532363,-0.425126>,
+  <0.909256,0.189022,-0.370844>,
+  <0.948062,-0.183096,-0.260104>,
+  <0.842535,-0.527339,-0.109766>,
+  <0.608739,-0.791300,0.057284>,
+  <0.282269,-0.934792,0.215612>,
+  <-0.175218,-0.842205,0.509892>,
+  <-0.462151,-0.612670,0.641133>,
+  <-0.678726,-0.289862,0.674767>,
+  <-0.791971,0.077075,0.605675>,
+  <-0.784645,0.432278,0.444374>,
+  <-0.657865,0.721670,0.215421>,
+  <-0.430930,0.901195,-0.046328>,
+  <-0.138390,0.943521,-0.301024>,
+  <0.175218,0.842205,-0.509892>,
+  <0.462151,0.612670,-0.641133>,
+  <0.678726,0.289862,-0.674767>,
+  <0.791971,-0.077075,-0.605675>,
+  <0.784645,-0.432278,-0.444374>,
+  <0.657865,-0.721670,-0.215421>,
+  <0.430930,-0.901195,0.046328>,
+  <0.138390,-0.943521,0.301024>,
+  <-0.160581,-0.720906,0.674172>,
+  <-0.360286,-0.424481,0.830669>,
+  <-0.505140,-0.063432,0.860703>,
+  <-0.573091,0.307274,0.759703>,
+  <-0.553795,0.631200,0.543046>,
+  <-0.450188,0.859031,0.243714>,
+  <-0.278044,0.956083,-0.092721>,
+  <-0.063570,0.907580,-0.415039>,
+  <0.160581,0.720906,-0.674172>,
+  <0.360286,0.424481,-0.830669>,
+  <0.505140,0.063432,-0.860703>,
+  <0.573091,-0.307274,-0.759703>,
+  <0.553795,-0.631200,-0.543046>,
+  <0.450188,-0.859031,-0.243714>,
+  <0.278044,-0.956083,0.092721>,
+  <0.063570,-0.907580,0.415039>,
+  <-0.099460,-0.618060,0.779814>,
+  <-0.220345,-0.280709,0.934158>,
+  <-0.307684,0.099378,0.946285>,
+  <-0.348181,0.464335,0.814348>,
+  <-0.335670,0.758601,0.558435>,
+  <-0.272057,0.937378,0.217504>,
+  <-0.167026,0.973446,-0.156539>,
+  <-0.036566,0.861317,-0.506750>,
+  <0.099460,0.618060,-0.779814>,
+  <0.220345,0.280709,-0.934158>,
+  <0.307684,-0.099378,-0.946285>,
+  <0.348181,-0.464335,-0.814348>,
+  <0.335670,-0.758601,-0.558435>,
+  <0.272057,-0.937378,-0.217504>,
+  <0.167026,-0.973446,0.156539>,
+  <0.036566,-0.861317,0.506750>,
+  <-0.038980,-0.528224,0.848210>,
+  <-0.087699,-0.165088,0.982372>,
+  <-0.123067,0.223182,0.966977>,
+  <-0.139699,0.577474,0.804368>,
+  <-0.135063,0.843850,0.519302>,
+  <-0.109865,0.981759,0.155176>,
+  <-0.067941,0.970203,-0.232573>,
+  <-0.015674,0.810943,-0.584916>,
+  <0.038980,0.528224,-0.848210>,
+  <0.087699,0.165088,-0.982372>,
+  <0.123067,-0.223182,-0.966977>,
+  <0.139699,-0.577474,-0.804368>,
+  <0.135063,-0.843850,-0.519302>,
+  <0.109865,-0.981759,-0.155176>,
+  <0.067941,-0.970203,0.232573>,
+  <0.015674,-0.810943,0.584916>,
+  <0.022308,-0.430145,0.902484>,
+  <0.048907,-0.052625,0.997416>,
+  <0.068060,0.332906,0.940500>,
+  <0.076852,0.667756,0.740402>,
+  <0.073944,0.900946,0.427584>,
+  <0.059778,0.996975,0.049671>,
+  <0.036512,0.941224,-0.335805>,
+  <0.007687,0.742180,-0.670157>,
+  <-0.022308,0.430145,-0.902484>,
+  <-0.048907,0.052625,-0.997416>,
+  <-0.068060,-0.332906,-0.940500>,
+  <-0.076852,-0.667756,-0.740402>,
+  <-0.073944,-0.900946,-0.427584>,
+  <-0.059778,-0.996975,-0.049671>,
+  <-0.036512,-0.941224,0.335805>,
+  <-0.007687,-0.742180,0.670157>,
+  <0.113933,-0.308982,0.944219>,
+  <0.224834,0.064051,0.972290>,
+  <0.301505,0.427334,0.852338>,
+  <0.332275,0.725559,0.602626>,
+  <0.312460,0.913323,0.261169>,
+  <0.245075,0.962043,-0.120048>,
+  <0.140379,0.864300,-0.482989>,
+  <0.014312,0.634976,-0.772399>,
+  <-0.113933,0.308982,-0.944219>,
+  <-0.224834,-0.064051,-0.972290>,
+  <-0.301505,-0.427334,-0.852338>,
+  <-0.332275,-0.725559,-0.602626>,
+  <-0.312460,-0.913323,-0.261169>,
+  <-0.245075,-0.962043,0.120048>,
+  <-0.140379,-0.864300,0.482989>,
+  <-0.014312,-0.634976,0.772399>,
+  <0.272057,-0.194120,0.942498>,
+  <0.463241,0.139291,0.875217>,
+  <0.583901,0.451496,0.674693>,
+  <0.615667,0.694965,0.371453>,
+  <0.553704,0.832632,0.011662>,
+  <0.407444,0.843538,-0.349904>,
+  <0.199154,0.726023,-0.658200>,
+  <-0.039455,0.497978,-0.866292>,
+  <-0.272057,0.194120,-0.942498>,
+  <-0.463241,-0.139291,-0.875217>,
+  <-0.583901,-0.451496,-0.674693>,
+  <-0.615667,-0.694965,-0.371453>,
+  <-0.553704,-0.832632,-0.011662>,
+  <-0.407444,-0.843538,0.349904>,
+  <-0.199154,-0.726023,0.658200>,
+  <0.039455,-0.497978,0.866292>,
+  <0.448025,-0.164323,0.878790>,
+  <0.685760,0.101628,0.720698>,
+  <0.819093,0.352108,0.452886>,
+  <0.827727,0.548983,0.116127>,
+  <0.710348,0.662279,-0.238311>,
+  <0.484824,0.674750,-0.556469>,
+  <0.185490,0.584496,-0.789910>,
+  <-0.142083,0.405258,-0.903094>,
+  <-0.448025,0.164323,-0.878790>,
+  <-0.685760,-0.101628,-0.720698>,
+  <-0.819093,-0.352108,-0.452886>,
+  <-0.827727,-0.548983,-0.116127>,
+  <-0.710348,-0.662279,0.238311>,
+  <-0.484824,-0.674750,0.556469>,
+  <-0.185490,-0.584496,0.789910>,
+  <0.142083,-0.405258,0.903094>,
+  <0.567357,-0.205216,0.797491>,
+  <0.818475,-0.006577,0.574504>,
+  <0.944988,0.193062,0.264054>,
+  <0.927635,0.363310,-0.086597>,
+  <0.769058,0.478247,-0.424063>,
+  <0.493399,0.520375,-0.696970>,
+  <0.142624,0.483281,-0.863770>,
+  <-0.229864,0.372612,-0.899068>,
+  <-0.567357,0.205216,-0.797491>,
+  <-0.818475,0.006577,-0.574504>,
+  <-0.944988,-0.193062,-0.264054>,
+  <-0.927635,-0.363310,0.086597>,
+  <-0.769058,-0.478247,0.424063>,
+  <-0.493399,-0.520375,0.696970>,
+  <-0.142624,-0.483281,0.863770>,
+  <0.229864,-0.372612,0.899068>,
+  <0.638984,-0.266331,0.721643>,
+  <0.883490,-0.129069,0.450319>,
+  <0.993493,0.027843,0.110438>,
+  <0.952246,0.180515,-0.246257>,
+  <0.766028,0.305706,-0.565460>,
+  <0.463189,0.384356,-0.798578>,
+  <0.089834,0.404491,-0.910119>,
+  <-0.297198,0.363046,-0.883103>,
+  <-0.638984,0.266331,-0.721643>,
+  <-0.883490,0.129069,-0.450319>,
+  <-0.993493,-0.027843,-0.110438>,
+  <-0.952246,-0.180515,0.246257>,
+  <-0.766028,-0.305706,0.565460>,
+  <-0.463189,-0.384356,0.798578>,
+  <-0.089834,-0.404491,0.910119>,
+  <0.297198,-0.363046,0.883103>,
+  <0.690163,-0.334479,0.641716>,
+  <0.908998,-0.257054,0.328096>,
+  <0.989446,-0.140495,-0.035474>,
+  <0.919260,-0.002547,-0.393643>,
+  <0.709125,0.135789,-0.691884>,
+  <0.391032,0.253452,-0.884792>,
+  <0.013408,0.332529,-0.942998>,
+  <-0.366257,0.360982,-0.857641>,
+  <-0.690163,0.334479,-0.641716>,
+  <-0.908998,0.257054,-0.328096>,
+  <-0.989446,0.140495,0.035474>,
+  <-0.919260,0.002547,0.393643>,
+  <-0.709125,-0.135789,0.691884>,
+  <-0.391032,-0.253452,0.884792>,
+  <-0.013408,-0.332529,0.942998>,
+  <0.366257,-0.360982,0.857641>,
+  <0.728768,-0.423239,0.538299>,
+  <0.894719,-0.406250,0.185577>,
+  <0.924457,-0.327412,-0.195397>,
+  <0.813455,-0.198730,-0.546624>,
+  <0.578612,-0.039792,-0.814632>,
+  <0.255680,0.125204,-0.958620>,
+  <-0.106176,0.271138,-0.956666>,
+  <-0.451869,0.375794,-0.809069>,
+  <-0.728768,0.423239,-0.538299>,
+  <-0.894719,0.406250,-0.185577>,
+  <-0.924457,0.327412,0.195397>,
+  <-0.813455,0.198730,0.546624>,
+  <-0.578612,0.039792,0.814632>,
+  <-0.255680,-0.125204,0.958620>,
+  <0.106176,-0.271138,0.956666>,
+  <0.451869,-0.375794,0.809069>,
+  <0.726072,-0.552269,0.409656>,
+  <0.807367,-0.589294,0.029839>,
+  <0.765748,-0.536605,-0.354521>,
+  <0.607551,-0.402222,-0.684909>,
+  <0.356859,-0.206605,-0.911025>,
+  <0.051839,0.020466,-0.998446>,
+  <-0.261073,0.244421,-0.933862>,
+  <-0.534239,0.431166,-0.727107>,
+  <-0.726072,0.552269,-0.409656>,
+  <-0.807367,0.589294,-0.029839>,
+  <-0.765748,0.536605,0.354521>,
+  <-0.607551,0.402222,0.684909>,
+  <-0.356859,0.206605,0.911025>,
+  <-0.051839,-0.020466,0.998446>,
+  <0.261073,-0.244421,0.933862>,
+  <0.534239,-0.431166,0.727107>,
+  <0.654453,-0.691866,0.304981>,
+  <0.642100,-0.762587,-0.078538>,
+  <0.531994,-0.717211,-0.450100>,
+  <0.340896,-0.562647,-0.753139>,
+  <0.097900,-0.322424,-0.941519>,
+  <-0.160000,-0.033116,-0.986561>,
+  <-0.393542,0.261234,-0.881409>,
+  <-0.567171,0.515814,-0.642070>,
+  <-0.654453,0.691866,-0.304981>,
+  <-0.642100,0.762587,0.078538>,
+  <-0.531994,0.717211,0.450100>,
+  <-0.340896,0.562647,0.753139>,
+  <-0.097900,0.322424,0.941519>,
+  <0.160000,0.033116,0.986561>,
+  <0.393542,-0.261234,0.881409>,
+  <0.567171,-0.515814,0.642070>,
+  <0.553138,-0.795395,0.247762>,
+  <0.459941,-0.879576,-0.121655>,
+  <0.296722,-0.829850,-0.472551>,
+  <0.088330,-0.653787,-0.751505>,
+  <-0.133509,-0.378191,-0.916050>,
+  <-0.335023,-0.045018,-0.941134>,
+  <-0.485533,0.295008,-0.822939>,
+  <-0.562124,0.590122,-0.579459>,
+  <-0.553138,0.795395,-0.247762>,
+  <-0.459941,0.879576,0.121655>,
+  <-0.296722,0.829850,0.472551>,
+  <-0.088330,0.653787,0.751505>,
+  <0.133509,0.378191,0.916050>,
+  <0.335023,0.045018,0.941134>,
+  <0.485533,-0.295008,0.822939>,
+  <0.562124,-0.590122,0.579459>,
+  <0.453492,-0.864357,0.217330>,
+  <0.289615,-0.948738,-0.126567>,
+  <0.081646,-0.888683,-0.451195>,
+  <-0.138753,-0.693334,-0.707132>,
+  <-0.338028,-0.392431,-0.855415>,
+  <-0.485841,-0.031784,-0.873469>,
+  <-0.559689,0.333702,-0.758545>,
+  <-0.548330,0.648385,-0.528140>,
+  <-0.453492,0.864357,-0.217330>,
+  <-0.289615,0.948738,0.126567>,
+  <-0.081646,0.888683,0.451195>,
+  <0.138753,0.693334,0.707132>,
+  <0.338028,0.392431,0.855415>,
+  <0.485841,0.031784,0.873469>,
+  <0.559689,-0.333702,0.758545>,
+  <0.548330,-0.648385,0.528140>,
+  <0.354136,-0.914302,0.196570>,
+  <0.122164,-0.986535,-0.108737>,
+  <-0.128407,-0.908578,-0.397490>,
+  <-0.359428,-0.692298,-0.625728>,
+  <-0.535730,-0.370621,-0.758705>,
+  <-0.630472,0.007479,-0.776176>,
+  <-0.629231,0.384440,-0.675481>,
+  <-0.532194,0.702874,-0.471950>,
+  <-0.354136,0.914302,-0.196570>,
+  <-0.122164,0.986535,0.108737>,
+  <0.128407,0.908578,0.397490>,
+  <0.359428,0.692298,0.625728>,
+  <0.535730,0.370621,0.758705>,
+  <0.630472,-0.007479,0.776176>,
+  <0.629231,-0.384440,0.675481>,
+  <0.532194,-0.702874,0.471950>,
+  <0.237297,-0.953866,0.183929>,
+  <-0.062194,-0.996101,-0.062571>,
+  <-0.352216,-0.886688,-0.299546>,
+  <-0.588617,-0.642286,-0.490917>,
+  <-0.735406,-0.300101,-0.607551>,
+  <-0.770236,0.087772,-0.631690>,
+  <-0.687805,0.462282,-0.559661>,
+  <-0.500662,0.766414,-0.402428>,
+  <-0.237297,0.953866,-0.183929>,
+  <0.062194,0.996101,0.062571>,
+  <0.352216,0.886688,0.299546>,
+  <0.588617,0.642286,0.490917>,
+  <0.735406,0.300101,0.607551>,
+  <0.770236,-0.087772,0.631690>,
+  <0.687805,-0.462282,0.559661>,
+  <0.500662,-0.766414,0.402428>,
+  <0.091953,-0.974751,0.203481>,
+  <-0.261923,-0.964282,0.039461>,
+  <-0.575924,-0.807009,-0.130567>,
+  <-0.802246,-0.526876,-0.280718>,
+  <-0.906433,-0.166532,-0.388131>,
+  <-0.872624,0.219166,-0.436455>,
+  <-0.705966,0.571498,-0.418333>,
+  <-0.431831,0.836824,-0.336523>,
+  <-0.091953,0.974751,-0.203481>,
+  <0.261923,0.964282,-0.039461>,
+  <0.575924,0.807009,0.130567>,
+  <0.802246,0.526876,0.280718>,
+  <0.906433,0.166532,0.388131>,
+  <0.872624,-0.219166,0.436455>,
+  <0.705966,-0.571498,0.418333>,
+  <0.431831,-0.836824,0.336523>,
+  <-0.035879,-0.959928,0.277941>,
+  <-0.411462,-0.889398,0.199175>,
+  <-0.724403,-0.683465,0.090086>,
+  <-0.927061,-0.373481,-0.032718>,
+  <-0.988582,-0.006638,-0.150541>,
+  <-0.899600,0.361216,-0.245445>,
+  <-0.673662,0.674078,-0.302982>,
+  <-0.345166,0.884317,-0.314394>,
+  <0.035879,0.959928,-0.277941>,
+  <0.411462,0.889398,-0.199175>,
+  <0.724403,0.683465,-0.090086>,
+  <0.927061,0.373481,0.032718>,
+  <0.988582,0.006638,0.150541>,
+  <0.899600,-0.361216,0.245445>,
+  <0.673662,-0.674078,0.302982>,
+  <0.345166,-0.884317,0.314394>,
+  <-0.106894,-0.921258,0.373976>,
+  <-0.477744,-0.800593,0.361678>,
+  <-0.775862,-0.558046,0.294318>,
+  <-0.955862,-0.230541,0.182150>,
+  <-0.990341,0.132061,0.042252>,
+  <-0.874049,0.474559,-0.104079>,
+  <-0.624691,0.744809,-0.234565>,
+  <-0.280230,0.901669,-0.329340>,
+  <0.106894,0.921258,-0.373976>,
+  <0.477744,0.800593,-0.361678>,
+  <0.775862,0.558046,-0.294318>,
+  <0.955862,0.230541,-0.182150>,
+  <0.990341,-0.132061,-0.042252>,
+  <0.874049,-0.474559,0.104079>,
+  <0.624691,-0.744809,0.234565>,
+  <0.280230,-0.901669,0.329340>,
+  <-0.139032,-0.873969,0.465670>,
+  <-0.491703,-0.711154,0.502482>,
+  <-0.769517,-0.440073,0.462795>,
+  <-0.930180,-0.101994,0.352652>,
+  <-0.949230,0.251612,0.188821>,
+  <-0.823769,0.566913,-0.003757>,
+  <-0.572897,0.795906,-0.195762>,
+  <-0.234806,0.903730,-0.357965>,
+  <0.139032,0.873969,-0.465670>,
+  <0.491703,0.711154,-0.502482>,
+  <0.769517,0.440073,-0.462795>,
+  <0.930180,0.101994,-0.352652>,
+  <0.949230,-0.251612,-0.188821>,
+  <0.823769,-0.566913,0.003757>,
+  <0.572897,-0.795906,0.195762>,
+  <0.234806,-0.903730,0.357965>,
+  <-0.155474,-0.816377,0.556199>,
+  <-0.479417,-0.611574,0.629394>,
+  <-0.730374,-0.313665,0.606769>,
+  <-0.870138,0.031997,0.491769>,
+  <-0.877431,0.372787,0.301902>,
+  <-0.751143,0.656824,0.066073>,
+  <-0.510501,0.840866,-0.179815>,
+  <-0.192139,0.896893,-0.398328>,
+  <0.155474,0.816377,-0.556199>,
+  <0.479417,0.611574,-0.629394>,
+  <0.730374,0.313665,-0.606769>,
+  <0.870138,-0.031997,-0.491769>,
+  <0.877431,-0.372787,-0.301902>,
+  <0.751143,-0.656824,-0.066073>,
+  <0.510501,-0.840866,0.179815>,
+  <0.192139,-0.896893,0.398328>,
+  <-0.163927,-0.732301,0.660957>,
+  <-0.444780,-0.478973,0.756807>,
+  <-0.657919,-0.152725,0.737440>,
+  <-0.770896,0.196773,0.605805>,
+  <-0.766511,0.516315,0.381941>,
+  <-0.645432,0.757252,0.099930>,
+  <-0.426092,0.882905,-0.197294>,
+  <-0.141883,0.874143,-0.464482>,
+  <0.163927,0.732301,-0.660957>,
+  <0.444780,0.478973,-0.756807>,
+  <0.657919,0.152725,-0.737440>,
+  <0.770896,-0.196773,-0.605805>,
+  <0.766511,-0.516315,-0.381941>,
+  <0.645432,-0.757252,-0.099930>,
+  <0.426092,-0.882905,0.197294>,
+  <0.141883,-0.874143,0.464482>,
+  <-0.144170,-0.596568,0.789507>,
+  <-0.363714,-0.288676,0.885651>,
+  <-0.527887,0.063164,0.846963>,
+  <-0.611693,0.405388,0.679332>,
+  <-0.602374,0.685896,0.408279>,
+  <-0.501350,0.861982,0.075070>,
+  <-0.323999,0.906839,-0.269569>,
+  <-0.097323,0.813638,-0.573167>,
+  <0.144170,0.596568,-0.789507>,
+  <0.363714,0.288676,-0.885651>,
+  <0.527887,-0.063164,-0.846963>,
+  <0.611693,-0.405388,-0.679332>,
+  <0.602374,-0.685896,-0.408279>,
+  <0.501350,-0.861982,-0.075070>,
+  <0.323999,-0.906839,0.269569>,
+  <0.097323,-0.813638,0.573167>,
+  <-0.061984,-0.419855,0.905472>,
+  <-0.217256,-0.068464,0.973711>,
+  <-0.339452,0.293349,0.893711>,
+  <-0.409970,0.610503,0.677651>,
+  <-0.418073,0.834713,0.358426>,
+  <-0.362529,0.931846,-0.015367>,
+  <-0.251793,0.887113,-0.386820>,
+  <-0.102724,0.707326,-0.699384>,
+  <0.061984,0.419855,-0.905472>,
+  <0.217256,0.068464,-0.973711>,
+  <0.339452,-0.293349,-0.893711>,
+  <0.409970,-0.610503,-0.677651>,
+  <0.418073,-0.834713,-0.358426>,
+  <0.362529,-0.931846,0.015367>,
+  <0.251793,-0.887113,0.386820>,
+  <0.102724,-0.707326,0.699384>,
+  <0.055511,-0.243886,0.968214>,
+  <-0.055488,0.129537,0.990021>,
+  <-0.158039,0.483239,0.861106>,
+  <-0.236530,0.763372,0.601096>,
+  <-0.279012,0.927289,0.249574>,
+  <-0.279016,0.950035,-0.139943>,
+  <-0.236543,0.828146,-0.508155>,
+  <-0.158059,0.580179,-0.799005>,
+  <-0.055511,0.243886,-0.968214>,
+  <0.055488,-0.129537,-0.990021>,
+  <0.158039,-0.483239,-0.861106>,
+  <0.236530,-0.763372,-0.601096>,
+  <0.279012,-0.927289,-0.249574>,
+  <0.279016,-0.950035,0.139943>,
+  <0.236543,-0.828146,0.508155>,
+  <0.158059,-0.580179,0.799005>,
+  <0.156793,-0.073525,0.984891>,
+  <0.064999,0.304133,0.950409>,
+  <-0.036690,0.635490,0.771237>,
+  <-0.132793,0.870100,0.474650>,
+  <-0.208680,0.972244,0.105803>,
+  <-0.252798,0.926373,-0.279153>,
+  <-0.258429,0.739470,-0.621609>,
+  <-0.224717,0.439990,-0.869432>,
+  <-0.156793,0.073525,-0.984891>,
+  <-0.064999,-0.304133,-0.950409>,
+  <0.036690,-0.635490,-0.771237>,
+  <0.132793,-0.870100,-0.474650>,
+  <0.208680,-0.972244,-0.105803>,
+  <0.252798,-0.926373,0.279153>,
+  <0.258429,-0.739470,0.621609>,
+  <0.224717,-0.439990,0.869432>,
+  <0.216644,0.114237,0.969544>,
+  <0.123558,0.479512,0.868793>,
+  <0.011661,0.771785,0.635777>,
+  <-0.102011,0.946560,0.305970>,
+  <-0.200153,0.977231,-0.070419>,
+  <-0.267823,0.859127,-0.436087>,
+  <-0.294720,0.610229,-0.735365>,
+  <-0.276748,0.268428,-0.922690>,
+  <-0.216644,-0.114237,-0.969544>,
+  <-0.123558,-0.479512,-0.868793>,
+  <-0.011661,-0.771785,-0.635777>,
+  <0.102011,-0.946560,-0.305970>,
+  <0.200153,-0.977231,0.070419>,
+  <0.267823,-0.859127,0.436087>,
+  <0.294720,-0.610229,0.735365>,
+  <0.276748,-0.268428,0.922690>,
+  <0.220956,0.345034,0.912212>,
+  <0.112446,0.673084,0.730968>,
+  <-0.013183,0.898664,0.438440>,
+  <-0.136805,0.987430,0.079164>,
+  <-0.239600,0.925869,-0.292163>,
+  <-0.305917,0.723352,-0.619012>,
+  <-0.325662,0.410712,-0.851622>,
+  <-0.295828,0.035545,-0.954580>,
+  <-0.220956,-0.345034,-0.912212>,
+  <-0.112446,-0.673084,-0.730968>,
+  <0.013183,-0.898664,-0.438440>,
+  <0.136805,-0.987430,-0.079164>,
+  <0.239600,-0.925869,0.292163>,
+  <0.305917,-0.723352,0.619012>,
+  <0.325662,-0.410712,0.851622>,
+  <0.295828,-0.035545,0.954580>,
+  <0.220956,0.345034,0.912212>,
+  <0.112446,0.673084,0.730968>,
+  <-0.013183,0.898664,0.438440>,
+  <-0.136805,0.987430,0.079164>,
+  <-0.239600,0.925869,-0.292163>,
+  <-0.305917,0.723352,-0.619012>,
+  <-0.325662,0.410712,-0.851622>,
+  <-0.295828,0.035545,-0.954580>,
+  <-0.220956,-0.345034,-0.912212>,
+  <-0.112446,-0.673084,-0.730968>,
+  <0.013183,-0.898664,-0.438440>,
+  <0.136805,-0.987430,-0.079164>,
+  <0.239600,-0.925869,0.292163>,
+  <0.305917,-0.723352,0.619012>,
+  <0.325662,-0.410712,0.851622>,
+  <0.295828,-0.035545,0.954580>,
+  <-0.945394,-0.154010,0.287246>
+ }
+ texture_list { 512,
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+ }
+ face_indices { 3104,
+  <16,1,0>, 374, 374, 374,
+  <16,2,1>, 374, 374, 374,
+  <16,3,2>, 374, 374, 374,
+  <16,4,3>, 374, 374, 374,
+  <16,5,4>, 374, 374, 374,
+  <16,6,5>, 374, 374, 374,
+  <16,7,6>, 374, 374, 374,
+  <16,8,7>, 374, 374, 374,
+  <16,9,8>, 374, 374, 374,
+  <16,10,9>, 374, 374, 374,
+  <16,11,10>, 374, 374, 374,
+  <16,12,11>, 374, 374, 374,
+  <16,13,12>, 374, 374, 374,
+  <16,14,13>, 374, 374, 374,
+  <16,15,14>, 374, 374, 374,
+  <16,0,15>, 374, 374, 374,
+  <0,1,17>, 374, 374, 374,
+  <1,18,17>, 374, 374, 374,
+  <1,2,18>, 374, 374, 374,
+  <2,19,18>, 374, 374, 374,
+  <2,3,19>, 374, 374, 374,
+  <3,20,19>, 374, 374, 374,
+  <3,4,20>, 374, 374, 374,
+  <4,21,20>, 374, 374, 374,
+  <4,5,21>, 374, 374, 374,
+  <5,22,21>, 374, 374, 374,
+  <5,6,22>, 374, 374, 374,
+  <6,23,22>, 374, 374, 374,
+  <6,7,23>, 374, 374, 374,
+  <7,24,23>, 374, 374, 374,
+  <7,8,24>, 374, 374, 374,
+  <8,25,24>, 374, 374, 374,
+  <8,9,25>, 374, 374, 374,
+  <9,26,25>, 374, 374, 374,
+  <9,10,26>, 374, 374, 374,
+  <10,27,26>, 374, 374, 374,
+  <10,11,27>, 374, 374, 374,
+  <11,28,27>, 374, 374, 374,
+  <11,12,28>, 374, 374, 374,
+  <12,29,28>, 374, 374, 374,
+  <12,13,29>, 374, 374, 374,
+  <13,30,29>, 374, 374, 374,
+  <13,14,30>, 374, 374, 374,
+  <14,31,30>, 374, 374, 374,
+  <14,15,31>, 374, 374, 374,
+  <15,32,31>, 374, 374, 374,
+  <15,0,32>, 374, 374, 374,
+  <0,17,32>, 374, 374, 374,
+  <17,18,33>, 374, 374, 374,
+  <18,34,33>, 374, 374, 374,
+  <18,19,34>, 374, 374, 374,
+  <19,35,34>, 374, 374, 374,
+  <19,20,35>, 374, 374, 374,
+  <20,36,35>, 374, 374, 374,
+  <20,21,36>, 374, 374, 374,
+  <21,37,36>, 374, 374, 374,
+  <21,22,37>, 374, 374, 374,
+  <22,38,37>, 374, 374, 374,
+  <22,23,38>, 374, 374, 374,
+  <23,39,38>, 374, 374, 374,
+  <23,24,39>, 374, 374, 374,
+  <24,40,39>, 374, 374, 374,
+  <24,25,40>, 374, 374, 374,
+  <25,41,40>, 374, 374, 374,
+  <25,26,41>, 374, 374, 374,
+  <26,42,41>, 374, 374, 374,
+  <26,27,42>, 374, 374, 374,
+  <27,43,42>, 374, 374, 374,
+  <27,28,43>, 374, 374, 374,
+  <28,44,43>, 374, 374, 374,
+  <28,29,44>, 374, 374, 374,
+  <29,45,44>, 374, 374, 374,
+  <29,30,45>, 374, 374, 374,
+  <30,46,45>, 374, 374, 374,
+  <30,31,46>, 374, 374, 374,
+  <31,47,46>, 374, 374, 374,
+  <31,32,47>, 374, 374, 374,
+  <32,48,47>, 374, 374, 374,
+  <32,17,48>, 374, 374, 374,
+  <17,33,48>, 374, 374, 374,
+  <33,34,49>, 374, 374, 374,
+  <34,50,49>, 374, 374, 374,
+  <34,35,50>, 374, 374, 374,
+  <35,51,50>, 374, 374, 374,
+  <35,36,51>, 374, 374, 374,
+  <36,52,51>, 374, 374, 374,
+  <36,37,52>, 374, 374, 374,
+  <37,53,52>, 374, 374, 374,
+  <37,38,53>, 374, 374, 374,
+  <38,54,53>, 374, 374, 374,
+  <38,39,54>, 374, 374, 374,
+  <39,55,54>, 374, 374, 374,
+  <39,40,55>, 374, 374, 374,
+  <40,56,55>, 374, 374, 374,
+  <40,41,56>, 374, 374, 374,
+  <41,57,56>, 374, 374, 374,
+  <41,42,57>, 374, 374, 374,
+  <42,58,57>, 374, 374, 374,
+  <42,43,58>, 374, 374, 374,
+  <43,59,58>, 374, 374, 374,
+  <43,44,59>, 374, 374, 374,
+  <44,60,59>, 374, 374, 374,
+  <44,45,60>, 374, 374, 374,
+  <45,61,60>, 374, 374, 374,
+  <45,46,61>, 374, 374, 374,
+  <46,62,61>, 374, 374, 374,
+  <46,47,62>, 374, 374, 374,
+  <47,63,62>, 374, 374, 374,
+  <47,48,63>, 374, 374, 374,
+  <48,64,63>, 374, 374, 374,
+  <48,33,64>, 374, 374, 374,
+  <33,49,64>, 374, 374, 374,
+  <49,50,65>, 374, 374, 374,
+  <50,66,65>, 374, 374, 374,
+  <50,51,66>, 374, 374, 374,
+  <51,67,66>, 374, 374, 374,
+  <51,52,67>, 374, 374, 374,
+  <52,68,67>, 374, 374, 374,
+  <52,53,68>, 374, 374, 374,
+  <53,69,68>, 374, 374, 374,
+  <53,54,69>, 374, 374, 374,
+  <54,70,69>, 374, 374, 374,
+  <54,55,70>, 374, 374, 374,
+  <55,71,70>, 374, 374, 374,
+  <55,56,71>, 374, 374, 374,
+  <56,72,71>, 374, 374, 374,
+  <56,57,72>, 374, 374, 374,
+  <57,73,72>, 374, 374, 374,
+  <57,58,73>, 374, 374, 374,
+  <58,74,73>, 374, 374, 374,
+  <58,59,74>, 374, 374, 374,
+  <59,75,74>, 374, 374, 374,
+  <59,60,75>, 374, 374, 374,
+  <60,76,75>, 374, 374, 374,
+  <60,61,76>, 374, 374, 374,
+  <61,77,76>, 374, 374, 374,
+  <61,62,77>, 374, 374, 374,
+  <62,78,77>, 374, 374, 374,
+  <62,63,78>, 374, 374, 374,
+  <63,79,78>, 374, 374, 374,
+  <63,64,79>, 374, 374, 374,
+  <64,80,79>, 374, 374, 374,
+  <64,49,80>, 374, 374, 374,
+  <49,65,80>, 374, 374, 374,
+  <65,66,96>, 374, 374, 374,
+  <66,81,96>, 374, 374, 374,
+  <66,67,81>, 374, 374, 374,
+  <67,82,81>, 374, 374, 374,
+  <67,68,82>, 374, 374, 374,
+  <68,83,82>, 374, 374, 374,
+  <68,69,83>, 374, 374, 374,
+  <69,84,83>, 374, 374, 374,
+  <69,70,84>, 374, 374, 374,
+  <70,85,84>, 374, 374, 374,
+  <70,71,85>, 374, 374, 374,
+  <71,86,85>, 374, 374, 374,
+  <71,72,86>, 374, 374, 374,
+  <72,87,86>, 374, 374, 374,
+  <72,73,87>, 374, 374, 374,
+  <73,88,87>, 374, 374, 374,
+  <73,74,88>, 374, 374, 374,
+  <74,89,88>, 374, 374, 374,
+  <74,75,89>, 374, 374, 374,
+  <75,90,89>, 374, 374, 374,
+  <75,76,90>, 374, 374, 374,
+  <76,91,90>, 374, 374, 374,
+  <76,77,91>, 374, 374, 374,
+  <77,92,91>, 374, 374, 374,
+  <77,78,92>, 374, 374, 374,
+  <78,93,92>, 374, 374, 374,
+  <78,79,93>, 374, 374, 374,
+  <79,94,93>, 374, 374, 374,
+  <79,80,94>, 374, 374, 374,
+  <80,95,94>, 374, 374, 374,
+  <80,65,95>, 374, 374, 374,
+  <65,96,95>, 374, 374, 374,
+  <81,82,112>, 374, 374, 374,
+  <82,97,112>, 374, 374, 374,
+  <82,83,97>, 374, 374, 374,
+  <83,98,97>, 374, 374, 374,
+  <83,84,98>, 374, 374, 374,
+  <84,99,98>, 374, 374, 374,
+  <84,85,99>, 374, 374, 374,
+  <85,100,99>, 374, 374, 374,
+  <85,86,100>, 374, 374, 374,
+  <86,101,100>, 374, 374, 374,
+  <86,87,101>, 374, 374, 374,
+  <87,102,101>, 374, 374, 374,
+  <87,88,102>, 374, 374, 374,
+  <88,103,102>, 374, 374, 374,
+  <88,89,103>, 374, 374, 374,
+  <89,104,103>, 374, 374, 374,
+  <89,90,104>, 374, 374, 374,
+  <90,105,104>, 374, 374, 374,
+  <90,91,105>, 374, 374, 374,
+  <91,106,105>, 374, 374, 374,
+  <91,92,106>, 374, 374, 374,
+  <92,107,106>, 374, 374, 374,
+  <92,93,107>, 374, 374, 374,
+  <93,108,107>, 374, 374, 374,
+  <93,94,108>, 374, 374, 374,
+  <94,109,108>, 374, 374, 374,
+  <94,95,109>, 374, 374, 374,
+  <95,110,109>, 374, 374, 374,
+  <95,96,110>, 374, 374, 374,
+  <96,111,110>, 374, 374, 374,
+  <96,81,111>, 374, 374, 374,
+  <81,112,111>, 374, 374, 374,
+  <97,98,113>, 374, 374, 374,
+  <98,114,113>, 374, 374, 374,
+  <98,99,114>, 374, 374, 374,
+  <99,115,114>, 374, 374, 374,
+  <99,100,115>, 374, 374, 374,
+  <100,116,115>, 374, 374, 374,
+  <100,101,116>, 374, 374, 374,
+  <101,117,116>, 374, 374, 374,
+  <101,102,117>, 374, 374, 374,
+  <102,118,117>, 374, 374, 374,
+  <102,103,118>, 374, 374, 374,
+  <103,119,118>, 374, 374, 374,
+  <103,104,119>, 374, 374, 374,
+  <104,120,119>, 374, 374, 374,
+  <104,105,120>, 374, 374, 374,
+  <105,121,120>, 374, 374, 374,
+  <105,106,121>, 374, 374, 374,
+  <106,122,121>, 374, 374, 374,
+  <106,107,122>, 374, 374, 374,
+  <107,123,122>, 374, 374, 374,
+  <107,108,123>, 374, 374, 374,
+  <108,124,123>, 374, 374, 374,
+  <108,109,124>, 374, 374, 374,
+  <109,125,124>, 374, 374, 374,
+  <109,110,125>, 374, 374, 374,
+  <110,126,125>, 374, 374, 374,
+  <110,111,126>, 374, 374, 374,
+  <111,127,126>, 374, 374, 374,
+  <111,112,127>, 374, 374, 374,
+  <112,128,127>, 374, 374, 374,
+  <112,97,128>, 374, 374, 374,
+  <97,113,128>, 374, 374, 374,
+  <113,114,129>, 374, 374, 374,
+  <114,130,129>, 374, 374, 374,
+  <114,115,130>, 374, 374, 374,
+  <115,131,130>, 374, 374, 374,
+  <115,116,131>, 374, 374, 374,
+  <116,132,131>, 374, 374, 374,
+  <116,117,132>, 374, 374, 374,
+  <117,133,132>, 374, 374, 374,
+  <117,118,133>, 374, 374, 374,
+  <118,134,133>, 374, 374, 374,
+  <118,119,134>, 374, 374, 374,
+  <119,135,134>, 374, 374, 374,
+  <119,120,135>, 374, 374, 374,
+  <120,136,135>, 374, 374, 374,
+  <120,121,136>, 374, 374, 374,
+  <121,137,136>, 374, 374, 374,
+  <121,122,137>, 374, 374, 374,
+  <122,138,137>, 374, 374, 374,
+  <122,123,138>, 374, 374, 374,
+  <123,139,138>, 374, 374, 374,
+  <123,124,139>, 374, 374, 374,
+  <124,140,139>, 374, 374, 374,
+  <124,125,140>, 374, 374, 374,
+  <125,141,140>, 374, 374, 374,
+  <125,126,141>, 374, 374, 374,
+  <126,142,141>, 374, 374, 374,
+  <126,127,142>, 374, 374, 374,
+  <127,143,142>, 374, 374, 374,
+  <127,128,143>, 374, 374, 374,
+  <128,144,143>, 374, 374, 374,
+  <128,113,144>, 374, 374, 374,
+  <113,129,144>, 374, 374, 374,
+  <129,130,145>, 374, 374, 374,
+  <130,146,145>, 374, 374, 374,
+  <130,131,146>, 374, 374, 374,
+  <131,147,146>, 374, 374, 374,
+  <131,132,147>, 374, 374, 374,
+  <132,148,147>, 374, 374, 374,
+  <132,133,148>, 374, 374, 374,
+  <133,149,148>, 374, 374, 374,
+  <133,134,149>, 374, 374, 374,
+  <134,150,149>, 374, 374, 374,
+  <134,135,150>, 374, 374, 374,
+  <135,151,150>, 374, 374, 374,
+  <135,136,151>, 374, 374, 374,
+  <136,152,151>, 374, 374, 374,
+  <136,137,152>, 374, 374, 374,
+  <137,153,152>, 374, 374, 374,
+  <137,138,153>, 374, 374, 374,
+  <138,154,153>, 374, 374, 374,
+  <138,139,154>, 374, 374, 374,
+  <139,155,154>, 374, 374, 374,
+  <139,140,155>, 374, 374, 374,
+  <140,156,155>, 374, 374, 374,
+  <140,141,156>, 374, 374, 374,
+  <141,157,156>, 374, 374, 374,
+  <141,142,157>, 374, 374, 374,
+  <142,158,157>, 374, 374, 374,
+  <142,143,158>, 374, 374, 374,
+  <143,159,158>, 374, 374, 374,
+  <143,144,159>, 374, 374, 374,
+  <144,160,159>, 374, 374, 374,
+  <144,129,160>, 374, 374, 374,
+  <129,145,160>, 374, 374, 374,
+  <145,146,161>, 374, 374, 374,
+  <146,162,161>, 374, 374, 374,
+  <146,147,162>, 374, 374, 374,
+  <147,163,162>, 374, 374, 374,
+  <147,148,163>, 374, 374, 374,
+  <148,164,163>, 374, 374, 374,
+  <148,149,164>, 374, 374, 374,
+  <149,165,164>, 374, 374, 374,
+  <149,150,165>, 374, 374, 374,
+  <150,166,165>, 374, 374, 374,
+  <150,151,166>, 374, 374, 374,
+  <151,167,166>, 374, 374, 374,
+  <151,152,167>, 374, 374, 374,
+  <152,168,167>, 374, 374, 374,
+  <152,153,168>, 374, 374, 374,
+  <153,169,168>, 374, 374, 374,
+  <153,154,169>, 374, 374, 374,
+  <154,170,169>, 374, 374, 374,
+  <154,155,170>, 374, 374, 374,
+  <155,171,170>, 374, 374, 374,
+  <155,156,171>, 374, 374, 374,
+  <156,172,171>, 374, 374, 374,
+  <156,157,172>, 374, 374, 374,
+  <157,173,172>, 374, 374, 374,
+  <157,158,173>, 374, 374, 374,
+  <158,174,173>, 374, 374, 374,
+  <158,159,174>, 374, 374, 374,
+  <159,175,174>, 374, 374, 374,
+  <159,160,175>, 374, 374, 374,
+  <160,176,175>, 374, 374, 374,
+  <160,145,176>, 374, 374, 374,
+  <145,161,176>, 374, 374, 374,
+  <161,162,177>, 374, 374, 374,
+  <162,178,177>, 374, 374, 374,
+  <162,163,178>, 374, 374, 374,
+  <163,179,178>, 374, 374, 374,
+  <163,164,179>, 374, 374, 374,
+  <164,180,179>, 374, 374, 374,
+  <164,165,180>, 374, 374, 374,
+  <165,181,180>, 374, 374, 374,
+  <165,166,181>, 374, 374, 374,
+  <166,182,181>, 374, 374, 374,
+  <166,167,182>, 374, 374, 374,
+  <167,183,182>, 374, 374, 374,
+  <167,168,183>, 374, 374, 374,
+  <168,184,183>, 374, 374, 374,
+  <168,169,184>, 374, 374, 374,
+  <169,185,184>, 374, 374, 374,
+  <169,170,185>, 374, 374, 374,
+  <170,186,185>, 374, 374, 374,
+  <170,171,186>, 374, 374, 374,
+  <171,187,186>, 374, 374, 374,
+  <171,172,187>, 374, 374, 374,
+  <172,188,187>, 374, 374, 374,
+  <172,173,188>, 374, 374, 374,
+  <173,189,188>, 374, 374, 374,
+  <173,174,189>, 374, 374, 374,
+  <174,190,189>, 374, 374, 374,
+  <174,175,190>, 374, 374, 374,
+  <175,191,190>, 374, 374, 374,
+  <175,176,191>, 374, 374, 374,
+  <176,192,191>, 374, 374, 374,
+  <176,161,192>, 374, 374, 374,
+  <161,177,192>, 374, 374, 374,
+  <177,178,193>, 374, 374, 374,
+  <178,194,193>, 374, 374, 374,
+  <178,179,194>, 374, 374, 374,
+  <179,195,194>, 374, 374, 374,
+  <179,180,195>, 374, 374, 374,
+  <180,196,195>, 374, 374, 374,
+  <180,181,196>, 374, 374, 374,
+  <181,197,196>, 374, 374, 374,
+  <181,182,197>, 374, 374, 374,
+  <182,198,197>, 374, 374, 374,
+  <182,183,198>, 374, 374, 374,
+  <183,199,198>, 374, 374, 374,
+  <183,184,199>, 374, 374, 374,
+  <184,200,199>, 374, 374, 374,
+  <184,185,200>, 374, 374, 374,
+  <185,201,200>, 374, 374, 374,
+  <185,186,201>, 374, 374, 374,
+  <186,202,201>, 374, 374, 374,
+  <186,187,202>, 374, 374, 374,
+  <187,203,202>, 374, 374, 374,
+  <187,188,203>, 374, 374, 374,
+  <188,204,203>, 374, 374, 374,
+  <188,189,204>, 374, 374, 374,
+  <189,205,204>, 374, 374, 374,
+  <189,190,205>, 374, 374, 374,
+  <190,206,205>, 374, 374, 374,
+  <190,191,206>, 374, 374, 374,
+  <191,207,206>, 374, 374, 374,
+  <191,192,207>, 374, 374, 374,
+  <192,208,207>, 374, 374, 374,
+  <192,177,208>, 374, 374, 374,
+  <177,193,208>, 374, 374, 374,
+  <193,194,209>, 374, 374, 374,
+  <194,210,209>, 374, 374, 374,
+  <194,195,210>, 374, 374, 374,
+  <195,211,210>, 374, 374, 374,
+  <195,196,211>, 374, 374, 374,
+  <196,212,211>, 374, 374, 374,
+  <196,197,212>, 374, 374, 374,
+  <197,213,212>, 374, 374, 374,
+  <197,198,213>, 374, 374, 374,
+  <198,214,213>, 374, 374, 374,
+  <198,199,214>, 374, 374, 374,
+  <199,215,214>, 374, 374, 374,
+  <199,200,215>, 374, 374, 374,
+  <200,216,215>, 374, 374, 374,
+  <200,201,216>, 374, 374, 374,
+  <201,217,216>, 374, 374, 374,
+  <201,202,217>, 374, 374, 374,
+  <202,218,217>, 374, 374, 374,
+  <202,203,218>, 374, 374, 374,
+  <203,219,218>, 374, 374, 374,
+  <203,204,219>, 374, 374, 374,
+  <204,220,219>, 374, 374, 374,
+  <204,205,220>, 374, 374, 374,
+  <205,221,220>, 374, 374, 374,
+  <205,206,221>, 374, 374, 374,
+  <206,222,221>, 374, 374, 374,
+  <206,207,222>, 374, 374, 374,
+  <207,223,222>, 374, 374, 374,
+  <207,208,223>, 374, 374, 374,
+  <208,224,223>, 374, 374, 374,
+  <208,193,224>, 374, 374, 374,
+  <193,209,224>, 374, 374, 374,
+  <209,210,225>, 374, 374, 374,
+  <210,226,225>, 374, 374, 374,
+  <210,211,226>, 374, 374, 374,
+  <211,227,226>, 374, 374, 374,
+  <211,212,227>, 374, 374, 374,
+  <212,228,227>, 374, 374, 374,
+  <212,213,228>, 374, 374, 374,
+  <213,229,228>, 374, 374, 374,
+  <213,214,229>, 374, 374, 374,
+  <214,230,229>, 374, 374, 374,
+  <214,215,230>, 374, 374, 374,
+  <215,231,230>, 374, 374, 374,
+  <215,216,231>, 374, 374, 374,
+  <216,232,231>, 374, 374, 374,
+  <216,217,232>, 374, 374, 374,
+  <217,233,232>, 374, 374, 374,
+  <217,218,233>, 374, 374, 374,
+  <218,234,233>, 374, 374, 374,
+  <218,219,234>, 374, 374, 374,
+  <219,235,234>, 374, 374, 374,
+  <219,220,235>, 374, 374, 374,
+  <220,236,235>, 374, 374, 374,
+  <220,221,236>, 374, 374, 374,
+  <221,237,236>, 374, 374, 374,
+  <221,222,237>, 374, 374, 374,
+  <222,238,237>, 374, 374, 374,
+  <222,223,238>, 374, 374, 374,
+  <223,239,238>, 374, 374, 374,
+  <223,224,239>, 374, 374, 374,
+  <224,240,239>, 374, 374, 374,
+  <224,209,240>, 374, 374, 374,
+  <209,225,240>, 374, 374, 374,
+  <225,226,241>, 374, 374, 374,
+  <226,242,241>, 374, 374, 374,
+  <226,227,242>, 374, 374, 374,
+  <227,243,242>, 374, 374, 374,
+  <227,228,243>, 374, 374, 374,
+  <228,244,243>, 374, 374, 374,
+  <228,229,244>, 374, 374, 374,
+  <229,245,244>, 374, 374, 374,
+  <229,230,245>, 374, 374, 374,
+  <230,246,245>, 374, 374, 374,
+  <230,231,246>, 374, 374, 374,
+  <231,247,246>, 374, 374, 374,
+  <231,232,247>, 374, 374, 374,
+  <232,248,247>, 374, 374, 374,
+  <232,233,248>, 374, 374, 374,
+  <233,249,248>, 374, 374, 374,
+  <233,234,249>, 374, 374, 374,
+  <234,250,249>, 374, 374, 374,
+  <234,235,250>, 374, 374, 374,
+  <235,251,250>, 374, 374, 374,
+  <235,236,251>, 374, 374, 374,
+  <236,252,251>, 374, 374, 374,
+  <236,237,252>, 374, 374, 374,
+  <237,253,252>, 374, 374, 374,
+  <237,238,253>, 374, 374, 374,
+  <238,254,253>, 374, 374, 374,
+  <238,239,254>, 374, 374, 374,
+  <239,255,254>, 374, 374, 374,
+  <239,240,255>, 374, 374, 374,
+  <240,256,255>, 374, 374, 374,
+  <240,225,256>, 374, 374, 374,
+  <225,241,256>, 374, 374, 374,
+  <241,242,257>, 374, 374, 374,
+  <242,258,257>, 374, 374, 374,
+  <242,243,258>, 374, 374, 374,
+  <243,259,258>, 374, 374, 374,
+  <243,244,259>, 374, 374, 374,
+  <244,260,259>, 374, 374, 374,
+  <244,245,260>, 374, 374, 374,
+  <245,261,260>, 374, 374, 374,
+  <245,246,261>, 374, 374, 374,
+  <246,262,261>, 374, 374, 374,
+  <246,247,262>, 374, 374, 374,
+  <247,263,262>, 374, 374, 374,
+  <247,248,263>, 374, 374, 374,
+  <248,264,263>, 374, 374, 374,
+  <248,249,264>, 374, 374, 374,
+  <249,265,264>, 374, 374, 374,
+  <249,250,265>, 374, 374, 374,
+  <250,266,265>, 374, 374, 374,
+  <250,251,266>, 374, 374, 374,
+  <251,267,266>, 374, 374, 374,
+  <251,252,267>, 374, 374, 374,
+  <252,268,267>, 374, 374, 374,
+  <252,253,268>, 374, 374, 374,
+  <253,269,268>, 374, 374, 374,
+  <253,254,269>, 374, 374, 374,
+  <254,270,269>, 374, 374, 374,
+  <254,255,270>, 374, 374, 374,
+  <255,271,270>, 374, 374, 374,
+  <255,256,271>, 374, 374, 374,
+  <256,272,271>, 374, 374, 374,
+  <256,241,272>, 374, 374, 374,
+  <241,257,272>, 374, 374, 374,
+  <257,258,273>, 374, 374, 374,
+  <258,274,273>, 374, 374, 374,
+  <258,259,274>, 374, 374, 374,
+  <259,275,274>, 374, 374, 374,
+  <259,260,275>, 374, 374, 374,
+  <260,276,275>, 374, 374, 374,
+  <260,261,276>, 374, 374, 374,
+  <261,277,276>, 374, 374, 374,
+  <261,262,277>, 374, 374, 374,
+  <262,278,277>, 374, 374, 374,
+  <262,263,278>, 374, 374, 374,
+  <263,279,278>, 374, 374, 374,
+  <263,264,279>, 374, 374, 374,
+  <264,280,279>, 374, 374, 374,
+  <264,265,280>, 374, 374, 374,
+  <265,281,280>, 374, 374, 374,
+  <265,266,281>, 374, 374, 374,
+  <266,282,281>, 374, 374, 374,
+  <266,267,282>, 374, 374, 374,
+  <267,283,282>, 374, 374, 374,
+  <267,268,283>, 374, 374, 374,
+  <268,284,283>, 374, 374, 374,
+  <268,269,284>, 374, 374, 374,
+  <269,285,284>, 374, 374, 374,
+  <269,270,285>, 374, 374, 374,
+  <270,286,285>, 374, 374, 374,
+  <270,271,286>, 374, 374, 374,
+  <271,287,286>, 374, 374, 374,
+  <271,272,287>, 374, 374, 374,
+  <272,288,287>, 374, 374, 374,
+  <272,257,288>, 374, 374, 374,
+  <257,273,288>, 374, 374, 374,
+  <273,274,289>, 374, 374, 374,
+  <274,290,289>, 374, 374, 374,
+  <274,275,290>, 374, 374, 374,
+  <275,291,290>, 374, 374, 374,
+  <275,276,291>, 374, 374, 374,
+  <276,292,291>, 374, 374, 374,
+  <276,277,292>, 374, 374, 374,
+  <277,293,292>, 374, 374, 374,
+  <277,278,293>, 374, 374, 374,
+  <278,294,293>, 374, 374, 374,
+  <278,279,294>, 374, 374, 374,
+  <279,295,294>, 374, 374, 374,
+  <279,280,295>, 374, 374, 374,
+  <280,296,295>, 374, 374, 374,
+  <280,281,296>, 374, 374, 374,
+  <281,297,296>, 374, 374, 374,
+  <281,282,297>, 374, 374, 374,
+  <282,298,297>, 374, 374, 374,
+  <282,283,298>, 374, 374, 374,
+  <283,299,298>, 374, 374, 374,
+  <283,284,299>, 374, 374, 374,
+  <284,300,299>, 374, 374, 374,
+  <284,285,300>, 374, 374, 374,
+  <285,301,300>, 374, 374, 374,
+  <285,286,301>, 374, 374, 374,
+  <286,302,301>, 374, 374, 374,
+  <286,287,302>, 374, 374, 374,
+  <287,303,302>, 374, 374, 374,
+  <287,288,303>, 374, 374, 374,
+  <288,304,303>, 374, 374, 374,
+  <288,273,304>, 374, 374, 374,
+  <273,289,304>, 374, 374, 374,
+  <289,290,305>, 374, 374, 374,
+  <290,306,305>, 374, 374, 374,
+  <290,291,306>, 374, 374, 374,
+  <291,307,306>, 374, 374, 374,
+  <291,292,307>, 374, 374, 374,
+  <292,308,307>, 374, 374, 374,
+  <292,293,308>, 374, 374, 374,
+  <293,309,308>, 374, 374, 374,
+  <293,294,309>, 374, 374, 374,
+  <294,310,309>, 374, 374, 374,
+  <294,295,310>, 374, 374, 374,
+  <295,311,310>, 374, 374, 374,
+  <295,296,311>, 374, 374, 374,
+  <296,312,311>, 374, 374, 374,
+  <296,297,312>, 374, 374, 374,
+  <297,313,312>, 374, 374, 374,
+  <297,298,313>, 374, 374, 374,
+  <298,314,313>, 374, 374, 374,
+  <298,299,314>, 374, 374, 374,
+  <299,315,314>, 374, 374, 374,
+  <299,300,315>, 374, 374, 374,
+  <300,316,315>, 374, 374, 374,
+  <300,301,316>, 374, 374, 374,
+  <301,317,316>, 374, 374, 374,
+  <301,302,317>, 374, 374, 374,
+  <302,318,317>, 374, 374, 374,
+  <302,303,318>, 374, 374, 374,
+  <303,319,318>, 374, 374, 374,
+  <303,304,319>, 374, 374, 374,
+  <304,320,319>, 374, 374, 374,
+  <304,289,320>, 374, 374, 374,
+  <289,305,320>, 374, 374, 374,
+  <305,306,321>, 374, 374, 374,
+  <306,322,321>, 374, 374, 374,
+  <306,307,322>, 374, 374, 374,
+  <307,323,322>, 374, 374, 374,
+  <307,308,323>, 374, 374, 374,
+  <308,324,323>, 374, 374, 374,
+  <308,309,324>, 374, 374, 374,
+  <309,325,324>, 374, 374, 374,
+  <309,310,325>, 374, 374, 374,
+  <310,326,325>, 374, 374, 374,
+  <310,311,326>, 374, 374, 374,
+  <311,327,326>, 374, 374, 374,
+  <311,312,327>, 374, 374, 374,
+  <312,328,327>, 374, 374, 374,
+  <312,313,328>, 374, 374, 374,
+  <313,329,328>, 374, 374, 374,
+  <313,314,329>, 374, 374, 374,
+  <314,330,329>, 374, 374, 374,
+  <314,315,330>, 374, 374, 374,
+  <315,331,330>, 374, 374, 374,
+  <315,316,331>, 374, 374, 374,
+  <316,332,331>, 374, 374, 374,
+  <316,317,332>, 374, 374, 374,
+  <317,333,332>, 374, 374, 374,
+  <317,318,333>, 374, 374, 374,
+  <318,334,333>, 374, 374, 374,
+  <318,319,334>, 374, 374, 374,
+  <319,335,334>, 374, 374, 374,
+  <319,320,335>, 374, 374, 374,
+  <320,336,335>, 374, 374, 374,
+  <320,305,336>, 374, 374, 374,
+  <305,321,336>, 374, 374, 374,
+  <321,322,337>, 374, 374, 374,
+  <322,338,337>, 374, 374, 374,
+  <322,323,338>, 374, 374, 374,
+  <323,339,338>, 374, 374, 374,
+  <323,324,339>, 374, 374, 374,
+  <324,340,339>, 374, 374, 374,
+  <324,325,340>, 374, 374, 374,
+  <325,341,340>, 374, 374, 374,
+  <325,326,341>, 374, 374, 374,
+  <326,342,341>, 374, 374, 374,
+  <326,327,342>, 374, 374, 374,
+  <327,343,342>, 374, 374, 374,
+  <327,328,343>, 374, 374, 374,
+  <328,344,343>, 374, 374, 374,
+  <328,329,344>, 374, 374, 374,
+  <329,345,344>, 374, 374, 374,
+  <329,330,345>, 374, 374, 374,
+  <330,346,345>, 374, 374, 374,
+  <330,331,346>, 374, 374, 374,
+  <331,347,346>, 374, 374, 374,
+  <331,332,347>, 374, 374, 374,
+  <332,348,347>, 374, 374, 374,
+  <332,333,348>, 374, 374, 374,
+  <333,349,348>, 374, 374, 374,
+  <333,334,349>, 374, 374, 374,
+  <334,350,349>, 374, 374, 374,
+  <334,335,350>, 374, 374, 374,
+  <335,351,350>, 374, 374, 374,
+  <335,336,351>, 374, 374, 374,
+  <336,352,351>, 374, 374, 374,
+  <336,321,352>, 374, 374, 374,
+  <321,337,352>, 374, 374, 374,
+  <337,338,353>, 374, 374, 374,
+  <338,354,353>, 374, 374, 374,
+  <338,339,354>, 374, 374, 374,
+  <339,355,354>, 374, 374, 374,
+  <339,340,355>, 374, 374, 374,
+  <340,356,355>, 374, 374, 374,
+  <340,341,356>, 374, 374, 374,
+  <341,357,356>, 374, 374, 374,
+  <341,342,357>, 374, 374, 374,
+  <342,358,357>, 374, 374, 374,
+  <342,343,358>, 374, 374, 374,
+  <343,359,358>, 374, 374, 374,
+  <343,344,359>, 374, 374, 374,
+  <344,360,359>, 374, 374, 374,
+  <344,345,360>, 374, 374, 374,
+  <345,361,360>, 374, 374, 374,
+  <345,346,361>, 374, 374, 374,
+  <346,362,361>, 374, 374, 374,
+  <346,347,362>, 374, 374, 374,
+  <347,363,362>, 374, 374, 374,
+  <347,348,363>, 374, 374, 374,
+  <348,364,363>, 374, 374, 374,
+  <348,349,364>, 374, 374, 374,
+  <349,365,364>, 374, 374, 374,
+  <349,350,365>, 374, 374, 374,
+  <350,366,365>, 374, 374, 374,
+  <350,351,366>, 374, 374, 374,
+  <351,367,366>, 374, 374, 374,
+  <351,352,367>, 374, 374, 374,
+  <352,368,367>, 374, 374, 374,
+  <352,337,368>, 374, 374, 374,
+  <337,353,368>, 374, 374, 374,
+  <353,354,369>, 374, 374, 374,
+  <354,370,369>, 374, 374, 374,
+  <354,355,370>, 374, 374, 374,
+  <355,371,370>, 374, 374, 374,
+  <355,356,371>, 374, 374, 374,
+  <356,372,371>, 374, 374, 374,
+  <356,357,372>, 374, 374, 374,
+  <357,373,372>, 374, 374, 374,
+  <357,358,373>, 374, 374, 374,
+  <358,374,373>, 374, 374, 374,
+  <358,359,374>, 374, 374, 374,
+  <359,375,374>, 374, 374, 374,
+  <359,360,375>, 374, 374, 374,
+  <360,376,375>, 374, 374, 374,
+  <360,361,376>, 374, 374, 374,
+  <361,377,376>, 374, 374, 374,
+  <361,362,377>, 374, 374, 374,
+  <362,378,377>, 374, 374, 374,
+  <362,363,378>, 374, 374, 374,
+  <363,379,378>, 374, 374, 374,
+  <363,364,379>, 374, 374, 374,
+  <364,380,379>, 374, 374, 374,
+  <364,365,380>, 374, 374, 374,
+  <365,381,380>, 374, 374, 374,
+  <365,366,381>, 374, 374, 374,
+  <366,382,381>, 374, 374, 374,
+  <366,367,382>, 374, 374, 374,
+  <367,383,382>, 374, 374, 374,
+  <367,368,383>, 374, 374, 374,
+  <368,384,383>, 374, 374, 374,
+  <368,353,384>, 374, 374, 374,
+  <353,369,384>, 374, 374, 374,
+  <369,370,385>, 374, 374, 374,
+  <370,386,385>, 374, 374, 374,
+  <370,371,386>, 374, 374, 374,
+  <371,387,386>, 374, 374, 374,
+  <371,372,387>, 374, 374, 374,
+  <372,388,387>, 374, 374, 374,
+  <372,373,388>, 374, 374, 374,
+  <373,389,388>, 374, 374, 374,
+  <373,374,389>, 374, 374, 374,
+  <374,390,389>, 374, 374, 374,
+  <374,375,390>, 374, 374, 374,
+  <375,391,390>, 374, 374, 374,
+  <375,376,391>, 374, 374, 374,
+  <376,392,391>, 374, 374, 374,
+  <376,377,392>, 374, 374, 374,
+  <377,393,392>, 374, 374, 374,
+  <377,378,393>, 374, 374, 374,
+  <378,394,393>, 374, 374, 374,
+  <378,379,394>, 374, 374, 374,
+  <379,395,394>, 374, 374, 374,
+  <379,380,395>, 374, 374, 374,
+  <380,396,395>, 374, 374, 374,
+  <380,381,396>, 374, 374, 374,
+  <381,397,396>, 374, 374, 374,
+  <381,382,397>, 374, 374, 374,
+  <382,398,397>, 374, 374, 374,
+  <382,383,398>, 374, 374, 374,
+  <383,399,398>, 374, 374, 374,
+  <383,384,399>, 374, 374, 374,
+  <384,400,399>, 374, 374, 374,
+  <384,369,400>, 374, 374, 374,
+  <369,385,400>, 374, 374, 374,
+  <385,386,401>, 374, 374, 374,
+  <386,402,401>, 374, 374, 374,
+  <386,387,402>, 374, 374, 374,
+  <387,403,402>, 374, 374, 374,
+  <387,388,403>, 374, 374, 374,
+  <388,404,403>, 374, 374, 374,
+  <388,389,404>, 374, 374, 374,
+  <389,405,404>, 374, 374, 374,
+  <389,390,405>, 374, 374, 374,
+  <390,406,405>, 374, 374, 374,
+  <390,391,406>, 374, 374, 374,
+  <391,407,406>, 374, 374, 374,
+  <391,392,407>, 374, 374, 374,
+  <392,408,407>, 374, 374, 374,
+  <392,393,408>, 374, 374, 374,
+  <393,409,408>, 374, 374, 374,
+  <393,394,409>, 374, 374, 374,
+  <394,410,409>, 374, 374, 374,
+  <394,395,410>, 374, 374, 374,
+  <395,411,410>, 374, 374, 374,
+  <395,396,411>, 374, 374, 374,
+  <396,412,411>, 374, 374, 374,
+  <396,397,412>, 374, 374, 374,
+  <397,413,412>, 374, 374, 374,
+  <397,398,413>, 374, 374, 374,
+  <398,414,413>, 374, 374, 374,
+  <398,399,414>, 374, 374, 374,
+  <399,415,414>, 374, 374, 374,
+  <399,400,415>, 374, 374, 374,
+  <400,416,415>, 374, 374, 374,
+  <400,385,416>, 374, 374, 374,
+  <385,401,416>, 374, 374, 374,
+  <401,402,417>, 374, 374, 374,
+  <402,418,417>, 374, 374, 374,
+  <402,403,418>, 374, 374, 374,
+  <403,419,418>, 374, 374, 374,
+  <403,404,419>, 374, 374, 374,
+  <404,420,419>, 374, 374, 374,
+  <404,405,420>, 374, 374, 374,
+  <405,421,420>, 374, 374, 374,
+  <405,406,421>, 374, 374, 374,
+  <406,422,421>, 374, 374, 374,
+  <406,407,422>, 374, 374, 374,
+  <407,423,422>, 374, 374, 374,
+  <407,408,423>, 374, 374, 374,
+  <408,424,423>, 374, 374, 374,
+  <408,409,424>, 374, 374, 374,
+  <409,425,424>, 374, 374, 374,
+  <409,410,425>, 374, 374, 374,
+  <410,426,425>, 374, 374, 374,
+  <410,411,426>, 374, 374, 374,
+  <411,427,426>, 374, 374, 374,
+  <411,412,427>, 374, 374, 374,
+  <412,428,427>, 374, 374, 374,
+  <412,413,428>, 374, 374, 374,
+  <413,429,428>, 374, 374, 374,
+  <413,414,429>, 374, 374, 374,
+  <414,430,429>, 374, 374, 374,
+  <414,415,430>, 374, 374, 374,
+  <415,431,430>, 374, 374, 374,
+  <415,416,431>, 374, 374, 374,
+  <416,432,431>, 374, 374, 374,
+  <416,401,432>, 374, 374, 374,
+  <401,417,432>, 374, 374, 374,
+  <417,418,433>, 374, 374, 374,
+  <418,434,433>, 374, 374, 374,
+  <418,419,434>, 374, 374, 374,
+  <419,435,434>, 374, 374, 374,
+  <419,420,435>, 374, 374, 374,
+  <420,436,435>, 374, 374, 374,
+  <420,421,436>, 374, 374, 374,
+  <421,437,436>, 374, 374, 374,
+  <421,422,437>, 374, 374, 374,
+  <422,438,437>, 374, 374, 374,
+  <422,423,438>, 374, 374, 374,
+  <423,439,438>, 374, 374, 374,
+  <423,424,439>, 374, 374, 374,
+  <424,440,439>, 374, 374, 374,
+  <424,425,440>, 374, 374, 374,
+  <425,441,440>, 374, 374, 374,
+  <425,426,441>, 374, 374, 374,
+  <426,442,441>, 374, 374, 374,
+  <426,427,442>, 374, 374, 374,
+  <427,443,442>, 374, 374, 374,
+  <427,428,443>, 374, 374, 374,
+  <428,444,443>, 374, 374, 374,
+  <428,429,444>, 374, 374, 374,
+  <429,445,444>, 374, 374, 374,
+  <429,430,445>, 374, 374, 374,
+  <430,446,445>, 374, 374, 374,
+  <430,431,446>, 374, 374, 374,
+  <431,447,446>, 374, 374, 374,
+  <431,432,447>, 374, 374, 374,
+  <432,448,447>, 374, 374, 374,
+  <432,417,448>, 374, 374, 374,
+  <417,433,448>, 374, 374, 374,
+  <433,434,449>, 374, 374, 374,
+  <434,450,449>, 374, 374, 374,
+  <434,435,450>, 374, 374, 374,
+  <435,451,450>, 374, 374, 374,
+  <435,436,451>, 374, 374, 374,
+  <436,452,451>, 374, 374, 374,
+  <436,437,452>, 374, 374, 374,
+  <437,453,452>, 374, 374, 374,
+  <437,438,453>, 374, 374, 374,
+  <438,454,453>, 374, 374, 374,
+  <438,439,454>, 374, 374, 374,
+  <439,455,454>, 374, 374, 374,
+  <439,440,455>, 374, 374, 374,
+  <440,456,455>, 374, 374, 374,
+  <440,441,456>, 374, 374, 374,
+  <441,457,456>, 374, 374, 374,
+  <441,442,457>, 374, 374, 374,
+  <442,458,457>, 374, 374, 374,
+  <442,443,458>, 374, 374, 374,
+  <443,459,458>, 374, 374, 374,
+  <443,444,459>, 374, 374, 374,
+  <444,460,459>, 374, 374, 374,
+  <444,445,460>, 374, 374, 374,
+  <445,461,460>, 374, 374, 374,
+  <445,446,461>, 374, 374, 374,
+  <446,462,461>, 374, 374, 374,
+  <446,447,462>, 374, 374, 374,
+  <447,463,462>, 374, 374, 374,
+  <447,448,463>, 374, 374, 374,
+  <448,464,463>, 374, 374, 374,
+  <448,433,464>, 374, 374, 374,
+  <433,449,464>, 374, 374, 374,
+  <449,450,465>, 374, 374, 374,
+  <450,466,465>, 374, 374, 374,
+  <450,451,466>, 374, 374, 374,
+  <451,467,466>, 374, 374, 374,
+  <451,452,467>, 374, 374, 374,
+  <452,468,467>, 374, 374, 374,
+  <452,453,468>, 374, 374, 374,
+  <453,469,468>, 374, 374, 374,
+  <453,454,469>, 374, 374, 374,
+  <454,470,469>, 374, 374, 374,
+  <454,455,470>, 374, 374, 374,
+  <455,471,470>, 374, 374, 374,
+  <455,456,471>, 374, 374, 374,
+  <456,472,471>, 374, 374, 374,
+  <456,457,472>, 374, 374, 374,
+  <457,473,472>, 374, 374, 374,
+  <457,458,473>, 374, 374, 374,
+  <458,474,473>, 374, 374, 374,
+  <458,459,474>, 374, 374, 374,
+  <459,475,474>, 374, 374, 374,
+  <459,460,475>, 374, 374, 374,
+  <460,476,475>, 374, 374, 374,
+  <460,461,476>, 374, 374, 374,
+  <461,477,476>, 374, 374, 374,
+  <461,462,477>, 374, 374, 374,
+  <462,478,477>, 374, 374, 374,
+  <462,463,478>, 374, 374, 374,
+  <463,479,478>, 374, 374, 374,
+  <463,464,479>, 374, 374, 374,
+  <464,480,479>, 374, 374, 374,
+  <464,449,480>, 374, 374, 374,
+  <449,465,480>, 374, 374, 374,
+  <465,466,496>, 374, 374, 374,
+  <466,481,496>, 374, 374, 374,
+  <466,467,481>, 374, 374, 374,
+  <467,482,481>, 374, 374, 374,
+  <467,468,482>, 374, 374, 374,
+  <468,483,482>, 374, 374, 374,
+  <468,469,483>, 374, 374, 374,
+  <469,484,483>, 374, 374, 374,
+  <469,470,484>, 374, 374, 374,
+  <470,485,484>, 374, 374, 374,
+  <470,471,485>, 374, 374, 374,
+  <471,486,485>, 374, 374, 374,
+  <471,472,486>, 374, 374, 374,
+  <472,487,486>, 374, 374, 374,
+  <472,473,487>, 374, 374, 374,
+  <473,488,487>, 374, 374, 374,
+  <473,474,488>, 374, 374, 374,
+  <474,489,488>, 374, 374, 374,
+  <474,475,489>, 374, 374, 374,
+  <475,490,489>, 374, 374, 374,
+  <475,476,490>, 374, 374, 374,
+  <476,491,490>, 374, 374, 374,
+  <476,477,491>, 374, 374, 374,
+  <477,492,491>, 374, 374, 374,
+  <477,478,492>, 374, 374, 374,
+  <478,493,492>, 374, 374, 374,
+  <478,479,493>, 374, 374, 374,
+  <479,494,493>, 374, 374, 374,
+  <479,480,494>, 374, 374, 374,
+  <480,495,494>, 374, 374, 374,
+  <480,465,495>, 374, 374, 374,
+  <465,496,495>, 374, 374, 374,
+  <481,482,497>, 374, 374, 374,
+  <482,498,497>, 374, 374, 374,
+  <482,483,498>, 374, 374, 374,
+  <483,499,498>, 374, 374, 374,
+  <483,484,499>, 374, 374, 374,
+  <484,500,499>, 374, 374, 374,
+  <484,485,500>, 374, 374, 374,
+  <485,501,500>, 374, 374, 374,
+  <485,486,501>, 374, 374, 374,
+  <486,502,501>, 374, 374, 374,
+  <486,487,502>, 374, 374, 374,
+  <487,503,502>, 374, 374, 374,
+  <487,488,503>, 374, 374, 374,
+  <488,504,503>, 374, 374, 374,
+  <488,489,504>, 374, 374, 374,
+  <489,505,504>, 374, 374, 374,
+  <489,490,505>, 374, 374, 374,
+  <490,506,505>, 374, 374, 374,
+  <490,491,506>, 374, 374, 374,
+  <491,507,506>, 374, 374, 374,
+  <491,492,507>, 374, 374, 374,
+  <492,508,507>, 374, 374, 374,
+  <492,493,508>, 374, 374, 374,
+  <493,509,508>, 374, 374, 374,
+  <493,494,509>, 374, 374, 374,
+  <494,510,509>, 374, 374, 374,
+  <494,495,510>, 374, 374, 374,
+  <495,511,510>, 374, 374, 374,
+  <495,496,511>, 374, 374, 374,
+  <496,512,511>, 374, 374, 374,
+  <496,481,512>, 374, 374, 374,
+  <481,497,512>, 374, 374, 374,
+  <497,498,513>, 374, 374, 374,
+  <498,514,513>, 374, 374, 374,
+  <498,499,514>, 374, 374, 374,
+  <499,515,514>, 374, 374, 374,
+  <499,500,515>, 374, 374, 374,
+  <500,516,515>, 374, 374, 374,
+  <500,501,516>, 374, 374, 374,
+  <501,517,516>, 374, 374, 374,
+  <501,502,517>, 374, 374, 374,
+  <502,518,517>, 374, 374, 374,
+  <502,503,518>, 374, 374, 374,
+  <503,519,518>, 374, 374, 374,
+  <503,504,519>, 374, 374, 374,
+  <504,520,519>, 374, 374, 374,
+  <504,505,520>, 374, 374, 374,
+  <505,521,520>, 374, 374, 374,
+  <505,506,521>, 374, 374, 374,
+  <506,522,521>, 374, 374, 374,
+  <506,507,522>, 374, 374, 374,
+  <507,523,522>, 374, 374, 374,
+  <507,508,523>, 374, 374, 374,
+  <508,524,523>, 374, 374, 374,
+  <508,509,524>, 374, 374, 374,
+  <509,525,524>, 374, 374, 374,
+  <509,510,525>, 374, 374, 374,
+  <510,526,525>, 374, 374, 374,
+  <510,511,526>, 374, 374, 374,
+  <511,527,526>, 374, 374, 374,
+  <511,512,527>, 374, 374, 374,
+  <512,528,527>, 374, 374, 374,
+  <512,497,528>, 374, 374, 374,
+  <497,513,528>, 374, 374, 374,
+  <513,514,529>, 374, 374, 374,
+  <514,530,529>, 374, 374, 374,
+  <514,515,530>, 374, 374, 374,
+  <515,531,530>, 374, 374, 374,
+  <515,516,531>, 374, 374, 374,
+  <516,532,531>, 374, 374, 374,
+  <516,517,532>, 374, 374, 374,
+  <517,533,532>, 374, 374, 374,
+  <517,518,533>, 374, 374, 374,
+  <518,534,533>, 374, 374, 374,
+  <518,519,534>, 374, 374, 374,
+  <519,535,534>, 374, 374, 374,
+  <519,520,535>, 374, 374, 374,
+  <520,536,535>, 374, 374, 374,
+  <520,521,536>, 374, 374, 374,
+  <521,537,536>, 374, 374, 374,
+  <521,522,537>, 374, 374, 374,
+  <522,538,537>, 374, 374, 374,
+  <522,523,538>, 374, 374, 374,
+  <523,539,538>, 374, 374, 374,
+  <523,524,539>, 374, 374, 374,
+  <524,540,539>, 374, 374, 374,
+  <524,525,540>, 374, 374, 374,
+  <525,541,540>, 374, 374, 374,
+  <525,526,541>, 374, 374, 374,
+  <526,542,541>, 374, 374, 374,
+  <526,527,542>, 374, 374, 374,
+  <527,543,542>, 374, 374, 374,
+  <527,528,543>, 374, 374, 374,
+  <528,544,543>, 374, 374, 374,
+  <528,513,544>, 374, 374, 374,
+  <513,529,544>, 374, 374, 374,
+  <529,530,545>, 374, 374, 374,
+  <530,546,545>, 374, 374, 374,
+  <530,531,546>, 374, 374, 374,
+  <531,547,546>, 374, 374, 374,
+  <531,532,547>, 374, 374, 374,
+  <532,548,547>, 374, 374, 374,
+  <532,533,548>, 374, 374, 374,
+  <533,549,548>, 374, 374, 374,
+  <533,534,549>, 374, 374, 374,
+  <534,550,549>, 374, 374, 374,
+  <534,535,550>, 374, 374, 374,
+  <535,551,550>, 374, 374, 374,
+  <535,536,551>, 374, 374, 374,
+  <536,552,551>, 374, 374, 374,
+  <536,537,552>, 374, 374, 374,
+  <537,553,552>, 374, 374, 374,
+  <537,538,553>, 374, 374, 374,
+  <538,554,553>, 374, 374, 374,
+  <538,539,554>, 374, 374, 374,
+  <539,555,554>, 374, 374, 374,
+  <539,540,555>, 374, 374, 374,
+  <540,556,555>, 374, 374, 374,
+  <540,541,556>, 374, 374, 374,
+  <541,557,556>, 374, 374, 374,
+  <541,542,557>, 374, 374, 374,
+  <542,558,557>, 374, 374, 374,
+  <542,543,558>, 374, 374, 374,
+  <543,559,558>, 374, 374, 374,
+  <543,544,559>, 374, 374, 374,
+  <544,560,559>, 374, 374, 374,
+  <544,529,560>, 374, 374, 374,
+  <529,545,560>, 374, 374, 374,
+  <545,546,561>, 374, 374, 374,
+  <546,562,561>, 374, 374, 374,
+  <546,547,562>, 374, 374, 374,
+  <547,563,562>, 374, 374, 374,
+  <547,548,563>, 374, 374, 374,
+  <548,564,563>, 374, 374, 374,
+  <548,549,564>, 374, 374, 374,
+  <549,565,564>, 374, 374, 374,
+  <549,550,565>, 374, 374, 374,
+  <550,566,565>, 374, 374, 374,
+  <550,551,566>, 374, 374, 374,
+  <551,567,566>, 374, 374, 374,
+  <551,552,567>, 374, 374, 374,
+  <552,568,567>, 374, 374, 374,
+  <552,553,568>, 374, 374, 374,
+  <553,569,568>, 374, 374, 374,
+  <553,554,569>, 374, 374, 374,
+  <554,570,569>, 374, 374, 374,
+  <554,555,570>, 374, 374, 374,
+  <555,571,570>, 374, 374, 374,
+  <555,556,571>, 374, 374, 374,
+  <556,572,571>, 374, 374, 374,
+  <556,557,572>, 374, 374, 374,
+  <557,573,572>, 374, 374, 374,
+  <557,558,573>, 374, 374, 374,
+  <558,574,573>, 374, 374, 374,
+  <558,559,574>, 374, 374, 374,
+  <559,575,574>, 374, 374, 374,
+  <559,560,575>, 374, 374, 374,
+  <560,576,575>, 374, 374, 374,
+  <560,545,576>, 374, 374, 374,
+  <545,561,576>, 374, 374, 374,
+  <561,562,577>, 374, 374, 374,
+  <562,578,577>, 374, 374, 374,
+  <562,563,578>, 374, 374, 374,
+  <563,579,578>, 374, 374, 374,
+  <563,564,579>, 374, 374, 374,
+  <564,580,579>, 374, 374, 374,
+  <564,565,580>, 374, 374, 374,
+  <565,581,580>, 374, 374, 374,
+  <565,566,581>, 374, 374, 374,
+  <566,582,581>, 374, 374, 374,
+  <566,567,582>, 374, 374, 374,
+  <567,583,582>, 374, 374, 374,
+  <567,568,583>, 374, 374, 374,
+  <568,584,583>, 374, 374, 374,
+  <568,569,584>, 374, 374, 374,
+  <569,585,584>, 374, 374, 374,
+  <569,570,585>, 374, 374, 374,
+  <570,586,585>, 374, 374, 374,
+  <570,571,586>, 374, 374, 374,
+  <571,587,586>, 374, 374, 374,
+  <571,572,587>, 374, 374, 374,
+  <572,588,587>, 374, 374, 374,
+  <572,573,588>, 374, 374, 374,
+  <573,589,588>, 374, 374, 374,
+  <573,574,589>, 374, 374, 374,
+  <574,590,589>, 374, 374, 374,
+  <574,575,590>, 374, 374, 374,
+  <575,591,590>, 374, 374, 374,
+  <575,576,591>, 374, 374, 374,
+  <576,592,591>, 374, 374, 374,
+  <576,561,592>, 374, 374, 374,
+  <561,577,592>, 374, 374, 374,
+  <577,578,593>, 374, 374, 374,
+  <578,594,593>, 374, 374, 374,
+  <578,579,594>, 374, 374, 374,
+  <579,595,594>, 374, 374, 374,
+  <579,580,595>, 374, 374, 374,
+  <580,596,595>, 374, 374, 374,
+  <580,581,596>, 374, 374, 374,
+  <581,597,596>, 374, 374, 374,
+  <581,582,597>, 374, 374, 374,
+  <582,598,597>, 374, 374, 374,
+  <582,583,598>, 374, 374, 374,
+  <583,599,598>, 374, 374, 374,
+  <583,584,599>, 374, 374, 374,
+  <584,600,599>, 374, 374, 374,
+  <584,585,600>, 374, 374, 374,
+  <585,601,600>, 374, 374, 374,
+  <585,586,601>, 374, 374, 374,
+  <586,602,601>, 374, 374, 374,
+  <586,587,602>, 374, 374, 374,
+  <587,603,602>, 374, 374, 374,
+  <587,588,603>, 374, 374, 374,
+  <588,604,603>, 374, 374, 374,
+  <588,589,604>, 374, 374, 374,
+  <589,605,604>, 374, 374, 374,
+  <589,590,605>, 374, 374, 374,
+  <590,606,605>, 374, 374, 374,
+  <590,591,606>, 374, 374, 374,
+  <591,607,606>, 374, 374, 374,
+  <591,592,607>, 374, 374, 374,
+  <592,608,607>, 374, 374, 374,
+  <592,577,608>, 374, 374, 374,
+  <577,593,608>, 374, 374, 374,
+  <593,594,609>, 374, 374, 374,
+  <594,610,609>, 374, 374, 374,
+  <594,595,610>, 374, 374, 374,
+  <595,611,610>, 374, 374, 374,
+  <595,596,611>, 374, 374, 374,
+  <596,612,611>, 374, 374, 374,
+  <596,597,612>, 374, 374, 374,
+  <597,613,612>, 374, 374, 374,
+  <597,598,613>, 374, 374, 374,
+  <598,614,613>, 374, 374, 374,
+  <598,599,614>, 374, 374, 374,
+  <599,615,614>, 374, 374, 374,
+  <599,600,615>, 374, 374, 374,
+  <600,616,615>, 374, 374, 374,
+  <600,601,616>, 374, 374, 374,
+  <601,617,616>, 374, 374, 374,
+  <601,602,617>, 374, 374, 374,
+  <602,618,617>, 374, 374, 374,
+  <602,603,618>, 374, 374, 374,
+  <603,619,618>, 374, 374, 374,
+  <603,604,619>, 374, 374, 374,
+  <604,620,619>, 374, 374, 374,
+  <604,605,620>, 374, 374, 374,
+  <605,621,620>, 374, 374, 374,
+  <605,606,621>, 374, 374, 374,
+  <606,622,621>, 374, 374, 374,
+  <606,607,622>, 374, 374, 374,
+  <607,623,622>, 374, 374, 374,
+  <607,608,623>, 374, 374, 374,
+  <608,624,623>, 374, 374, 374,
+  <608,593,624>, 374, 374, 374,
+  <593,609,624>, 374, 374, 374,
+  <609,610,625>, 374, 374, 374,
+  <610,626,625>, 374, 374, 374,
+  <610,611,626>, 374, 374, 374,
+  <611,627,626>, 374, 374, 374,
+  <611,612,627>, 374, 374, 374,
+  <612,628,627>, 374, 374, 374,
+  <612,613,628>, 374, 374, 374,
+  <613,629,628>, 374, 374, 374,
+  <613,614,629>, 374, 374, 374,
+  <614,630,629>, 374, 374, 374,
+  <614,615,630>, 374, 374, 374,
+  <615,631,630>, 374, 374, 374,
+  <615,616,631>, 374, 374, 374,
+  <616,632,631>, 374, 374, 374,
+  <616,617,632>, 374, 374, 374,
+  <617,633,632>, 374, 374, 374,
+  <617,618,633>, 374, 374, 374,
+  <618,634,633>, 374, 374, 374,
+  <618,619,634>, 374, 374, 374,
+  <619,635,634>, 374, 374, 374,
+  <619,620,635>, 374, 374, 374,
+  <620,636,635>, 374, 374, 374,
+  <620,621,636>, 374, 374, 374,
+  <621,637,636>, 374, 374, 374,
+  <621,622,637>, 374, 374, 374,
+  <622,638,637>, 374, 374, 374,
+  <622,623,638>, 374, 374, 374,
+  <623,639,638>, 374, 374, 374,
+  <623,624,639>, 374, 374, 374,
+  <624,640,639>, 374, 374, 374,
+  <624,609,640>, 374, 374, 374,
+  <609,625,640>, 374, 374, 374,
+  <625,626,641>, 374, 374, 374,
+  <626,642,641>, 374, 374, 374,
+  <626,627,642>, 374, 374, 374,
+  <627,643,642>, 374, 374, 374,
+  <627,628,643>, 374, 374, 374,
+  <628,644,643>, 374, 374, 374,
+  <628,629,644>, 374, 374, 374,
+  <629,645,644>, 374, 374, 374,
+  <629,630,645>, 374, 374, 374,
+  <630,646,645>, 374, 374, 374,
+  <630,631,646>, 374, 374, 374,
+  <631,647,646>, 374, 374, 374,
+  <631,632,647>, 374, 374, 374,
+  <632,648,647>, 374, 374, 374,
+  <632,633,648>, 374, 374, 374,
+  <633,649,648>, 374, 374, 374,
+  <633,634,649>, 374, 374, 374,
+  <634,650,649>, 374, 374, 374,
+  <634,635,650>, 374, 374, 374,
+  <635,651,650>, 374, 374, 374,
+  <635,636,651>, 374, 374, 374,
+  <636,652,651>, 374, 374, 374,
+  <636,637,652>, 374, 374, 374,
+  <637,653,652>, 374, 374, 374,
+  <637,638,653>, 374, 374, 374,
+  <638,654,653>, 374, 374, 374,
+  <638,639,654>, 374, 374, 374,
+  <639,655,654>, 374, 374, 374,
+  <639,640,655>, 374, 374, 374,
+  <640,656,655>, 374, 374, 374,
+  <640,625,656>, 374, 374, 374,
+  <625,641,656>, 374, 374, 374,
+  <641,642,657>, 374, 374, 374,
+  <642,658,657>, 374, 374, 374,
+  <642,643,658>, 374, 374, 374,
+  <643,659,658>, 374, 374, 374,
+  <643,644,659>, 374, 374, 374,
+  <644,660,659>, 374, 374, 374,
+  <644,645,660>, 374, 374, 374,
+  <645,661,660>, 374, 374, 374,
+  <645,646,661>, 374, 374, 374,
+  <646,662,661>, 374, 374, 374,
+  <646,647,662>, 374, 374, 374,
+  <647,663,662>, 374, 374, 374,
+  <647,648,663>, 374, 374, 374,
+  <648,664,663>, 374, 374, 374,
+  <648,649,664>, 374, 374, 374,
+  <649,665,664>, 374, 374, 374,
+  <649,650,665>, 374, 374, 374,
+  <650,666,665>, 374, 374, 374,
+  <650,651,666>, 374, 374, 374,
+  <651,667,666>, 374, 374, 374,
+  <651,652,667>, 374, 374, 374,
+  <652,668,667>, 374, 374, 374,
+  <652,653,668>, 374, 374, 374,
+  <653,669,668>, 374, 374, 374,
+  <653,654,669>, 374, 374, 374,
+  <654,670,669>, 374, 374, 374,
+  <654,655,670>, 374, 374, 374,
+  <655,671,670>, 374, 374, 374,
+  <655,656,671>, 374, 374, 374,
+  <656,672,671>, 374, 374, 374,
+  <656,641,672>, 374, 374, 374,
+  <641,657,672>, 374, 374, 374,
+  <657,658,673>, 374, 374, 374,
+  <658,674,673>, 374, 374, 374,
+  <658,659,674>, 374, 374, 374,
+  <659,675,674>, 374, 374, 374,
+  <659,660,675>, 374, 374, 374,
+  <660,676,675>, 374, 374, 374,
+  <660,661,676>, 374, 374, 374,
+  <661,677,676>, 374, 374, 374,
+  <661,662,677>, 374, 374, 374,
+  <662,678,677>, 374, 374, 374,
+  <662,663,678>, 374, 374, 374,
+  <663,679,678>, 374, 374, 374,
+  <663,664,679>, 374, 374, 374,
+  <664,680,679>, 374, 374, 374,
+  <664,665,680>, 374, 374, 374,
+  <665,681,680>, 374, 374, 374,
+  <665,666,681>, 374, 374, 374,
+  <666,682,681>, 374, 374, 374,
+  <666,667,682>, 374, 374, 374,
+  <667,683,682>, 374, 374, 374,
+  <667,668,683>, 374, 374, 374,
+  <668,684,683>, 374, 374, 374,
+  <668,669,684>, 374, 374, 374,
+  <669,685,684>, 374, 374, 374,
+  <669,670,685>, 374, 374, 374,
+  <670,686,685>, 374, 374, 374,
+  <670,671,686>, 374, 374, 374,
+  <671,687,686>, 374, 374, 374,
+  <671,672,687>, 374, 374, 374,
+  <672,688,687>, 374, 374, 374,
+  <672,657,688>, 374, 374, 374,
+  <657,673,688>, 374, 374, 374,
+  <673,674,689>, 374, 374, 374,
+  <674,690,689>, 374, 374, 374,
+  <674,675,690>, 374, 374, 374,
+  <675,691,690>, 374, 374, 374,
+  <675,676,691>, 374, 374, 374,
+  <676,692,691>, 374, 374, 374,
+  <676,677,692>, 374, 374, 374,
+  <677,693,692>, 374, 374, 374,
+  <677,678,693>, 374, 374, 374,
+  <678,694,693>, 374, 374, 374,
+  <678,679,694>, 374, 374, 374,
+  <679,695,694>, 374, 374, 374,
+  <679,680,695>, 374, 374, 374,
+  <680,696,695>, 374, 374, 374,
+  <680,681,696>, 374, 374, 374,
+  <681,697,696>, 374, 374, 374,
+  <681,682,697>, 374, 374, 374,
+  <682,698,697>, 374, 374, 374,
+  <682,683,698>, 374, 374, 374,
+  <683,699,698>, 374, 374, 374,
+  <683,684,699>, 374, 374, 374,
+  <684,700,699>, 374, 374, 374,
+  <684,685,700>, 374, 374, 374,
+  <685,701,700>, 374, 374, 374,
+  <685,686,701>, 374, 374, 374,
+  <686,702,701>, 374, 374, 374,
+  <686,687,702>, 374, 374, 374,
+  <687,703,702>, 374, 374, 374,
+  <687,688,703>, 374, 374, 374,
+  <688,704,703>, 374, 374, 374,
+  <688,673,704>, 374, 374, 374,
+  <673,689,704>, 374, 374, 374,
+  <689,690,705>, 374, 374, 374,
+  <690,706,705>, 374, 374, 374,
+  <690,691,706>, 374, 374, 374,
+  <691,707,706>, 374, 374, 374,
+  <691,692,707>, 374, 374, 374,
+  <692,708,707>, 374, 374, 374,
+  <692,693,708>, 374, 374, 374,
+  <693,709,708>, 374, 374, 374,
+  <693,694,709>, 374, 374, 374,
+  <694,710,709>, 374, 374, 374,
+  <694,695,710>, 374, 374, 374,
+  <695,711,710>, 374, 374, 374,
+  <695,696,711>, 374, 374, 374,
+  <696,712,711>, 374, 374, 374,
+  <696,697,712>, 374, 374, 374,
+  <697,713,712>, 374, 374, 374,
+  <697,698,713>, 374, 374, 374,
+  <698,714,713>, 374, 374, 374,
+  <698,699,714>, 374, 374, 374,
+  <699,715,714>, 374, 374, 374,
+  <699,700,715>, 374, 374, 374,
+  <700,716,715>, 374, 374, 374,
+  <700,701,716>, 374, 374, 374,
+  <701,717,716>, 374, 374, 374,
+  <701,702,717>, 374, 374, 374,
+  <702,718,717>, 374, 374, 374,
+  <702,703,718>, 374, 374, 374,
+  <703,719,718>, 374, 374, 374,
+  <703,704,719>, 374, 374, 374,
+  <704,720,719>, 374, 374, 374,
+  <704,689,720>, 374, 374, 374,
+  <689,705,720>, 374, 374, 374,
+  <705,706,721>, 374, 374, 374,
+  <706,722,721>, 374, 374, 374,
+  <706,707,722>, 374, 374, 374,
+  <707,723,722>, 374, 374, 374,
+  <707,708,723>, 374, 374, 374,
+  <708,724,723>, 374, 374, 374,
+  <708,709,724>, 374, 374, 374,
+  <709,725,724>, 374, 374, 374,
+  <709,710,725>, 374, 374, 374,
+  <710,726,725>, 374, 374, 374,
+  <710,711,726>, 374, 374, 374,
+  <711,727,726>, 374, 374, 374,
+  <711,712,727>, 374, 374, 374,
+  <712,728,727>, 374, 374, 374,
+  <712,713,728>, 374, 374, 374,
+  <713,729,728>, 374, 374, 374,
+  <713,714,729>, 374, 374, 374,
+  <714,730,729>, 374, 374, 374,
+  <714,715,730>, 374, 374, 374,
+  <715,731,730>, 374, 374, 374,
+  <715,716,731>, 374, 374, 374,
+  <716,732,731>, 374, 374, 374,
+  <716,717,732>, 374, 374, 374,
+  <717,733,732>, 374, 374, 374,
+  <717,718,733>, 374, 374, 374,
+  <718,734,733>, 374, 374, 374,
+  <718,719,734>, 374, 374, 374,
+  <719,735,734>, 374, 374, 374,
+  <719,720,735>, 374, 374, 374,
+  <720,736,735>, 374, 374, 374,
+  <720,705,736>, 374, 374, 374,
+  <705,721,736>, 374, 374, 374,
+  <721,722,737>, 374, 374, 374,
+  <722,738,737>, 374, 374, 374,
+  <722,723,738>, 374, 374, 374,
+  <723,739,738>, 374, 374, 374,
+  <723,724,739>, 374, 374, 374,
+  <724,740,739>, 374, 374, 374,
+  <724,725,740>, 374, 374, 374,
+  <725,741,740>, 374, 374, 374,
+  <725,726,741>, 374, 374, 374,
+  <726,742,741>, 374, 374, 374,
+  <726,727,742>, 374, 374, 374,
+  <727,743,742>, 374, 374, 374,
+  <727,728,743>, 374, 374, 374,
+  <728,744,743>, 374, 374, 374,
+  <728,729,744>, 374, 374, 374,
+  <729,745,744>, 374, 374, 374,
+  <729,730,745>, 374, 374, 374,
+  <730,746,745>, 374, 374, 374,
+  <730,731,746>, 374, 374, 374,
+  <731,747,746>, 374, 374, 374,
+  <731,732,747>, 374, 374, 374,
+  <732,748,747>, 374, 374, 374,
+  <732,733,748>, 374, 374, 374,
+  <733,749,748>, 374, 374, 374,
+  <733,734,749>, 374, 374, 374,
+  <734,750,749>, 374, 374, 374,
+  <734,735,750>, 374, 374, 374,
+  <735,751,750>, 374, 374, 374,
+  <735,736,751>, 374, 374, 374,
+  <736,752,751>, 374, 374, 374,
+  <736,721,752>, 374, 374, 374,
+  <721,737,752>, 374, 374, 374,
+  <737,738,753>, 374, 374, 374,
+  <738,754,753>, 374, 374, 374,
+  <738,739,754>, 374, 374, 374,
+  <739,755,754>, 374, 374, 374,
+  <739,740,755>, 374, 374, 374,
+  <740,756,755>, 374, 374, 374,
+  <740,741,756>, 374, 374, 374,
+  <741,757,756>, 374, 374, 374,
+  <741,742,757>, 374, 374, 374,
+  <742,758,757>, 374, 374, 374,
+  <742,743,758>, 374, 374, 374,
+  <743,759,758>, 374, 374, 374,
+  <743,744,759>, 374, 374, 374,
+  <744,760,759>, 374, 374, 374,
+  <744,745,760>, 374, 374, 374,
+  <745,761,760>, 374, 374, 374,
+  <745,746,761>, 374, 374, 374,
+  <746,762,761>, 374, 374, 374,
+  <746,747,762>, 374, 374, 374,
+  <747,763,762>, 374, 374, 374,
+  <747,748,763>, 374, 374, 374,
+  <748,764,763>, 374, 374, 374,
+  <748,749,764>, 374, 374, 374,
+  <749,765,764>, 374, 374, 374,
+  <749,750,765>, 374, 374, 374,
+  <750,766,765>, 374, 374, 374,
+  <750,751,766>, 374, 374, 374,
+  <751,767,766>, 374, 374, 374,
+  <751,752,767>, 374, 374, 374,
+  <752,768,767>, 374, 374, 374,
+  <752,737,768>, 374, 374, 374,
+  <737,753,768>, 374, 374, 374,
+  <753,754,769>, 374, 374, 374,
+  <754,770,769>, 374, 374, 374,
+  <754,755,770>, 374, 374, 374,
+  <755,771,770>, 374, 374, 374,
+  <755,756,771>, 374, 374, 374,
+  <756,772,771>, 374, 374, 374,
+  <756,757,772>, 374, 374, 374,
+  <757,773,772>, 374, 374, 374,
+  <757,758,773>, 374, 374, 374,
+  <758,774,773>, 374, 374, 374,
+  <758,759,774>, 374, 374, 374,
+  <759,775,774>, 374, 374, 374,
+  <759,760,775>, 374, 374, 374,
+  <760,776,775>, 374, 374, 374,
+  <760,761,776>, 374, 374, 374,
+  <761,777,776>, 374, 374, 374,
+  <761,762,777>, 374, 374, 374,
+  <762,778,777>, 374, 374, 374,
+  <762,763,778>, 374, 374, 374,
+  <763,779,778>, 374, 374, 374,
+  <763,764,779>, 374, 374, 374,
+  <764,780,779>, 374, 374, 374,
+  <764,765,780>, 374, 374, 374,
+  <765,781,780>, 374, 374, 374,
+  <765,766,781>, 374, 374, 374,
+  <766,782,781>, 374, 374, 374,
+  <766,767,782>, 374, 374, 374,
+  <767,783,782>, 374, 374, 374,
+  <767,768,783>, 374, 374, 374,
+  <768,784,783>, 374, 374, 374,
+  <768,753,784>, 374, 374, 374,
+  <753,769,784>, 374, 374, 374,
+  <769,770,785>, 374, 374, 374,
+  <770,786,785>, 374, 374, 374,
+  <770,771,786>, 374, 374, 374,
+  <771,787,786>, 374, 374, 374,
+  <771,772,787>, 374, 374, 374,
+  <772,788,787>, 374, 374, 374,
+  <772,773,788>, 374, 374, 374,
+  <773,789,788>, 374, 374, 374,
+  <773,774,789>, 374, 374, 374,
+  <774,790,789>, 374, 374, 374,
+  <774,775,790>, 374, 374, 374,
+  <775,791,790>, 374, 374, 374,
+  <775,776,791>, 374, 374, 374,
+  <776,792,791>, 374, 374, 374,
+  <776,777,792>, 374, 374, 374,
+  <777,793,792>, 374, 374, 374,
+  <777,778,793>, 374, 374, 374,
+  <778,794,793>, 374, 374, 374,
+  <778,779,794>, 374, 374, 374,
+  <779,795,794>, 374, 374, 374,
+  <779,780,795>, 374, 374, 374,
+  <780,796,795>, 374, 374, 374,
+  <780,781,796>, 374, 374, 374,
+  <781,797,796>, 374, 374, 374,
+  <781,782,797>, 374, 374, 374,
+  <782,798,797>, 374, 374, 374,
+  <782,783,798>, 374, 374, 374,
+  <783,799,798>, 374, 374, 374,
+  <783,784,799>, 374, 374, 374,
+  <784,800,799>, 374, 374, 374,
+  <784,769,800>, 374, 374, 374,
+  <769,785,800>, 374, 374, 374,
+  <785,786,801>, 374, 374, 374,
+  <786,802,801>, 374, 374, 374,
+  <786,787,802>, 374, 374, 374,
+  <787,803,802>, 374, 374, 374,
+  <787,788,803>, 374, 374, 374,
+  <788,804,803>, 374, 374, 374,
+  <788,789,804>, 374, 374, 374,
+  <789,805,804>, 374, 374, 374,
+  <789,790,805>, 374, 374, 374,
+  <790,806,805>, 374, 374, 374,
+  <790,791,806>, 374, 374, 374,
+  <791,807,806>, 374, 374, 374,
+  <791,792,807>, 374, 374, 374,
+  <792,808,807>, 374, 374, 374,
+  <792,793,808>, 374, 374, 374,
+  <793,809,808>, 374, 374, 374,
+  <793,794,809>, 374, 374, 374,
+  <794,810,809>, 374, 374, 374,
+  <794,795,810>, 374, 374, 374,
+  <795,811,810>, 374, 374, 374,
+  <795,796,811>, 374, 374, 374,
+  <796,812,811>, 374, 374, 374,
+  <796,797,812>, 374, 374, 374,
+  <797,813,812>, 374, 374, 374,
+  <797,798,813>, 374, 374, 374,
+  <798,814,813>, 374, 374, 374,
+  <798,799,814>, 374, 374, 374,
+  <799,815,814>, 374, 374, 374,
+  <799,800,815>, 374, 374, 374,
+  <800,816,815>, 374, 374, 374,
+  <800,785,816>, 374, 374, 374,
+  <785,801,816>, 374, 374, 374,
+  <801,802,817>, 374, 374, 374,
+  <802,818,817>, 374, 374, 374,
+  <802,803,818>, 374, 374, 374,
+  <803,819,818>, 374, 374, 374,
+  <803,804,819>, 374, 374, 374,
+  <804,820,819>, 374, 374, 374,
+  <804,805,820>, 374, 374, 374,
+  <805,821,820>, 374, 374, 374,
+  <805,806,821>, 374, 374, 374,
+  <806,822,821>, 374, 374, 374,
+  <806,807,822>, 374, 374, 374,
+  <807,823,822>, 374, 374, 374,
+  <807,808,823>, 374, 374, 374,
+  <808,824,823>, 374, 374, 374,
+  <808,809,824>, 374, 374, 374,
+  <809,825,824>, 374, 374, 374,
+  <809,810,825>, 374, 374, 374,
+  <810,826,825>, 374, 374, 374,
+  <810,811,826>, 374, 374, 374,
+  <811,827,826>, 374, 374, 374,
+  <811,812,827>, 374, 374, 374,
+  <812,828,827>, 374, 374, 374,
+  <812,813,828>, 374, 374, 374,
+  <813,829,828>, 374, 374, 374,
+  <813,814,829>, 374, 374, 374,
+  <814,830,829>, 374, 374, 374,
+  <814,815,830>, 374, 374, 374,
+  <815,831,830>, 374, 374, 374,
+  <815,816,831>, 374, 374, 374,
+  <816,832,831>, 374, 374, 374,
+  <816,801,832>, 374, 374, 374,
+  <801,817,832>, 374, 374, 374,
+  <817,818,833>, 374, 374, 374,
+  <818,834,833>, 374, 374, 374,
+  <818,819,834>, 374, 374, 374,
+  <819,835,834>, 374, 374, 374,
+  <819,820,835>, 374, 374, 374,
+  <820,836,835>, 374, 374, 374,
+  <820,821,836>, 374, 374, 374,
+  <821,837,836>, 374, 374, 374,
+  <821,822,837>, 374, 374, 374,
+  <822,838,837>, 374, 374, 374,
+  <822,823,838>, 374, 374, 374,
+  <823,839,838>, 374, 374, 374,
+  <823,824,839>, 374, 374, 374,
+  <824,840,839>, 374, 374, 374,
+  <824,825,840>, 374, 374, 374,
+  <825,841,840>, 374, 374, 374,
+  <825,826,841>, 374, 374, 374,
+  <826,842,841>, 374, 374, 374,
+  <826,827,842>, 374, 374, 374,
+  <827,843,842>, 374, 374, 374,
+  <827,828,843>, 374, 374, 374,
+  <828,844,843>, 374, 374, 374,
+  <828,829,844>, 374, 374, 374,
+  <829,845,844>, 374, 374, 374,
+  <829,830,845>, 374, 374, 374,
+  <830,846,845>, 374, 374, 374,
+  <830,831,846>, 374, 374, 374,
+  <831,847,846>, 374, 374, 374,
+  <831,832,847>, 374, 374, 374,
+  <832,848,847>, 374, 374, 374,
+  <832,817,848>, 374, 374, 374,
+  <817,833,848>, 374, 374, 374,
+  <833,834,849>, 374, 374, 374,
+  <834,850,849>, 374, 374, 374,
+  <834,835,850>, 374, 374, 374,
+  <835,851,850>, 374, 374, 374,
+  <835,836,851>, 374, 374, 374,
+  <836,852,851>, 374, 374, 374,
+  <836,837,852>, 374, 374, 374,
+  <837,853,852>, 374, 374, 374,
+  <837,838,853>, 374, 374, 374,
+  <838,854,853>, 374, 374, 374,
+  <838,839,854>, 374, 374, 374,
+  <839,855,854>, 374, 374, 374,
+  <839,840,855>, 374, 374, 374,
+  <840,856,855>, 374, 374, 374,
+  <840,841,856>, 374, 374, 374,
+  <841,857,856>, 374, 374, 374,
+  <841,842,857>, 374, 374, 374,
+  <842,858,857>, 374, 374, 374,
+  <842,843,858>, 374, 374, 374,
+  <843,859,858>, 374, 374, 374,
+  <843,844,859>, 374, 374, 374,
+  <844,860,859>, 374, 374, 374,
+  <844,845,860>, 374, 374, 374,
+  <845,861,860>, 374, 374, 374,
+  <845,846,861>, 374, 374, 374,
+  <846,862,861>, 374, 374, 374,
+  <846,847,862>, 374, 374, 374,
+  <847,863,862>, 374, 374, 374,
+  <847,848,863>, 374, 374, 374,
+  <848,864,863>, 374, 374, 374,
+  <848,833,864>, 374, 374, 374,
+  <833,849,864>, 374, 374, 374,
+  <849,850,865>, 374, 374, 374,
+  <850,866,865>, 374, 374, 374,
+  <850,851,866>, 374, 374, 374,
+  <851,867,866>, 374, 374, 374,
+  <851,852,867>, 374, 374, 374,
+  <852,868,867>, 374, 374, 374,
+  <852,853,868>, 374, 374, 374,
+  <853,869,868>, 374, 374, 374,
+  <853,854,869>, 374, 374, 374,
+  <854,870,869>, 374, 374, 374,
+  <854,855,870>, 374, 374, 374,
+  <855,871,870>, 374, 374, 374,
+  <855,856,871>, 374, 374, 374,
+  <856,872,871>, 374, 374, 374,
+  <856,857,872>, 374, 374, 374,
+  <857,873,872>, 374, 374, 374,
+  <857,858,873>, 374, 374, 374,
+  <858,874,873>, 374, 374, 374,
+  <858,859,874>, 374, 374, 374,
+  <859,875,874>, 374, 374, 374,
+  <859,860,875>, 374, 374, 374,
+  <860,876,875>, 374, 374, 374,
+  <860,861,876>, 374, 374, 374,
+  <861,877,876>, 374, 374, 374,
+  <861,862,877>, 374, 374, 374,
+  <862,878,877>, 374, 374, 374,
+  <862,863,878>, 374, 374, 374,
+  <863,879,878>, 374, 374, 374,
+  <863,864,879>, 374, 374, 374,
+  <864,880,879>, 374, 374, 374,
+  <864,849,880>, 374, 374, 374,
+  <849,865,880>, 374, 374, 374,
+  <865,866,881>, 374, 374, 374,
+  <866,882,881>, 374, 374, 374,
+  <866,867,882>, 374, 374, 374,
+  <867,883,882>, 374, 374, 374,
+  <867,868,883>, 374, 374, 374,
+  <868,884,883>, 374, 374, 374,
+  <868,869,884>, 374, 374, 374,
+  <869,885,884>, 374, 374, 374,
+  <869,870,885>, 374, 374, 374,
+  <870,886,885>, 374, 374, 374,
+  <870,871,886>, 374, 374, 374,
+  <871,887,886>, 374, 374, 374,
+  <871,872,887>, 374, 374, 374,
+  <872,888,887>, 374, 374, 374,
+  <872,873,888>, 374, 374, 374,
+  <873,889,888>, 374, 374, 374,
+  <873,874,889>, 374, 374, 374,
+  <874,890,889>, 374, 374, 374,
+  <874,875,890>, 374, 374, 374,
+  <875,891,890>, 374, 374, 374,
+  <875,876,891>, 374, 374, 374,
+  <876,892,891>, 374, 374, 374,
+  <876,877,892>, 374, 374, 374,
+  <877,893,892>, 374, 374, 374,
+  <877,878,893>, 374, 374, 374,
+  <878,894,893>, 374, 374, 374,
+  <878,879,894>, 374, 374, 374,
+  <879,895,894>, 374, 374, 374,
+  <879,880,895>, 374, 374, 374,
+  <880,896,895>, 374, 374, 374,
+  <880,865,896>, 374, 374, 374,
+  <865,881,896>, 374, 374, 374,
+  <881,882,897>, 374, 374, 374,
+  <882,898,897>, 374, 374, 374,
+  <882,883,898>, 374, 374, 374,
+  <883,899,898>, 374, 374, 374,
+  <883,884,899>, 374, 374, 374,
+  <884,900,899>, 374, 374, 374,
+  <884,885,900>, 374, 374, 374,
+  <885,901,900>, 374, 374, 374,
+  <885,886,901>, 374, 374, 374,
+  <886,902,901>, 374, 374, 374,
+  <886,887,902>, 374, 374, 374,
+  <887,903,902>, 374, 374, 374,
+  <887,888,903>, 374, 374, 374,
+  <888,904,903>, 374, 374, 374,
+  <888,889,904>, 374, 374, 374,
+  <889,905,904>, 374, 374, 374,
+  <889,890,905>, 374, 374, 374,
+  <890,906,905>, 374, 374, 374,
+  <890,891,906>, 374, 374, 374,
+  <891,907,906>, 374, 374, 374,
+  <891,892,907>, 374, 374, 374,
+  <892,908,907>, 374, 374, 374,
+  <892,893,908>, 374, 374, 374,
+  <893,909,908>, 374, 374, 374,
+  <893,894,909>, 374, 374, 374,
+  <894,910,909>, 374, 374, 374,
+  <894,895,910>, 374, 374, 374,
+  <895,911,910>, 374, 374, 374,
+  <895,896,911>, 374, 374, 374,
+  <896,912,911>, 374, 374, 374,
+  <896,881,912>, 374, 374, 374,
+  <881,897,912>, 374, 374, 374,
+  <897,898,913>, 374, 374, 374,
+  <898,914,913>, 374, 374, 374,
+  <898,899,914>, 374, 374, 374,
+  <899,915,914>, 374, 374, 374,
+  <899,900,915>, 374, 374, 374,
+  <900,916,915>, 374, 374, 374,
+  <900,901,916>, 374, 374, 374,
+  <901,917,916>, 374, 374, 374,
+  <901,902,917>, 374, 374, 374,
+  <902,918,917>, 374, 374, 374,
+  <902,903,918>, 374, 374, 374,
+  <903,919,918>, 374, 374, 374,
+  <903,904,919>, 374, 374, 374,
+  <904,920,919>, 374, 374, 374,
+  <904,905,920>, 374, 374, 374,
+  <905,921,920>, 374, 374, 374,
+  <905,906,921>, 374, 374, 374,
+  <906,922,921>, 374, 374, 374,
+  <906,907,922>, 374, 374, 374,
+  <907,923,922>, 374, 374, 374,
+  <907,908,923>, 374, 374, 374,
+  <908,924,923>, 374, 374, 374,
+  <908,909,924>, 374, 374, 374,
+  <909,925,924>, 374, 374, 374,
+  <909,910,925>, 374, 374, 374,
+  <910,926,925>, 374, 374, 374,
+  <910,911,926>, 374, 374, 374,
+  <911,927,926>, 374, 374, 374,
+  <911,912,927>, 374, 374, 374,
+  <912,928,927>, 374, 374, 374,
+  <912,897,928>, 374, 374, 374,
+  <897,913,928>, 374, 374, 374,
+  <913,914,929>, 374, 374, 374,
+  <914,930,929>, 374, 374, 374,
+  <914,915,930>, 374, 374, 374,
+  <915,931,930>, 374, 374, 374,
+  <915,916,931>, 374, 374, 374,
+  <916,932,931>, 374, 374, 374,
+  <916,917,932>, 374, 374, 374,
+  <917,933,932>, 374, 374, 374,
+  <917,918,933>, 374, 374, 374,
+  <918,934,933>, 374, 374, 374,
+  <918,919,934>, 374, 374, 374,
+  <919,935,934>, 374, 374, 374,
+  <919,920,935>, 374, 374, 374,
+  <920,936,935>, 374, 374, 374,
+  <920,921,936>, 374, 374, 374,
+  <921,937,936>, 374, 374, 374,
+  <921,922,937>, 374, 374, 374,
+  <922,938,937>, 374, 374, 374,
+  <922,923,938>, 374, 374, 374,
+  <923,939,938>, 374, 374, 374,
+  <923,924,939>, 374, 374, 374,
+  <924,940,939>, 374, 374, 374,
+  <924,925,940>, 374, 374, 374,
+  <925,941,940>, 374, 374, 374,
+  <925,926,941>, 374, 374, 374,
+  <926,942,941>, 374, 374, 374,
+  <926,927,942>, 374, 374, 374,
+  <927,943,942>, 374, 374, 374,
+  <927,928,943>, 374, 374, 374,
+  <928,944,943>, 374, 374, 374,
+  <928,913,944>, 374, 374, 374,
+  <913,929,944>, 374, 374, 374,
+  <929,930,945>, 374, 374, 374,
+  <930,946,945>, 374, 374, 374,
+  <930,931,946>, 374, 374, 374,
+  <931,947,946>, 374, 374, 374,
+  <931,932,947>, 374, 374, 374,
+  <932,948,947>, 374, 374, 374,
+  <932,933,948>, 374, 374, 374,
+  <933,949,948>, 374, 374, 374,
+  <933,934,949>, 374, 374, 374,
+  <934,950,949>, 374, 374, 374,
+  <934,935,950>, 374, 374, 374,
+  <935,951,950>, 374, 374, 374,
+  <935,936,951>, 374, 374, 374,
+  <936,952,951>, 374, 374, 374,
+  <936,937,952>, 374, 374, 374,
+  <937,953,952>, 374, 374, 374,
+  <937,938,953>, 374, 374, 374,
+  <938,954,953>, 374, 374, 374,
+  <938,939,954>, 374, 374, 374,
+  <939,955,954>, 374, 374, 374,
+  <939,940,955>, 374, 374, 374,
+  <940,956,955>, 374, 374, 374,
+  <940,941,956>, 374, 374, 374,
+  <941,957,956>, 374, 374, 374,
+  <941,942,957>, 374, 374, 374,
+  <942,958,957>, 374, 374, 374,
+  <942,943,958>, 374, 374, 374,
+  <943,959,958>, 374, 374, 374,
+  <943,944,959>, 374, 374, 374,
+  <944,960,959>, 374, 374, 374,
+  <944,929,960>, 374, 374, 374,
+  <929,945,960>, 374, 374, 374,
+  <945,946,961>, 374, 374, 374,
+  <946,962,961>, 374, 374, 374,
+  <946,947,962>, 374, 374, 374,
+  <947,963,962>, 374, 374, 374,
+  <947,948,963>, 374, 374, 374,
+  <948,964,963>, 374, 374, 374,
+  <948,949,964>, 374, 374, 374,
+  <949,965,964>, 374, 374, 374,
+  <949,950,965>, 374, 374, 374,
+  <950,966,965>, 374, 374, 374,
+  <950,951,966>, 374, 374, 374,
+  <951,967,966>, 374, 374, 374,
+  <951,952,967>, 374, 374, 374,
+  <952,968,967>, 374, 374, 374,
+  <952,953,968>, 374, 374, 374,
+  <953,969,968>, 374, 374, 374,
+  <953,954,969>, 374, 374, 374,
+  <954,970,969>, 374, 374, 374,
+  <954,955,970>, 374, 374, 374,
+  <955,971,970>, 374, 374, 374,
+  <955,956,971>, 374, 374, 374,
+  <956,972,971>, 374, 374, 374,
+  <956,957,972>, 374, 374, 374,
+  <957,973,972>, 374, 374, 374,
+  <957,958,973>, 374, 374, 374,
+  <958,974,973>, 374, 374, 374,
+  <958,959,974>, 374, 374, 374,
+  <959,975,974>, 374, 374, 374,
+  <959,960,975>, 374, 374, 374,
+  <960,976,975>, 374, 374, 374,
+  <960,945,976>, 374, 374, 374,
+  <945,961,976>, 374, 374, 374,
+  <961,962,977>, 374, 374, 374,
+  <962,978,977>, 374, 374, 374,
+  <962,963,978>, 374, 374, 374,
+  <963,979,978>, 374, 374, 374,
+  <963,964,979>, 374, 374, 374,
+  <964,980,979>, 374, 374, 374,
+  <964,965,980>, 374, 374, 374,
+  <965,981,980>, 374, 374, 374,
+  <965,966,981>, 374, 374, 374,
+  <966,982,981>, 374, 374, 374,
+  <966,967,982>, 374, 374, 374,
+  <967,983,982>, 374, 374, 374,
+  <967,968,983>, 374, 374, 374,
+  <968,984,983>, 374, 374, 374,
+  <968,969,984>, 374, 374, 374,
+  <969,985,984>, 374, 374, 374,
+  <969,970,985>, 374, 374, 374,
+  <970,986,985>, 374, 374, 374,
+  <970,971,986>, 374, 374, 374,
+  <971,987,986>, 374, 374, 374,
+  <971,972,987>, 374, 374, 374,
+  <972,988,987>, 374, 374, 374,
+  <972,973,988>, 374, 374, 374,
+  <973,989,988>, 374, 374, 374,
+  <973,974,989>, 374, 374, 374,
+  <974,990,989>, 374, 374, 374,
+  <974,975,990>, 374, 374, 374,
+  <975,991,990>, 374, 374, 374,
+  <975,976,991>, 374, 374, 374,
+  <976,992,991>, 374, 374, 374,
+  <976,961,992>, 374, 374, 374,
+  <961,977,992>, 374, 374, 374,
+  <977,978,993>, 374, 374, 374,
+  <978,994,993>, 374, 374, 374,
+  <978,979,994>, 374, 374, 374,
+  <979,995,994>, 374, 374, 374,
+  <979,980,995>, 374, 374, 374,
+  <980,996,995>, 374, 374, 374,
+  <980,981,996>, 374, 374, 374,
+  <981,997,996>, 374, 374, 374,
+  <981,982,997>, 374, 374, 374,
+  <982,998,997>, 374, 374, 374,
+  <982,983,998>, 374, 374, 374,
+  <983,999,998>, 374, 374, 374,
+  <983,984,999>, 374, 374, 374,
+  <984,1000,999>, 374, 374, 374,
+  <984,985,1000>, 374, 374, 374,
+  <985,1001,1000>, 374, 374, 374,
+  <985,986,1001>, 374, 374, 374,
+  <986,1002,1001>, 374, 374, 374,
+  <986,987,1002>, 374, 374, 374,
+  <987,1003,1002>, 374, 374, 374,
+  <987,988,1003>, 374, 374, 374,
+  <988,1004,1003>, 374, 374, 374,
+  <988,989,1004>, 374, 374, 374,
+  <989,1005,1004>, 374, 374, 374,
+  <989,990,1005>, 374, 374, 374,
+  <990,1006,1005>, 374, 374, 374,
+  <990,991,1006>, 374, 374, 374,
+  <991,1007,1006>, 374, 374, 374,
+  <991,992,1007>, 374, 374, 374,
+  <992,1008,1007>, 374, 374, 374,
+  <992,977,1008>, 374, 374, 374,
+  <977,993,1008>, 374, 374, 374,
+  <993,994,1009>, 374, 374, 374,
+  <994,1010,1009>, 374, 374, 374,
+  <994,995,1010>, 374, 374, 374,
+  <995,1011,1010>, 374, 374, 374,
+  <995,996,1011>, 374, 374, 374,
+  <996,1012,1011>, 374, 374, 374,
+  <996,997,1012>, 374, 374, 374,
+  <997,1013,1012>, 374, 374, 374,
+  <997,998,1013>, 374, 374, 374,
+  <998,1014,1013>, 374, 374, 374,
+  <998,999,1014>, 374, 374, 374,
+  <999,1015,1014>, 374, 374, 374,
+  <999,1000,1015>, 374, 374, 374,
+  <1000,1016,1015>, 374, 374, 374,
+  <1000,1001,1016>, 374, 374, 374,
+  <1001,1017,1016>, 374, 374, 374,
+  <1001,1002,1017>, 374, 374, 374,
+  <1002,1018,1017>, 374, 374, 374,
+  <1002,1003,1018>, 374, 374, 374,
+  <1003,1019,1018>, 374, 374, 374,
+  <1003,1004,1019>, 374, 374, 374,
+  <1004,1020,1019>, 374, 374, 374,
+  <1004,1005,1020>, 374, 374, 374,
+  <1005,1021,1020>, 374, 374, 374,
+  <1005,1006,1021>, 374, 374, 374,
+  <1006,1022,1021>, 374, 374, 374,
+  <1006,1007,1022>, 374, 374, 374,
+  <1007,1023,1022>, 374, 374, 374,
+  <1007,1008,1023>, 374, 374, 374,
+  <1008,1024,1023>, 374, 374, 374,
+  <1008,993,1024>, 374, 374, 374,
+  <993,1009,1024>, 374, 374, 374,
+  <1009,1010,1025>, 374, 374, 374,
+  <1010,1026,1025>, 374, 374, 374,
+  <1010,1011,1026>, 374, 374, 374,
+  <1011,1027,1026>, 374, 374, 374,
+  <1011,1012,1027>, 374, 374, 374,
+  <1012,1028,1027>, 374, 374, 374,
+  <1012,1013,1028>, 374, 374, 374,
+  <1013,1029,1028>, 374, 374, 374,
+  <1013,1014,1029>, 374, 374, 374,
+  <1014,1030,1029>, 374, 374, 374,
+  <1014,1015,1030>, 374, 374, 374,
+  <1015,1031,1030>, 374, 374, 374,
+  <1015,1016,1031>, 374, 374, 374,
+  <1016,1032,1031>, 374, 374, 374,
+  <1016,1017,1032>, 374, 374, 374,
+  <1017,1033,1032>, 374, 374, 374,
+  <1017,1018,1033>, 374, 374, 374,
+  <1018,1034,1033>, 374, 374, 374,
+  <1018,1019,1034>, 374, 374, 374,
+  <1019,1035,1034>, 374, 374, 374,
+  <1019,1020,1035>, 374, 374, 374,
+  <1020,1036,1035>, 374, 374, 374,
+  <1020,1021,1036>, 374, 374, 374,
+  <1021,1037,1036>, 374, 374, 374,
+  <1021,1022,1037>, 374, 374, 374,
+  <1022,1038,1037>, 374, 374, 374,
+  <1022,1023,1038>, 374, 374, 374,
+  <1023,1039,1038>, 374, 374, 374,
+  <1023,1024,1039>, 374, 374, 374,
+  <1024,1040,1039>, 374, 374, 374,
+  <1024,1009,1040>, 374, 374, 374,
+  <1009,1025,1040>, 374, 374, 374,
+  <1025,1026,1041>, 374, 374, 374,
+  <1026,1042,1041>, 374, 374, 374,
+  <1026,1027,1042>, 374, 374, 374,
+  <1027,1043,1042>, 374, 374, 374,
+  <1027,1028,1043>, 374, 374, 374,
+  <1028,1044,1043>, 374, 374, 374,
+  <1028,1029,1044>, 374, 374, 374,
+  <1029,1045,1044>, 374, 374, 374,
+  <1029,1030,1045>, 374, 374, 374,
+  <1030,1046,1045>, 374, 374, 374,
+  <1030,1031,1046>, 374, 374, 374,
+  <1031,1047,1046>, 374, 374, 374,
+  <1031,1032,1047>, 374, 374, 374,
+  <1032,1048,1047>, 374, 374, 374,
+  <1032,1033,1048>, 374, 374, 374,
+  <1033,1049,1048>, 374, 374, 374,
+  <1033,1034,1049>, 374, 374, 374,
+  <1034,1050,1049>, 374, 374, 374,
+  <1034,1035,1050>, 374, 374, 374,
+  <1035,1051,1050>, 374, 374, 374,
+  <1035,1036,1051>, 374, 374, 374,
+  <1036,1052,1051>, 374, 374, 374,
+  <1036,1037,1052>, 374, 374, 374,
+  <1037,1053,1052>, 374, 374, 374,
+  <1037,1038,1053>, 374, 374, 374,
+  <1038,1054,1053>, 374, 374, 374,
+  <1038,1039,1054>, 374, 374, 374,
+  <1039,1055,1054>, 374, 374, 374,
+  <1039,1040,1055>, 374, 374, 374,
+  <1040,1056,1055>, 374, 374, 374,
+  <1040,1025,1056>, 374, 374, 374,
+  <1025,1041,1056>, 374, 374, 374,
+  <1041,1042,1057>, 374, 374, 374,
+  <1042,1058,1057>, 374, 374, 374,
+  <1042,1043,1058>, 374, 374, 374,
+  <1043,1059,1058>, 374, 374, 374,
+  <1043,1044,1059>, 374, 374, 374,
+  <1044,1060,1059>, 374, 374, 374,
+  <1044,1045,1060>, 374, 374, 374,
+  <1045,1061,1060>, 374, 374, 374,
+  <1045,1046,1061>, 374, 374, 374,
+  <1046,1062,1061>, 374, 374, 374,
+  <1046,1047,1062>, 374, 374, 374,
+  <1047,1063,1062>, 374, 374, 374,
+  <1047,1048,1063>, 374, 374, 374,
+  <1048,1064,1063>, 374, 374, 374,
+  <1048,1049,1064>, 374, 374, 374,
+  <1049,1065,1064>, 374, 374, 374,
+  <1049,1050,1065>, 374, 374, 374,
+  <1050,1066,1065>, 374, 374, 374,
+  <1050,1051,1066>, 374, 374, 374,
+  <1051,1067,1066>, 374, 374, 374,
+  <1051,1052,1067>, 374, 374, 374,
+  <1052,1068,1067>, 374, 374, 374,
+  <1052,1053,1068>, 374, 374, 374,
+  <1053,1069,1068>, 374, 374, 374,
+  <1053,1054,1069>, 374, 374, 374,
+  <1054,1070,1069>, 374, 374, 374,
+  <1054,1055,1070>, 374, 374, 374,
+  <1055,1071,1070>, 374, 374, 374,
+  <1055,1056,1071>, 374, 374, 374,
+  <1056,1072,1071>, 374, 374, 374,
+  <1056,1041,1072>, 374, 374, 374,
+  <1041,1057,1072>, 374, 374, 374,
+  <1057,1058,1073>, 374, 374, 374,
+  <1058,1074,1073>, 374, 374, 374,
+  <1058,1059,1074>, 374, 374, 374,
+  <1059,1075,1074>, 374, 374, 374,
+  <1059,1060,1075>, 374, 374, 374,
+  <1060,1076,1075>, 374, 374, 374,
+  <1060,1061,1076>, 374, 374, 374,
+  <1061,1077,1076>, 374, 374, 374,
+  <1061,1062,1077>, 374, 374, 374,
+  <1062,1078,1077>, 374, 374, 374,
+  <1062,1063,1078>, 374, 374, 374,
+  <1063,1079,1078>, 374, 374, 374,
+  <1063,1064,1079>, 374, 374, 374,
+  <1064,1080,1079>, 374, 374, 374,
+  <1064,1065,1080>, 374, 374, 374,
+  <1065,1081,1080>, 374, 374, 374,
+  <1065,1066,1081>, 374, 374, 374,
+  <1066,1082,1081>, 374, 374, 374,
+  <1066,1067,1082>, 374, 374, 374,
+  <1067,1083,1082>, 374, 374, 374,
+  <1067,1068,1083>, 374, 374, 374,
+  <1068,1084,1083>, 374, 374, 374,
+  <1068,1069,1084>, 374, 374, 374,
+  <1069,1085,1084>, 374, 374, 374,
+  <1069,1070,1085>, 374, 374, 374,
+  <1070,1086,1085>, 374, 374, 374,
+  <1070,1071,1086>, 374, 374, 374,
+  <1071,1087,1086>, 374, 374, 374,
+  <1071,1072,1087>, 374, 374, 374,
+  <1072,1088,1087>, 374, 374, 374,
+  <1072,1057,1088>, 374, 374, 374,
+  <1057,1073,1088>, 374, 374, 374,
+  <1073,1074,1089>, 374, 374, 374,
+  <1074,1090,1089>, 374, 374, 374,
+  <1074,1075,1090>, 374, 374, 374,
+  <1075,1091,1090>, 374, 374, 374,
+  <1075,1076,1091>, 374, 374, 374,
+  <1076,1092,1091>, 374, 374, 374,
+  <1076,1077,1092>, 374, 374, 374,
+  <1077,1093,1092>, 374, 374, 374,
+  <1077,1078,1093>, 374, 374, 374,
+  <1078,1094,1093>, 374, 374, 374,
+  <1078,1079,1094>, 374, 374, 374,
+  <1079,1095,1094>, 374, 374, 374,
+  <1079,1080,1095>, 374, 374, 374,
+  <1080,1096,1095>, 374, 374, 374,
+  <1080,1081,1096>, 374, 374, 374,
+  <1081,1097,1096>, 374, 374, 374,
+  <1081,1082,1097>, 374, 374, 374,
+  <1082,1098,1097>, 374, 374, 374,
+  <1082,1083,1098>, 374, 374, 374,
+  <1083,1099,1098>, 374, 374, 374,
+  <1083,1084,1099>, 374, 374, 374,
+  <1084,1100,1099>, 374, 374, 374,
+  <1084,1085,1100>, 374, 374, 374,
+  <1085,1101,1100>, 374, 374, 374,
+  <1085,1086,1101>, 374, 374, 374,
+  <1086,1102,1101>, 374, 374, 374,
+  <1086,1087,1102>, 374, 374, 374,
+  <1087,1103,1102>, 374, 374, 374,
+  <1087,1088,1103>, 374, 374, 374,
+  <1088,1104,1103>, 374, 374, 374,
+  <1088,1073,1104>, 374, 374, 374,
+  <1073,1089,1104>, 374, 374, 374,
+  <1089,1090,1105>, 374, 374, 374,
+  <1090,1106,1105>, 374, 374, 374,
+  <1090,1091,1106>, 374, 374, 374,
+  <1091,1107,1106>, 374, 374, 374,
+  <1091,1092,1107>, 374, 374, 374,
+  <1092,1108,1107>, 374, 374, 374,
+  <1092,1093,1108>, 374, 374, 374,
+  <1093,1109,1108>, 374, 374, 374,
+  <1093,1094,1109>, 374, 374, 374,
+  <1094,1110,1109>, 374, 374, 374,
+  <1094,1095,1110>, 374, 374, 374,
+  <1095,1111,1110>, 374, 374, 374,
+  <1095,1096,1111>, 374, 374, 374,
+  <1096,1112,1111>, 374, 374, 374,
+  <1096,1097,1112>, 374, 374, 374,
+  <1097,1113,1112>, 374, 374, 374,
+  <1097,1098,1113>, 374, 374, 374,
+  <1098,1114,1113>, 374, 374, 374,
+  <1098,1099,1114>, 374, 374, 374,
+  <1099,1115,1114>, 374, 374, 374,
+  <1099,1100,1115>, 374, 374, 374,
+  <1100,1116,1115>, 374, 374, 374,
+  <1100,1101,1116>, 374, 374, 374,
+  <1101,1117,1116>, 374, 374, 374,
+  <1101,1102,1117>, 374, 374, 374,
+  <1102,1118,1117>, 374, 374, 374,
+  <1102,1103,1118>, 374, 374, 374,
+  <1103,1119,1118>, 374, 374, 374,
+  <1103,1104,1119>, 374, 374, 374,
+  <1104,1120,1119>, 374, 374, 374,
+  <1104,1089,1120>, 374, 374, 374,
+  <1089,1105,1120>, 374, 374, 374,
+  <1105,1106,1121>, 374, 374, 374,
+  <1106,1122,1121>, 374, 374, 374,
+  <1106,1107,1122>, 374, 374, 374,
+  <1107,1123,1122>, 374, 374, 374,
+  <1107,1108,1123>, 374, 374, 374,
+  <1108,1124,1123>, 374, 374, 374,
+  <1108,1109,1124>, 374, 374, 374,
+  <1109,1125,1124>, 374, 374, 374,
+  <1109,1110,1125>, 374, 374, 374,
+  <1110,1126,1125>, 374, 374, 374,
+  <1110,1111,1126>, 374, 374, 374,
+  <1111,1127,1126>, 374, 374, 374,
+  <1111,1112,1127>, 374, 374, 374,
+  <1112,1128,1127>, 374, 374, 374,
+  <1112,1113,1128>, 374, 374, 374,
+  <1113,1129,1128>, 374, 374, 374,
+  <1113,1114,1129>, 374, 374, 374,
+  <1114,1130,1129>, 374, 374, 374,
+  <1114,1115,1130>, 374, 374, 374,
+  <1115,1131,1130>, 374, 374, 374,
+  <1115,1116,1131>, 374, 374, 374,
+  <1116,1132,1131>, 374, 374, 374,
+  <1116,1117,1132>, 374, 374, 374,
+  <1117,1133,1132>, 374, 374, 374,
+  <1117,1118,1133>, 374, 374, 374,
+  <1118,1134,1133>, 374, 374, 374,
+  <1118,1119,1134>, 374, 374, 374,
+  <1119,1135,1134>, 374, 374, 374,
+  <1119,1120,1135>, 374, 374, 374,
+  <1120,1136,1135>, 374, 374, 374,
+  <1120,1105,1136>, 374, 374, 374,
+  <1105,1121,1136>, 374, 374, 374,
+  <1121,1122,1137>, 374, 374, 374,
+  <1122,1138,1137>, 374, 374, 374,
+  <1122,1123,1138>, 374, 374, 374,
+  <1123,1139,1138>, 374, 374, 374,
+  <1123,1124,1139>, 374, 374, 374,
+  <1124,1140,1139>, 374, 374, 374,
+  <1124,1125,1140>, 374, 374, 374,
+  <1125,1141,1140>, 374, 374, 374,
+  <1125,1126,1141>, 374, 374, 374,
+  <1126,1142,1141>, 374, 374, 374,
+  <1126,1127,1142>, 374, 374, 374,
+  <1127,1143,1142>, 374, 374, 374,
+  <1127,1128,1143>, 374, 374, 374,
+  <1128,1144,1143>, 374, 374, 374,
+  <1128,1129,1144>, 374, 374, 374,
+  <1129,1145,1144>, 374, 374, 374,
+  <1129,1130,1145>, 374, 374, 374,
+  <1130,1146,1145>, 374, 374, 374,
+  <1130,1131,1146>, 374, 374, 374,
+  <1131,1147,1146>, 374, 374, 374,
+  <1131,1132,1147>, 374, 374, 374,
+  <1132,1148,1147>, 374, 374, 374,
+  <1132,1133,1148>, 374, 374, 374,
+  <1133,1149,1148>, 374, 374, 374,
+  <1133,1134,1149>, 374, 374, 374,
+  <1134,1150,1149>, 374, 374, 374,
+  <1134,1135,1150>, 374, 374, 374,
+  <1135,1151,1150>, 374, 374, 374,
+  <1135,1136,1151>, 374, 374, 374,
+  <1136,1152,1151>, 374, 374, 374,
+  <1136,1121,1152>, 374, 374, 374,
+  <1121,1137,1152>, 374, 374, 374,
+  <1137,1138,1153>, 374, 374, 374,
+  <1138,1154,1153>, 374, 374, 374,
+  <1138,1139,1154>, 374, 374, 374,
+  <1139,1155,1154>, 374, 374, 374,
+  <1139,1140,1155>, 374, 374, 374,
+  <1140,1156,1155>, 374, 374, 374,
+  <1140,1141,1156>, 374, 374, 374,
+  <1141,1157,1156>, 374, 374, 374,
+  <1141,1142,1157>, 374, 374, 374,
+  <1142,1158,1157>, 374, 374, 374,
+  <1142,1143,1158>, 374, 374, 374,
+  <1143,1159,1158>, 374, 374, 374,
+  <1143,1144,1159>, 374, 374, 374,
+  <1144,1160,1159>, 374, 374, 374,
+  <1144,1145,1160>, 374, 374, 374,
+  <1145,1161,1160>, 374, 374, 374,
+  <1145,1146,1161>, 374, 374, 374,
+  <1146,1162,1161>, 374, 374, 374,
+  <1146,1147,1162>, 374, 374, 374,
+  <1147,1163,1162>, 374, 374, 374,
+  <1147,1148,1163>, 374, 374, 374,
+  <1148,1164,1163>, 374, 374, 374,
+  <1148,1149,1164>, 374, 374, 374,
+  <1149,1165,1164>, 374, 374, 374,
+  <1149,1150,1165>, 374, 374, 374,
+  <1150,1166,1165>, 374, 374, 374,
+  <1150,1151,1166>, 374, 374, 374,
+  <1151,1167,1166>, 374, 374, 374,
+  <1151,1152,1167>, 374, 374, 374,
+  <1152,1168,1167>, 374, 374, 374,
+  <1152,1137,1168>, 374, 374, 374,
+  <1137,1153,1168>, 374, 374, 374,
+  <1153,1154,1169>, 374, 374, 374,
+  <1154,1170,1169>, 374, 374, 374,
+  <1154,1155,1170>, 374, 374, 374,
+  <1155,1171,1170>, 374, 374, 374,
+  <1155,1156,1171>, 374, 374, 374,
+  <1156,1172,1171>, 374, 374, 374,
+  <1156,1157,1172>, 374, 374, 374,
+  <1157,1173,1172>, 374, 374, 374,
+  <1157,1158,1173>, 374, 374, 374,
+  <1158,1174,1173>, 374, 374, 374,
+  <1158,1159,1174>, 374, 374, 374,
+  <1159,1175,1174>, 374, 374, 374,
+  <1159,1160,1175>, 374, 374, 374,
+  <1160,1176,1175>, 374, 374, 374,
+  <1160,1161,1176>, 374, 374, 374,
+  <1161,1177,1176>, 374, 374, 374,
+  <1161,1162,1177>, 374, 374, 374,
+  <1162,1178,1177>, 374, 374, 374,
+  <1162,1163,1178>, 374, 374, 374,
+  <1163,1179,1178>, 374, 374, 374,
+  <1163,1164,1179>, 374, 374, 374,
+  <1164,1180,1179>, 374, 374, 374,
+  <1164,1165,1180>, 374, 374, 374,
+  <1165,1181,1180>, 374, 374, 374,
+  <1165,1166,1181>, 374, 374, 374,
+  <1166,1182,1181>, 374, 374, 374,
+  <1166,1167,1182>, 374, 374, 374,
+  <1167,1183,1182>, 374, 374, 374,
+  <1167,1168,1183>, 374, 374, 374,
+  <1168,1184,1183>, 374, 374, 374,
+  <1168,1153,1184>, 374, 374, 374,
+  <1153,1169,1184>, 374, 374, 374,
+  <1169,1170,1185>, 374, 374, 374,
+  <1170,1186,1185>, 374, 374, 374,
+  <1170,1171,1186>, 374, 374, 374,
+  <1171,1187,1186>, 374, 374, 374,
+  <1171,1172,1187>, 374, 374, 374,
+  <1172,1188,1187>, 374, 374, 374,
+  <1172,1173,1188>, 374, 374, 374,
+  <1173,1189,1188>, 374, 374, 374,
+  <1173,1174,1189>, 374, 374, 374,
+  <1174,1190,1189>, 374, 374, 374,
+  <1174,1175,1190>, 374, 374, 374,
+  <1175,1191,1190>, 374, 374, 374,
+  <1175,1176,1191>, 374, 374, 374,
+  <1176,1192,1191>, 374, 374, 374,
+  <1176,1177,1192>, 374, 374, 374,
+  <1177,1193,1192>, 374, 374, 374,
+  <1177,1178,1193>, 374, 374, 374,
+  <1178,1194,1193>, 374, 374, 374,
+  <1178,1179,1194>, 374, 374, 374,
+  <1179,1195,1194>, 374, 374, 374,
+  <1179,1180,1195>, 374, 374, 374,
+  <1180,1196,1195>, 374, 374, 374,
+  <1180,1181,1196>, 374, 374, 374,
+  <1181,1197,1196>, 374, 374, 374,
+  <1181,1182,1197>, 374, 374, 374,
+  <1182,1198,1197>, 374, 374, 374,
+  <1182,1183,1198>, 374, 374, 374,
+  <1183,1199,1198>, 374, 374, 374,
+  <1183,1184,1199>, 374, 374, 374,
+  <1184,1200,1199>, 374, 374, 374,
+  <1184,1169,1200>, 374, 374, 374,
+  <1169,1185,1200>, 374, 374, 374,
+  <1185,1186,1201>, 374, 374, 374,
+  <1186,1202,1201>, 374, 374, 374,
+  <1186,1187,1202>, 374, 374, 374,
+  <1187,1203,1202>, 374, 374, 374,
+  <1187,1188,1203>, 374, 374, 374,
+  <1188,1204,1203>, 374, 374, 374,
+  <1188,1189,1204>, 374, 374, 374,
+  <1189,1205,1204>, 374, 374, 374,
+  <1189,1190,1205>, 374, 374, 374,
+  <1190,1206,1205>, 374, 374, 374,
+  <1190,1191,1206>, 374, 374, 374,
+  <1191,1207,1206>, 374, 374, 374,
+  <1191,1192,1207>, 374, 374, 374,
+  <1192,1208,1207>, 374, 374, 374,
+  <1192,1193,1208>, 374, 374, 374,
+  <1193,1209,1208>, 374, 374, 374,
+  <1193,1194,1209>, 374, 374, 374,
+  <1194,1210,1209>, 374, 374, 374,
+  <1194,1195,1210>, 374, 374, 374,
+  <1195,1211,1210>, 374, 374, 374,
+  <1195,1196,1211>, 374, 374, 374,
+  <1196,1212,1211>, 374, 374, 374,
+  <1196,1197,1212>, 374, 374, 374,
+  <1197,1213,1212>, 374, 374, 374,
+  <1197,1198,1213>, 374, 374, 374,
+  <1198,1214,1213>, 374, 374, 374,
+  <1198,1199,1214>, 374, 374, 374,
+  <1199,1215,1214>, 374, 374, 374,
+  <1199,1200,1215>, 374, 374, 374,
+  <1200,1216,1215>, 374, 374, 374,
+  <1200,1185,1216>, 374, 374, 374,
+  <1185,1201,1216>, 374, 374, 374,
+  <1201,1202,1217>, 374, 374, 374,
+  <1202,1218,1217>, 374, 374, 374,
+  <1202,1203,1218>, 374, 374, 374,
+  <1203,1219,1218>, 374, 374, 374,
+  <1203,1204,1219>, 374, 374, 374,
+  <1204,1220,1219>, 374, 374, 374,
+  <1204,1205,1220>, 374, 374, 374,
+  <1205,1221,1220>, 374, 374, 374,
+  <1205,1206,1221>, 374, 374, 374,
+  <1206,1222,1221>, 374, 374, 374,
+  <1206,1207,1222>, 374, 374, 374,
+  <1207,1223,1222>, 374, 374, 374,
+  <1207,1208,1223>, 374, 374, 374,
+  <1208,1224,1223>, 374, 374, 374,
+  <1208,1209,1224>, 374, 374, 374,
+  <1209,1225,1224>, 374, 374, 374,
+  <1209,1210,1225>, 374, 374, 374,
+  <1210,1226,1225>, 374, 374, 374,
+  <1210,1211,1226>, 374, 374, 374,
+  <1211,1227,1226>, 374, 374, 374,
+  <1211,1212,1227>, 374, 374, 374,
+  <1212,1228,1227>, 374, 374, 374,
+  <1212,1213,1228>, 374, 374, 374,
+  <1213,1229,1228>, 374, 374, 374,
+  <1213,1214,1229>, 374, 374, 374,
+  <1214,1230,1229>, 374, 374, 374,
+  <1214,1215,1230>, 374, 374, 374,
+  <1215,1231,1230>, 374, 374, 374,
+  <1215,1216,1231>, 374, 374, 374,
+  <1216,1232,1231>, 374, 374, 374,
+  <1216,1201,1232>, 374, 374, 374,
+  <1201,1217,1232>, 374, 374, 374,
+  <1217,1218,1233>, 374, 374, 374,
+  <1218,1234,1233>, 374, 374, 374,
+  <1218,1219,1234>, 374, 374, 374,
+  <1219,1235,1234>, 374, 374, 374,
+  <1219,1220,1235>, 374, 374, 374,
+  <1220,1236,1235>, 374, 374, 374,
+  <1220,1221,1236>, 374, 374, 374,
+  <1221,1237,1236>, 374, 374, 374,
+  <1221,1222,1237>, 374, 374, 374,
+  <1222,1238,1237>, 374, 374, 374,
+  <1222,1223,1238>, 374, 374, 374,
+  <1223,1239,1238>, 374, 374, 374,
+  <1223,1224,1239>, 374, 374, 374,
+  <1224,1240,1239>, 374, 374, 374,
+  <1224,1225,1240>, 374, 374, 374,
+  <1225,1241,1240>, 374, 374, 374,
+  <1225,1226,1241>, 374, 374, 374,
+  <1226,1242,1241>, 374, 374, 374,
+  <1226,1227,1242>, 374, 374, 374,
+  <1227,1243,1242>, 374, 374, 374,
+  <1227,1228,1243>, 374, 374, 374,
+  <1228,1244,1243>, 374, 374, 374,
+  <1228,1229,1244>, 374, 374, 374,
+  <1229,1245,1244>, 374, 374, 374,
+  <1229,1230,1245>, 374, 374, 374,
+  <1230,1246,1245>, 374, 374, 374,
+  <1230,1231,1246>, 374, 374, 374,
+  <1231,1247,1246>, 374, 374, 374,
+  <1231,1232,1247>, 374, 374, 374,
+  <1232,1248,1247>, 374, 374, 374,
+  <1232,1217,1248>, 374, 374, 374,
+  <1217,1233,1248>, 374, 374, 374,
+  <1233,1234,1249>, 374, 374, 374,
+  <1234,1250,1249>, 374, 374, 374,
+  <1234,1235,1250>, 374, 374, 374,
+  <1235,1251,1250>, 374, 374, 374,
+  <1235,1236,1251>, 374, 374, 374,
+  <1236,1252,1251>, 374, 374, 374,
+  <1236,1237,1252>, 374, 374, 374,
+  <1237,1253,1252>, 374, 374, 374,
+  <1237,1238,1253>, 374, 374, 374,
+  <1238,1254,1253>, 374, 374, 374,
+  <1238,1239,1254>, 374, 374, 374,
+  <1239,1255,1254>, 374, 374, 374,
+  <1239,1240,1255>, 374, 374, 374,
+  <1240,1256,1255>, 374, 374, 374,
+  <1240,1241,1256>, 374, 374, 374,
+  <1241,1257,1256>, 374, 374, 374,
+  <1241,1242,1257>, 374, 374, 374,
+  <1242,1258,1257>, 374, 374, 374,
+  <1242,1243,1258>, 374, 374, 374,
+  <1243,1259,1258>, 374, 374, 374,
+  <1243,1244,1259>, 374, 374, 374,
+  <1244,1260,1259>, 374, 374, 374,
+  <1244,1245,1260>, 374, 374, 374,
+  <1245,1261,1260>, 374, 374, 374,
+  <1245,1246,1261>, 374, 374, 374,
+  <1246,1262,1261>, 374, 374, 374,
+  <1246,1247,1262>, 374, 374, 374,
+  <1247,1263,1262>, 374, 374, 374,
+  <1247,1248,1263>, 374, 374, 374,
+  <1248,1264,1263>, 374, 374, 374,
+  <1248,1233,1264>, 374, 374, 374,
+  <1233,1249,1264>, 374, 374, 374,
+  <1249,1250,1265>, 374, 374, 374,
+  <1250,1266,1265>, 374, 374, 374,
+  <1250,1251,1266>, 374, 374, 374,
+  <1251,1267,1266>, 374, 374, 374,
+  <1251,1252,1267>, 374, 374, 374,
+  <1252,1268,1267>, 374, 374, 374,
+  <1252,1253,1268>, 374, 374, 374,
+  <1253,1269,1268>, 374, 374, 374,
+  <1253,1254,1269>, 374, 374, 374,
+  <1254,1270,1269>, 374, 374, 374,
+  <1254,1255,1270>, 374, 374, 374,
+  <1255,1271,1270>, 374, 374, 374,
+  <1255,1256,1271>, 374, 374, 374,
+  <1256,1272,1271>, 374, 374, 374,
+  <1256,1257,1272>, 374, 374, 374,
+  <1257,1273,1272>, 374, 374, 374,
+  <1257,1258,1273>, 374, 374, 374,
+  <1258,1274,1273>, 374, 374, 374,
+  <1258,1259,1274>, 374, 374, 374,
+  <1259,1275,1274>, 374, 374, 374,
+  <1259,1260,1275>, 374, 374, 374,
+  <1260,1276,1275>, 374, 374, 374,
+  <1260,1261,1276>, 374, 374, 374,
+  <1261,1277,1276>, 374, 374, 374,
+  <1261,1262,1277>, 374, 374, 374,
+  <1262,1278,1277>, 374, 374, 374,
+  <1262,1263,1278>, 374, 374, 374,
+  <1263,1279,1278>, 374, 374, 374,
+  <1263,1264,1279>, 374, 374, 374,
+  <1264,1280,1279>, 374, 374, 374,
+  <1264,1249,1280>, 374, 374, 374,
+  <1249,1265,1280>, 374, 374, 374,
+  <1265,1266,1281>, 374, 374, 374,
+  <1266,1282,1281>, 374, 374, 374,
+  <1266,1267,1282>, 374, 374, 374,
+  <1267,1283,1282>, 374, 374, 374,
+  <1267,1268,1283>, 374, 374, 374,
+  <1268,1284,1283>, 374, 374, 374,
+  <1268,1269,1284>, 374, 374, 374,
+  <1269,1285,1284>, 374, 374, 374,
+  <1269,1270,1285>, 374, 374, 374,
+  <1270,1286,1285>, 374, 374, 374,
+  <1270,1271,1286>, 374, 374, 374,
+  <1271,1287,1286>, 374, 374, 374,
+  <1271,1272,1287>, 374, 374, 374,
+  <1272,1288,1287>, 374, 374, 374,
+  <1272,1273,1288>, 374, 374, 374,
+  <1273,1289,1288>, 374, 374, 374,
+  <1273,1274,1289>, 374, 374, 374,
+  <1274,1290,1289>, 374, 374, 374,
+  <1274,1275,1290>, 374, 374, 374,
+  <1275,1291,1290>, 374, 374, 374,
+  <1275,1276,1291>, 374, 374, 374,
+  <1276,1292,1291>, 374, 374, 374,
+  <1276,1277,1292>, 374, 374, 374,
+  <1277,1293,1292>, 374, 374, 374,
+  <1277,1278,1293>, 374, 374, 374,
+  <1278,1294,1293>, 374, 374, 374,
+  <1278,1279,1294>, 374, 374, 374,
+  <1279,1295,1294>, 374, 374, 374,
+  <1279,1280,1295>, 374, 374, 374,
+  <1280,1296,1295>, 374, 374, 374,
+  <1280,1265,1296>, 374, 374, 374,
+  <1265,1281,1296>, 374, 374, 374,
+  <1281,1282,1297>, 374, 374, 374,
+  <1282,1298,1297>, 374, 374, 374,
+  <1282,1283,1298>, 374, 374, 374,
+  <1283,1299,1298>, 374, 374, 374,
+  <1283,1284,1299>, 374, 374, 374,
+  <1284,1300,1299>, 374, 374, 374,
+  <1284,1285,1300>, 374, 374, 374,
+  <1285,1301,1300>, 374, 374, 374,
+  <1285,1286,1301>, 374, 374, 374,
+  <1286,1302,1301>, 374, 374, 374,
+  <1286,1287,1302>, 374, 374, 374,
+  <1287,1303,1302>, 374, 374, 374,
+  <1287,1288,1303>, 374, 374, 374,
+  <1288,1304,1303>, 374, 374, 374,
+  <1288,1289,1304>, 374, 374, 374,
+  <1289,1305,1304>, 374, 374, 374,
+  <1289,1290,1305>, 374, 374, 374,
+  <1290,1306,1305>, 374, 374, 374,
+  <1290,1291,1306>, 374, 374, 374,
+  <1291,1307,1306>, 374, 374, 374,
+  <1291,1292,1307>, 374, 374, 374,
+  <1292,1308,1307>, 374, 374, 374,
+  <1292,1293,1308>, 374, 374, 374,
+  <1293,1309,1308>, 374, 374, 374,
+  <1293,1294,1309>, 374, 374, 374,
+  <1294,1310,1309>, 374, 374, 374,
+  <1294,1295,1310>, 374, 374, 374,
+  <1295,1311,1310>, 374, 374, 374,
+  <1295,1296,1311>, 374, 374, 374,
+  <1296,1312,1311>, 374, 374, 374,
+  <1296,1281,1312>, 374, 374, 374,
+  <1281,1297,1312>, 374, 374, 374,
+  <1297,1298,1313>, 374, 374, 374,
+  <1298,1314,1313>, 374, 374, 374,
+  <1298,1299,1314>, 374, 374, 374,
+  <1299,1315,1314>, 374, 374, 374,
+  <1299,1300,1315>, 374, 374, 374,
+  <1300,1316,1315>, 374, 374, 374,
+  <1300,1301,1316>, 374, 374, 374,
+  <1301,1317,1316>, 374, 374, 374,
+  <1301,1302,1317>, 374, 374, 374,
+  <1302,1318,1317>, 374, 374, 374,
+  <1302,1303,1318>, 374, 374, 374,
+  <1303,1319,1318>, 374, 374, 374,
+  <1303,1304,1319>, 374, 374, 374,
+  <1304,1320,1319>, 374, 374, 374,
+  <1304,1305,1320>, 374, 374, 374,
+  <1305,1321,1320>, 374, 374, 374,
+  <1305,1306,1321>, 374, 374, 374,
+  <1306,1322,1321>, 374, 374, 374,
+  <1306,1307,1322>, 374, 374, 374,
+  <1307,1323,1322>, 374, 374, 374,
+  <1307,1308,1323>, 374, 374, 374,
+  <1308,1324,1323>, 374, 374, 374,
+  <1308,1309,1324>, 374, 374, 374,
+  <1309,1325,1324>, 374, 374, 374,
+  <1309,1310,1325>, 374, 374, 374,
+  <1310,1326,1325>, 374, 374, 374,
+  <1310,1311,1326>, 374, 374, 374,
+  <1311,1327,1326>, 374, 374, 374,
+  <1311,1312,1327>, 374, 374, 374,
+  <1312,1328,1327>, 374, 374, 374,
+  <1312,1297,1328>, 374, 374, 374,
+  <1297,1313,1328>, 374, 374, 374,
+  <1313,1314,1329>, 374, 374, 374,
+  <1314,1330,1329>, 374, 374, 374,
+  <1314,1315,1330>, 374, 374, 374,
+  <1315,1331,1330>, 374, 374, 374,
+  <1315,1316,1331>, 374, 374, 374,
+  <1316,1332,1331>, 374, 374, 374,
+  <1316,1317,1332>, 374, 374, 374,
+  <1317,1333,1332>, 374, 374, 374,
+  <1317,1318,1333>, 374, 374, 374,
+  <1318,1334,1333>, 374, 374, 374,
+  <1318,1319,1334>, 374, 374, 374,
+  <1319,1335,1334>, 374, 374, 374,
+  <1319,1320,1335>, 374, 374, 374,
+  <1320,1336,1335>, 374, 374, 374,
+  <1320,1321,1336>, 374, 374, 374,
+  <1321,1337,1336>, 374, 374, 374,
+  <1321,1322,1337>, 374, 374, 374,
+  <1322,1338,1337>, 374, 374, 374,
+  <1322,1323,1338>, 374, 374, 374,
+  <1323,1339,1338>, 374, 374, 374,
+  <1323,1324,1339>, 374, 374, 374,
+  <1324,1340,1339>, 374, 374, 374,
+  <1324,1325,1340>, 374, 374, 374,
+  <1325,1341,1340>, 374, 374, 374,
+  <1325,1326,1341>, 374, 374, 374,
+  <1326,1342,1341>, 374, 374, 374,
+  <1326,1327,1342>, 374, 374, 374,
+  <1327,1343,1342>, 374, 374, 374,
+  <1327,1328,1343>, 374, 374, 374,
+  <1328,1344,1343>, 374, 374, 374,
+  <1328,1313,1344>, 374, 374, 374,
+  <1313,1329,1344>, 374, 374, 374,
+  <1329,1330,1345>, 374, 374, 374,
+  <1330,1346,1345>, 374, 374, 374,
+  <1330,1331,1346>, 374, 374, 374,
+  <1331,1347,1346>, 374, 374, 374,
+  <1331,1332,1347>, 374, 374, 374,
+  <1332,1348,1347>, 374, 374, 374,
+  <1332,1333,1348>, 374, 374, 374,
+  <1333,1349,1348>, 374, 374, 374,
+  <1333,1334,1349>, 374, 374, 374,
+  <1334,1350,1349>, 374, 374, 374,
+  <1334,1335,1350>, 374, 374, 374,
+  <1335,1351,1350>, 374, 374, 374,
+  <1335,1336,1351>, 374, 374, 374,
+  <1336,1352,1351>, 374, 374, 374,
+  <1336,1337,1352>, 374, 374, 374,
+  <1337,1353,1352>, 374, 374, 374,
+  <1337,1338,1353>, 374, 374, 374,
+  <1338,1354,1353>, 374, 374, 374,
+  <1338,1339,1354>, 374, 374, 374,
+  <1339,1355,1354>, 374, 374, 374,
+  <1339,1340,1355>, 374, 374, 374,
+  <1340,1356,1355>, 374, 374, 374,
+  <1340,1341,1356>, 374, 374, 374,
+  <1341,1357,1356>, 374, 374, 374,
+  <1341,1342,1357>, 374, 374, 374,
+  <1342,1358,1357>, 374, 374, 374,
+  <1342,1343,1358>, 374, 374, 374,
+  <1343,1359,1358>, 374, 374, 374,
+  <1343,1344,1359>, 374, 374, 374,
+  <1344,1360,1359>, 374, 374, 374,
+  <1344,1329,1360>, 374, 374, 374,
+  <1329,1345,1360>, 374, 374, 374,
+  <1345,1346,1361>, 374, 374, 374,
+  <1346,1362,1361>, 374, 374, 374,
+  <1346,1347,1362>, 374, 374, 374,
+  <1347,1363,1362>, 374, 374, 374,
+  <1347,1348,1363>, 374, 374, 374,
+  <1348,1364,1363>, 374, 374, 374,
+  <1348,1349,1364>, 374, 374, 374,
+  <1349,1365,1364>, 374, 374, 374,
+  <1349,1350,1365>, 374, 374, 374,
+  <1350,1366,1365>, 374, 374, 374,
+  <1350,1351,1366>, 374, 374, 374,
+  <1351,1367,1366>, 374, 374, 374,
+  <1351,1352,1367>, 374, 374, 374,
+  <1352,1368,1367>, 374, 374, 374,
+  <1352,1353,1368>, 374, 374, 374,
+  <1353,1369,1368>, 374, 374, 374,
+  <1353,1354,1369>, 374, 374, 374,
+  <1354,1370,1369>, 374, 374, 374,
+  <1354,1355,1370>, 374, 374, 374,
+  <1355,1371,1370>, 374, 374, 374,
+  <1355,1356,1371>, 374, 374, 374,
+  <1356,1372,1371>, 374, 374, 374,
+  <1356,1357,1372>, 374, 374, 374,
+  <1357,1373,1372>, 374, 374, 374,
+  <1357,1358,1373>, 374, 374, 374,
+  <1358,1374,1373>, 374, 374, 374,
+  <1358,1359,1374>, 374, 374, 374,
+  <1359,1375,1374>, 374, 374, 374,
+  <1359,1360,1375>, 374, 374, 374,
+  <1360,1376,1375>, 374, 374, 374,
+  <1360,1345,1376>, 374, 374, 374,
+  <1345,1361,1376>, 374, 374, 374,
+  <1361,1362,1377>, 374, 374, 374,
+  <1362,1378,1377>, 374, 374, 374,
+  <1362,1363,1378>, 374, 374, 374,
+  <1363,1379,1378>, 374, 374, 374,
+  <1363,1364,1379>, 374, 374, 374,
+  <1364,1380,1379>, 374, 374, 374,
+  <1364,1365,1380>, 374, 374, 374,
+  <1365,1381,1380>, 374, 374, 374,
+  <1365,1366,1381>, 374, 374, 374,
+  <1366,1382,1381>, 374, 374, 374,
+  <1366,1367,1382>, 374, 374, 374,
+  <1367,1383,1382>, 374, 374, 374,
+  <1367,1368,1383>, 374, 374, 374,
+  <1368,1384,1383>, 374, 374, 374,
+  <1368,1369,1384>, 374, 374, 374,
+  <1369,1385,1384>, 374, 374, 374,
+  <1369,1370,1385>, 374, 374, 374,
+  <1370,1386,1385>, 374, 374, 374,
+  <1370,1371,1386>, 374, 374, 374,
+  <1371,1387,1386>, 374, 374, 374,
+  <1371,1372,1387>, 374, 374, 374,
+  <1372,1388,1387>, 374, 374, 374,
+  <1372,1373,1388>, 374, 374, 374,
+  <1373,1389,1388>, 374, 374, 374,
+  <1373,1374,1389>, 374, 374, 374,
+  <1374,1390,1389>, 374, 374, 374,
+  <1374,1375,1390>, 374, 374, 374,
+  <1375,1391,1390>, 374, 374, 374,
+  <1375,1376,1391>, 374, 374, 374,
+  <1376,1392,1391>, 374, 374, 374,
+  <1376,1361,1392>, 374, 374, 374,
+  <1361,1377,1392>, 374, 374, 374,
+  <1377,1378,1393>, 374, 374, 374,
+  <1378,1394,1393>, 374, 374, 374,
+  <1378,1379,1394>, 374, 374, 374,
+  <1379,1395,1394>, 374, 374, 374,
+  <1379,1380,1395>, 374, 374, 374,
+  <1380,1396,1395>, 374, 374, 374,
+  <1380,1381,1396>, 374, 374, 374,
+  <1381,1397,1396>, 374, 374, 374,
+  <1381,1382,1397>, 374, 374, 374,
+  <1382,1398,1397>, 374, 374, 374,
+  <1382,1383,1398>, 374, 374, 374,
+  <1383,1399,1398>, 374, 374, 374,
+  <1383,1384,1399>, 374, 374, 374,
+  <1384,1400,1399>, 374, 374, 374,
+  <1384,1385,1400>, 374, 374, 374,
+  <1385,1401,1400>, 374, 374, 374,
+  <1385,1386,1401>, 374, 374, 374,
+  <1386,1402,1401>, 374, 374, 374,
+  <1386,1387,1402>, 374, 374, 374,
+  <1387,1403,1402>, 374, 374, 374,
+  <1387,1388,1403>, 374, 374, 374,
+  <1388,1404,1403>, 374, 374, 374,
+  <1388,1389,1404>, 374, 374, 374,
+  <1389,1405,1404>, 374, 374, 374,
+  <1389,1390,1405>, 374, 374, 374,
+  <1390,1406,1405>, 374, 374, 374,
+  <1390,1391,1406>, 374, 374, 374,
+  <1391,1407,1406>, 374, 374, 374,
+  <1391,1392,1407>, 374, 374, 374,
+  <1392,1408,1407>, 374, 374, 374,
+  <1392,1377,1408>, 374, 374, 374,
+  <1377,1393,1408>, 374, 374, 374,
+  <1393,1394,1409>, 374, 374, 374,
+  <1394,1410,1409>, 374, 374, 374,
+  <1394,1395,1410>, 374, 374, 374,
+  <1395,1411,1410>, 374, 374, 374,
+  <1395,1396,1411>, 374, 374, 374,
+  <1396,1412,1411>, 374, 374, 374,
+  <1396,1397,1412>, 374, 374, 374,
+  <1397,1413,1412>, 374, 374, 374,
+  <1397,1398,1413>, 374, 374, 374,
+  <1398,1414,1413>, 374, 374, 374,
+  <1398,1399,1414>, 374, 374, 374,
+  <1399,1415,1414>, 374, 374, 374,
+  <1399,1400,1415>, 374, 374, 374,
+  <1400,1416,1415>, 374, 374, 374,
+  <1400,1401,1416>, 374, 374, 374,
+  <1401,1417,1416>, 374, 374, 374,
+  <1401,1402,1417>, 374, 374, 374,
+  <1402,1418,1417>, 374, 374, 374,
+  <1402,1403,1418>, 374, 374, 374,
+  <1403,1419,1418>, 374, 374, 374,
+  <1403,1404,1419>, 374, 374, 374,
+  <1404,1420,1419>, 374, 374, 374,
+  <1404,1405,1420>, 374, 374, 374,
+  <1405,1421,1420>, 374, 374, 374,
+  <1405,1406,1421>, 374, 374, 374,
+  <1406,1422,1421>, 374, 374, 374,
+  <1406,1407,1422>, 374, 374, 374,
+  <1407,1423,1422>, 374, 374, 374,
+  <1407,1408,1423>, 374, 374, 374,
+  <1408,1424,1423>, 374, 374, 374,
+  <1408,1393,1424>, 374, 374, 374,
+  <1393,1409,1424>, 374, 374, 374,
+  <1409,1410,1425>, 374, 374, 374,
+  <1410,1426,1425>, 374, 374, 374,
+  <1410,1411,1426>, 374, 374, 374,
+  <1411,1427,1426>, 374, 374, 374,
+  <1411,1412,1427>, 374, 374, 374,
+  <1412,1428,1427>, 374, 374, 374,
+  <1412,1413,1428>, 374, 374, 374,
+  <1413,1429,1428>, 374, 374, 374,
+  <1413,1414,1429>, 374, 374, 374,
+  <1414,1430,1429>, 374, 374, 374,
+  <1414,1415,1430>, 374, 374, 374,
+  <1415,1431,1430>, 374, 374, 374,
+  <1415,1416,1431>, 374, 374, 374,
+  <1416,1432,1431>, 374, 374, 374,
+  <1416,1417,1432>, 374, 374, 374,
+  <1417,1433,1432>, 374, 374, 374,
+  <1417,1418,1433>, 374, 374, 374,
+  <1418,1434,1433>, 374, 374, 374,
+  <1418,1419,1434>, 374, 374, 374,
+  <1419,1435,1434>, 374, 374, 374,
+  <1419,1420,1435>, 374, 374, 374,
+  <1420,1436,1435>, 374, 374, 374,
+  <1420,1421,1436>, 374, 374, 374,
+  <1421,1437,1436>, 374, 374, 374,
+  <1421,1422,1437>, 374, 374, 374,
+  <1422,1438,1437>, 374, 374, 374,
+  <1422,1423,1438>, 374, 374, 374,
+  <1423,1439,1438>, 374, 374, 374,
+  <1423,1424,1439>, 374, 374, 374,
+  <1424,1440,1439>, 374, 374, 374,
+  <1424,1409,1440>, 374, 374, 374,
+  <1409,1425,1440>, 374, 374, 374,
+  <1425,1426,1441>, 374, 374, 374,
+  <1426,1442,1441>, 374, 374, 374,
+  <1426,1427,1442>, 374, 374, 374,
+  <1427,1443,1442>, 374, 374, 374,
+  <1427,1428,1443>, 374, 374, 374,
+  <1428,1444,1443>, 374, 374, 374,
+  <1428,1429,1444>, 374, 374, 374,
+  <1429,1445,1444>, 374, 374, 374,
+  <1429,1430,1445>, 374, 374, 374,
+  <1430,1446,1445>, 374, 374, 374,
+  <1430,1431,1446>, 374, 374, 374,
+  <1431,1447,1446>, 374, 374, 374,
+  <1431,1432,1447>, 374, 374, 374,
+  <1432,1448,1447>, 374, 374, 374,
+  <1432,1433,1448>, 374, 374, 374,
+  <1433,1449,1448>, 374, 374, 374,
+  <1433,1434,1449>, 374, 374, 374,
+  <1434,1450,1449>, 374, 374, 374,
+  <1434,1435,1450>, 374, 374, 374,
+  <1435,1451,1450>, 374, 374, 374,
+  <1435,1436,1451>, 374, 374, 374,
+  <1436,1452,1451>, 374, 374, 374,
+  <1436,1437,1452>, 374, 374, 374,
+  <1437,1453,1452>, 374, 374, 374,
+  <1437,1438,1453>, 374, 374, 374,
+  <1438,1454,1453>, 374, 374, 374,
+  <1438,1439,1454>, 374, 374, 374,
+  <1439,1455,1454>, 374, 374, 374,
+  <1439,1440,1455>, 374, 374, 374,
+  <1440,1456,1455>, 374, 374, 374,
+  <1440,1425,1456>, 374, 374, 374,
+  <1425,1441,1456>, 374, 374, 374,
+  <1441,1442,1457>, 374, 374, 374,
+  <1442,1458,1457>, 374, 374, 374,
+  <1442,1443,1458>, 374, 374, 374,
+  <1443,1459,1458>, 374, 374, 374,
+  <1443,1444,1459>, 374, 374, 374,
+  <1444,1460,1459>, 374, 374, 374,
+  <1444,1445,1460>, 374, 374, 374,
+  <1445,1461,1460>, 374, 374, 374,
+  <1445,1446,1461>, 374, 374, 374,
+  <1446,1462,1461>, 374, 374, 374,
+  <1446,1447,1462>, 374, 374, 374,
+  <1447,1463,1462>, 374, 374, 374,
+  <1447,1448,1463>, 374, 374, 374,
+  <1448,1464,1463>, 374, 374, 374,
+  <1448,1449,1464>, 374, 374, 374,
+  <1449,1465,1464>, 374, 374, 374,
+  <1449,1450,1465>, 374, 374, 374,
+  <1450,1466,1465>, 374, 374, 374,
+  <1450,1451,1466>, 374, 374, 374,
+  <1451,1467,1466>, 374, 374, 374,
+  <1451,1452,1467>, 374, 374, 374,
+  <1452,1468,1467>, 374, 374, 374,
+  <1452,1453,1468>, 374, 374, 374,
+  <1453,1469,1468>, 374, 374, 374,
+  <1453,1454,1469>, 374, 374, 374,
+  <1454,1470,1469>, 374, 374, 374,
+  <1454,1455,1470>, 374, 374, 374,
+  <1455,1471,1470>, 374, 374, 374,
+  <1455,1456,1471>, 374, 374, 374,
+  <1456,1472,1471>, 374, 374, 374,
+  <1456,1441,1472>, 374, 374, 374,
+  <1441,1457,1472>, 374, 374, 374,
+  <1457,1458,1473>, 374, 374, 374,
+  <1458,1474,1473>, 374, 374, 374,
+  <1458,1459,1474>, 374, 374, 374,
+  <1459,1475,1474>, 374, 374, 374,
+  <1459,1460,1475>, 374, 374, 374,
+  <1460,1476,1475>, 374, 374, 374,
+  <1460,1461,1476>, 374, 374, 374,
+  <1461,1477,1476>, 374, 374, 374,
+  <1461,1462,1477>, 374, 374, 374,
+  <1462,1478,1477>, 374, 374, 374,
+  <1462,1463,1478>, 374, 374, 374,
+  <1463,1479,1478>, 374, 374, 374,
+  <1463,1464,1479>, 374, 374, 374,
+  <1464,1480,1479>, 374, 374, 374,
+  <1464,1465,1480>, 374, 374, 374,
+  <1465,1481,1480>, 374, 374, 374,
+  <1465,1466,1481>, 374, 374, 374,
+  <1466,1482,1481>, 374, 374, 374,
+  <1466,1467,1482>, 374, 374, 374,
+  <1467,1483,1482>, 374, 374, 374,
+  <1467,1468,1483>, 374, 374, 374,
+  <1468,1484,1483>, 374, 374, 374,
+  <1468,1469,1484>, 374, 374, 374,
+  <1469,1485,1484>, 374, 374, 374,
+  <1469,1470,1485>, 374, 374, 374,
+  <1470,1486,1485>, 374, 374, 374,
+  <1470,1471,1486>, 374, 374, 374,
+  <1471,1487,1486>, 374, 374, 374,
+  <1471,1472,1487>, 374, 374, 374,
+  <1472,1488,1487>, 374, 374, 374,
+  <1472,1457,1488>, 374, 374, 374,
+  <1457,1473,1488>, 374, 374, 374,
+  <1473,1474,1489>, 374, 374, 374,
+  <1474,1490,1489>, 374, 374, 374,
+  <1474,1475,1490>, 374, 374, 374,
+  <1475,1491,1490>, 374, 374, 374,
+  <1475,1476,1491>, 374, 374, 374,
+  <1476,1492,1491>, 374, 374, 374,
+  <1476,1477,1492>, 374, 374, 374,
+  <1477,1493,1492>, 374, 374, 374,
+  <1477,1478,1493>, 374, 374, 374,
+  <1478,1494,1493>, 374, 374, 374,
+  <1478,1479,1494>, 374, 374, 374,
+  <1479,1495,1494>, 374, 374, 374,
+  <1479,1480,1495>, 374, 374, 374,
+  <1480,1496,1495>, 374, 374, 374,
+  <1480,1481,1496>, 374, 374, 374,
+  <1481,1497,1496>, 374, 374, 374,
+  <1481,1482,1497>, 374, 374, 374,
+  <1482,1498,1497>, 374, 374, 374,
+  <1482,1483,1498>, 374, 374, 374,
+  <1483,1499,1498>, 374, 374, 374,
+  <1483,1484,1499>, 374, 374, 374,
+  <1484,1500,1499>, 374, 374, 374,
+  <1484,1485,1500>, 374, 374, 374,
+  <1485,1501,1500>, 374, 374, 374,
+  <1485,1486,1501>, 374, 374, 374,
+  <1486,1502,1501>, 374, 374, 374,
+  <1486,1487,1502>, 374, 374, 374,
+  <1487,1503,1502>, 374, 374, 374,
+  <1487,1488,1503>, 374, 374, 374,
+  <1488,1504,1503>, 374, 374, 374,
+  <1488,1473,1504>, 374, 374, 374,
+  <1473,1489,1504>, 374, 374, 374,
+  <1489,1490,1505>, 374, 374, 374,
+  <1490,1506,1505>, 374, 374, 374,
+  <1490,1491,1506>, 374, 374, 374,
+  <1491,1507,1506>, 374, 374, 374,
+  <1491,1492,1507>, 374, 374, 374,
+  <1492,1508,1507>, 374, 374, 374,
+  <1492,1493,1508>, 374, 374, 374,
+  <1493,1509,1508>, 374, 374, 374,
+  <1493,1494,1509>, 374, 374, 374,
+  <1494,1510,1509>, 374, 374, 374,
+  <1494,1495,1510>, 374, 374, 374,
+  <1495,1511,1510>, 374, 374, 374,
+  <1495,1496,1511>, 374, 374, 374,
+  <1496,1512,1511>, 374, 374, 374,
+  <1496,1497,1512>, 374, 374, 374,
+  <1497,1513,1512>, 374, 374, 374,
+  <1497,1498,1513>, 374, 374, 374,
+  <1498,1514,1513>, 374, 374, 374,
+  <1498,1499,1514>, 374, 374, 374,
+  <1499,1515,1514>, 374, 374, 374,
+  <1499,1500,1515>, 374, 374, 374,
+  <1500,1516,1515>, 374, 374, 374,
+  <1500,1501,1516>, 374, 374, 374,
+  <1501,1517,1516>, 374, 374, 374,
+  <1501,1502,1517>, 374, 374, 374,
+  <1502,1518,1517>, 374, 374, 374,
+  <1502,1503,1518>, 374, 374, 374,
+  <1503,1519,1518>, 374, 374, 374,
+  <1503,1504,1519>, 374, 374, 374,
+  <1504,1520,1519>, 374, 374, 374,
+  <1504,1489,1520>, 374, 374, 374,
+  <1489,1505,1520>, 374, 374, 374,
+  <1505,1506,1536>, 374, 374, 374,
+  <1506,1521,1536>, 374, 374, 374,
+  <1506,1507,1521>, 374, 374, 374,
+  <1507,1522,1521>, 374, 374, 374,
+  <1507,1508,1522>, 374, 374, 374,
+  <1508,1523,1522>, 374, 374, 374,
+  <1508,1509,1523>, 374, 374, 374,
+  <1509,1524,1523>, 374, 374, 374,
+  <1509,1510,1524>, 374, 374, 374,
+  <1510,1525,1524>, 374, 374, 374,
+  <1510,1511,1525>, 374, 374, 374,
+  <1511,1526,1525>, 374, 374, 374,
+  <1511,1512,1526>, 374, 374, 374,
+  <1512,1527,1526>, 374, 374, 374,
+  <1512,1513,1527>, 374, 374, 374,
+  <1513,1528,1527>, 374, 374, 374,
+  <1513,1514,1528>, 374, 374, 374,
+  <1514,1529,1528>, 374, 374, 374,
+  <1514,1515,1529>, 374, 374, 374,
+  <1515,1530,1529>, 374, 374, 374,
+  <1515,1516,1530>, 374, 374, 374,
+  <1516,1531,1530>, 374, 374, 374,
+  <1516,1517,1531>, 374, 374, 374,
+  <1517,1532,1531>, 374, 374, 374,
+  <1517,1518,1532>, 374, 374, 374,
+  <1518,1533,1532>, 374, 374, 374,
+  <1518,1519,1533>, 374, 374, 374,
+  <1519,1534,1533>, 374, 374, 374,
+  <1519,1520,1534>, 374, 374, 374,
+  <1520,1535,1534>, 374, 374, 374,
+  <1520,1505,1535>, 374, 374, 374,
+  <1505,1536,1535>, 374, 374, 374,
+  <1521,1522,1537>, 374, 374, 374,
+  <1522,1538,1537>, 374, 374, 374,
+  <1522,1523,1538>, 374, 374, 374,
+  <1523,1539,1538>, 374, 374, 374,
+  <1523,1524,1539>, 374, 374, 374,
+  <1524,1540,1539>, 374, 374, 374,
+  <1524,1525,1540>, 374, 374, 374,
+  <1525,1541,1540>, 374, 374, 374,
+  <1525,1526,1541>, 374, 374, 374,
+  <1526,1542,1541>, 374, 374, 374,
+  <1526,1527,1542>, 374, 374, 374,
+  <1527,1543,1542>, 374, 374, 374,
+  <1527,1528,1543>, 374, 374, 374,
+  <1528,1544,1543>, 374, 374, 374,
+  <1528,1529,1544>, 374, 374, 374,
+  <1529,1545,1544>, 374, 374, 374,
+  <1529,1530,1545>, 374, 374, 374,
+  <1530,1546,1545>, 374, 374, 374,
+  <1530,1531,1546>, 374, 374, 374,
+  <1531,1547,1546>, 374, 374, 374,
+  <1531,1532,1547>, 374, 374, 374,
+  <1532,1548,1547>, 374, 374, 374,
+  <1532,1533,1548>, 374, 374, 374,
+  <1533,1549,1548>, 374, 374, 374,
+  <1533,1534,1549>, 374, 374, 374,
+  <1534,1550,1549>, 374, 374, 374,
+  <1534,1535,1550>, 374, 374, 374,
+  <1535,1551,1550>, 374, 374, 374,
+  <1535,1536,1551>, 374, 374, 374,
+  <1536,1552,1551>, 374, 374, 374,
+  <1536,1521,1552>, 374, 374, 374,
+  <1521,1537,1552>, 374, 374, 374,
+  <1553,1537,1538>, 374, 374, 374,
+  <1553,1538,1539>, 374, 374, 374,
+  <1553,1539,1540>, 374, 374, 374,
+  <1553,1540,1541>, 374, 374, 374,
+  <1553,1541,1542>, 374, 374, 374,
+  <1553,1542,1543>, 374, 374, 374,
+  <1553,1543,1544>, 374, 374, 374,
+  <1553,1544,1545>, 374, 374, 374,
+  <1553,1545,1546>, 374, 374, 374,
+  <1553,1546,1547>, 374, 374, 374,
+  <1553,1547,1548>, 374, 374, 374,
+  <1553,1548,1549>, 374, 374, 374,
+  <1553,1549,1550>, 374, 374, 374,
+  <1553,1550,1551>, 374, 374, 374,
+  <1553,1551,1552>, 374, 374, 374,
+  <1553,1552,1537>, 374, 374, 374
+ }
+}
+}
diff --git a/modules/gfx/tests/testfiles/pov_cpk_std.inc b/modules/gfx/tests/testfiles/pov_cpk_std.inc
new file mode 100644
index 0000000000000000000000000000000000000000..6e500e75c2b36b42c5a86f7a3e63e0b285516c76
--- /dev/null
+++ b/modules/gfx/tests/testfiles/pov_cpk_std.inc
@@ -0,0 +1,76 @@
+#declare _Helix = object {
+#if (_Helix_merge)
+ merge {
+#else
+ union {
+#end
+ sphere {<20.817999,21.098000,88.432999>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<19.945000,21.644001,89.473000>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.631001,22.188000,88.916000>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.615000,23.184999,88.193993>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.527000,21.546001,89.274994>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.217001,21.962000,88.793991>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.943999,23.448000,89.020996>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.393001,24.129002,88.158005>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.329000,23.954998,90.187004>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.097000,25.362000,90.505997>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.796001,26.271000,89.505997>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.200001,27.223001,89.000999>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.062000,25.976000,89.226997>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.843000,26.772001,88.283997>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.215000,26.692001,86.893997>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.210001,27.664999,86.143997>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.674000,25.523001,86.567001>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.037001,25.306000,85.277000>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.785000,26.169001,85.133995>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.634000,26.889999,84.147003>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.893001,26.108000,86.117004>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.664001,26.894999,86.059006>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.936999,28.400000,86.059006>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.202000,29.176001,85.442001>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.985000,28.819000,86.758003>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.316000,30.231001,86.795990>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.752000,30.657000,85.408005>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.227000,31.623001,84.852005>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.712002,29.917999,84.856003>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.252001,30.191000,83.530998>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.169001,30.403000,82.474998>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.150000,31.422001,81.782997>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.265000,29.438000,82.361000>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.189000,29.507000,81.384003>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.238000,30.673000,81.619003>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.861001,31.368999,80.679001>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.843000,30.880999,82.868004>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.933999,31.969000,83.200996>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.553000,33.334999,82.885002>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.873000,34.232998,82.393997>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.844000,33.483002,83.159996>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.533999,34.741001,82.913002>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.619000,35.072998,81.427002>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.327001,36.200001,81.017006>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.021001,34.094002,80.621994>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.134000,34.288002,79.182999>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.766000,34.551998,78.573997>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.641001,35.312996,77.612999>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.738000,33.925003,79.134995>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.384000,34.124001,78.639000>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.957000,35.577999,78.779999>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.205999,36.089001,77.953003>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.431999,36.243000,79.830002>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.075999,37.636997,80.051003>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.948000,38.558998,79.219002>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.502000,39.622997,78.803001>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.189000,38.151997,78.972000>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.096000,38.966003,78.169998>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.787000,38.836998,76.680000>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.929999,39.801998,75.931999>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.367001,37.648998,76.250000>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.073000,37.420002,74.834999>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.604000,37.230999,74.487007>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.191001,37.531998,73.372002>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.817000,36.722000,75.427002>, _Helix_rf*1.550000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<9.413000,36.492001,75.148003>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<9.199000,35.091000,74.605995>, _Helix_rf*1.750000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<8.073000,34.602997,74.550003>, _Helix_rf*1.520000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ }
+}
diff --git a/modules/gfx/tests/testfiles/pov_custom_std.inc b/modules/gfx/tests/testfiles/pov_custom_std.inc
new file mode 100644
index 0000000000000000000000000000000000000000..99e67016e485088e9014716e5326096849a4700b
--- /dev/null
+++ b/modules/gfx/tests/testfiles/pov_custom_std.inc
@@ -0,0 +1,210 @@
+#declare _Helix = object {
+#if (_Helix_merge)
+ merge {
+#else
+ union {
+#end
+ sphere {<20.817999,21.098000,88.432999>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<19.945000,21.644001,89.473000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.631001,22.188000,88.916000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.615000,23.184999,88.193993>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.527000,21.546001,89.274994>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.217001,21.962000,88.793991>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.943999,23.448000,89.020996>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.393001,24.129002,88.158005>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.329000,23.954998,90.187004>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.097000,25.362000,90.505997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.796001,26.271000,89.505997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.200001,27.223001,89.000999>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.062000,25.976000,89.226997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.843000,26.772001,88.283997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.215000,26.692001,86.893997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.210001,27.664999,86.143997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.674000,25.523001,86.567001>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.037001,25.306000,85.277000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.785000,26.169001,85.133995>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.634000,26.889999,84.147003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.893001,26.108000,86.117004>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.664001,26.894999,86.059006>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.936999,28.400000,86.059006>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.202000,29.176001,85.442001>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.985000,28.819000,86.758003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.316000,30.231001,86.795990>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.752000,30.657000,85.408005>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.227000,31.623001,84.852005>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.712002,29.917999,84.856003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.252001,30.191000,83.530998>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.169001,30.403000,82.474998>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.150000,31.422001,81.782997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.265000,29.438000,82.361000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.189000,29.507000,81.384003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.238000,30.673000,81.619003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.861001,31.368999,80.679001>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.843000,30.880999,82.868004>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.933999,31.969000,83.200996>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.553000,33.334999,82.885002>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.873000,34.232998,82.393997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.844000,33.483002,83.159996>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.533999,34.741001,82.913002>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.619000,35.072998,81.427002>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.327001,36.200001,81.017006>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.021001,34.094002,80.621994>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.134000,34.288002,79.182999>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.766000,34.551998,78.573997>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.641001,35.312996,77.612999>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.738000,33.925003,79.134995>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.384000,34.124001,78.639000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.957000,35.577999,78.779999>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.205999,36.089001,77.953003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.431999,36.243000,79.830002>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.075999,37.636997,80.051003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.948000,38.558998,79.219002>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.502000,39.622997,78.803001>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.189000,38.151997,78.972000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.096000,38.966003,78.169998>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.787000,38.836998,76.680000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.929999,39.801998,75.931999>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.367001,37.648998,76.250000>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.073000,37.420002,74.834999>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.604000,37.230999,74.487007>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.191001,37.531998,73.372002>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.817000,36.722000,75.427002>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<9.413000,36.492001,75.148003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<9.199000,35.091000,74.605995>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<8.073000,34.602997,74.550003>, _Helix_rf*0.250000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<19.945000,21.644001,89.473000>, <19.288000,21.916000,89.194504>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<19.288000,21.916000,89.194504>, <18.631001,22.188000,88.916000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.631001,22.188000,88.916000>, <18.623001,22.686501,88.554993>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.623001,22.686501,88.554993>, <18.615000,23.184999,88.193993>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<20.817999,21.098000,88.432999>, <20.381500,21.371000,88.953003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<20.381500,21.371000,88.953003>, <19.945000,21.644001,89.473000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.217001,21.962000,88.793991>, <16.080500,22.705000,88.907494>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.080500,22.705000,88.907494>, <15.943999,23.448000,89.020996>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.943999,23.448000,89.020996>, <15.668500,23.788502,88.589500>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.668500,23.788502,88.589500>, <15.393001,24.129002,88.158005>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.631001,22.188000,88.916000>, <18.079000,21.867001,89.095497>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.079000,21.867001,89.095497>, <17.527000,21.546001,89.274994>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.527000,21.546001,89.274994>, <16.872002,21.754002,89.034492>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.872002,21.754002,89.034492>, <16.217001,21.962000,88.793991>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.329000,23.954998,90.187004>, <16.213001,24.658499,90.346497>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.213001,24.658499,90.346497>, <16.097000,25.362000,90.505997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.943999,23.448000,89.020996>, <16.136499,23.701500,89.604004>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.136499,23.701500,89.604004>, <16.329000,23.954998,90.187004>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.097000,25.362000,90.505997>, <16.446501,25.816500,90.005997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.446501,25.816500,90.005997>, <16.796001,26.271000,89.505997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.796001,26.271000,89.505997>, <16.498001,26.747002,89.253494>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.498001,26.747002,89.253494>, <16.200001,27.223001,89.000999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.062000,25.976000,89.226997>, <18.452499,26.374001,88.755493>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.452499,26.374001,88.755493>, <18.843000,26.772001,88.283997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.843000,26.772001,88.283997>, <18.528999,26.732002,87.588997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.528999,26.732002,87.588997>, <18.215000,26.692001,86.893997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.674000,25.523001,86.567001>, <17.355499,25.414501,85.921997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.355499,25.414501,85.921997>, <17.037001,25.306000,85.277000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.215000,26.692001,86.893997>, <18.212502,27.178501,86.518997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.212502,27.178501,86.518997>, <18.210001,27.664999,86.143997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.796001,26.271000,89.505997>, <17.429001,26.123501,89.366501>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.429001,26.123501,89.366501>, <18.062000,25.976000,89.226997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.037001,25.306000,85.277000>, <16.410999,25.737499,85.205498>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.410999,25.737499,85.205498>, <15.785000,26.169001,85.133995>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.215000,26.692001,86.893997>, <17.944500,26.107502,86.730499>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.944500,26.107502,86.730499>, <17.674000,25.523001,86.567001>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.664001,26.894999,86.059006>, <13.800500,27.647499,86.059006>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.800500,27.647499,86.059006>, <13.936999,28.400000,86.059006>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.785000,26.169001,85.133995>, <15.709499,26.529499,84.640503>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.709499,26.529499,84.640503>, <15.634000,26.889999,84.147003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.893001,26.108000,86.117004>, <14.278501,26.501499,86.088005>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.278501,26.501499,86.088005>, <13.664001,26.894999,86.059006>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.712002,29.917999,84.856003>, <16.982002,30.054501,84.193497>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.982002,30.054501,84.193497>, <17.252001,30.191000,83.530998>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.252001,30.191000,83.530998>, <16.710501,30.297001,83.002998>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.710501,30.297001,83.002998>, <16.169001,30.403000,82.474998>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.936999,28.400000,86.059006>, <13.569500,28.788000,85.750504>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.569500,28.788000,85.750504>, <13.202000,29.176001,85.442001>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.985000,28.819000,86.758003>, <15.150499,29.525002,86.776993>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.150499,29.525002,86.776993>, <15.316000,30.231001,86.795990>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.316000,30.231001,86.795990>, <15.534000,30.444000,86.101997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.534000,30.444000,86.101997>, <15.752000,30.657000,85.408005>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.785000,26.169001,85.133995>, <15.339001,26.138500,85.625504>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.339001,26.138500,85.625504>, <14.893001,26.108000,86.117004>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.752000,30.657000,85.408005>, <15.489500,31.139999,85.130005>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.489500,31.139999,85.130005>, <15.227000,31.623001,84.852005>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.936999,28.400000,86.059006>, <14.460999,28.609501,86.408508>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.460999,28.609501,86.408508>, <14.985000,28.819000,86.758003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.752000,30.657000,85.408005>, <16.232000,30.287498,85.132004>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.232000,30.287498,85.132004>, <16.712002,29.917999,84.856003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.265000,29.438000,82.361000>, <14.727000,29.472500,81.872498>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.727000,29.472500,81.872498>, <14.189000,29.507000,81.384003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.169001,30.403000,82.474998>, <16.159500,30.912500,82.128998>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.159500,30.912500,82.128998>, <16.150000,31.422001,81.782997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.189000,29.507000,81.384003>, <13.713500,30.090000,81.501503>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.713500,30.090000,81.501503>, <13.238000,30.673000,81.619003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.843000,30.880999,82.868004>, <12.388500,31.424999,83.034500>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.388500,31.424999,83.034500>, <11.933999,31.969000,83.200996>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.169001,30.403000,82.474998>, <15.717001,29.920500,82.417999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.717001,29.920500,82.417999>, <15.265000,29.438000,82.361000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.238000,30.673000,81.619003>, <13.049500,31.021000,81.149002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.049500,31.021000,81.149002>, <12.861001,31.368999,80.679001>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.844000,33.483002,83.159996>, <14.188999,34.112000,83.036499>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.188999,34.112000,83.036499>, <14.533999,34.741001,82.913002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.933999,31.969000,83.200996>, <12.243500,32.652000,83.042999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.243500,32.652000,83.042999>, <12.553000,33.334999,82.885002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.553000,33.334999,82.885002>, <12.213000,33.783997,82.639496>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.213000,33.783997,82.639496>, <11.873000,34.232998,82.393997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.619000,35.072998,81.427002>, <14.473001,35.636497,81.222000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.473001,35.636497,81.222000>, <14.327001,36.200001,81.017006>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.238000,30.673000,81.619003>, <13.040501,30.777000,82.243500>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.040501,30.777000,82.243500>, <12.843000,30.880999,82.868004>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.533999,34.741001,82.913002>, <14.576500,34.906998,82.169998>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.576500,34.906998,82.169998>, <14.619000,35.072998,81.427002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.553000,33.334999,82.885002>, <13.198500,33.409000,83.022499>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.198500,33.409000,83.022499>, <13.844000,33.483002,83.159996>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.766000,34.551998,78.573997>, <13.703501,34.932495,78.093498>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.703501,34.932495,78.093498>, <13.641001,35.312996,77.612999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.134000,34.288002,79.182999>, <14.450000,34.419998,78.878494>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.450000,34.419998,78.878494>, <13.766000,34.551998,78.573997>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.619000,35.072998,81.427002>, <14.820001,34.583500,81.024498>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.820001,34.583500,81.024498>, <15.021001,34.094002,80.621994>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.738000,33.925003,79.134995>, <12.061000,34.024502,78.886993>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.061000,34.024502,78.886993>, <11.384000,34.124001,78.639000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.021001,34.094002,80.621994>, <15.077500,34.191002,79.902496>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.077500,34.191002,79.902496>, <15.134000,34.288002,79.182999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.384000,34.124001,78.639000>, <11.170500,34.850998,78.709503>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.170500,34.850998,78.709503>, <10.957000,35.577999,78.779999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.766000,34.551998,78.573997>, <13.252000,34.238503,78.854492>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.252000,34.238503,78.854492>, <12.738000,33.925003,79.134995>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.948000,38.558998,79.219002>, <11.725000,39.090996,79.011002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.725000,39.090996,79.011002>, <11.502000,39.622997,78.803001>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.957000,35.577999,78.779999>, <10.581499,35.833500,78.366501>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.581499,35.833500,78.366501>, <10.205999,36.089001,77.953003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.431999,36.243000,79.830002>, <11.254000,36.939999,79.940506>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.254000,36.939999,79.940506>, <11.075999,37.636997,80.051003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.096000,38.966003,78.169998>, <13.941500,38.901501,77.425003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.941500,38.901501,77.425003>, <13.787000,38.836998,76.680000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.948000,38.558998,79.219002>, <12.568501,38.355499,79.095505>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.568501,38.355499,79.095505>, <13.189000,38.151997,78.972000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.367001,37.648998,76.250000>, <13.220000,37.534500,75.542496>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.220000,37.534500,75.542496>, <13.073000,37.420002,74.834999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.075999,37.636997,80.051003>, <11.511999,38.098000,79.635002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.511999,38.098000,79.635002>, <11.948000,38.558998,79.219002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.787000,38.836998,76.680000>, <13.858500,39.319496,76.306000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.858500,39.319496,76.306000>, <13.929999,39.801998,75.931999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.957000,35.577999,78.779999>, <11.194500,35.910500,79.305000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.194500,35.910500,79.305000>, <11.431999,36.243000,79.830002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.189000,38.151997,78.972000>, <13.642500,38.558998,78.570999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.642500,38.558998,78.570999>, <14.096000,38.966003,78.169998>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.604000,37.230999,74.487007>, <11.397501,37.381500,73.929504>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.397501,37.381500,73.929504>, <11.191001,37.531998,73.372002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.817000,36.722000,75.427002>, <10.115000,36.607002,75.287506>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.115000,36.607002,75.287506>, <9.413000,36.492001,75.148003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.073000,37.420002,74.834999>, <12.338500,37.325500,74.661003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.338500,37.325500,74.661003>, <11.604000,37.230999,74.487007>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.787000,38.836998,76.680000>, <13.577000,38.242996,76.464996>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.577000,38.242996,76.464996>, <13.367001,37.648998,76.250000>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<9.413000,36.492001,75.148003>, <9.306000,35.791500,74.876999>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<9.306000,35.791500,74.876999>, <9.199000,35.091000,74.605995>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<9.199000,35.091000,74.605995>, <8.636000,34.847000,74.578003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<8.636000,34.847000,74.578003>, <8.073000,34.602997,74.550003>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.604000,37.230999,74.487007>, <11.210501,36.976501,74.957001>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.210501,36.976501,74.957001>, <10.817000,36.722000,75.427002>, _Helix_rf*0.250000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ }
+}
diff --git a/modules/gfx/tests/testfiles/pov_line_trace_std.inc b/modules/gfx/tests/testfiles/pov_line_trace_std.inc
new file mode 100644
index 0000000000000000000000000000000000000000..f166fe3d0c4a4e584c8ef0a45c99b83c5eecceee
--- /dev/null
+++ b/modules/gfx/tests/testfiles/pov_line_trace_std.inc
@@ -0,0 +1,558 @@
+#declare _Helix = object {
+mesh2 {
+ vertex_vectors { 17,
+  <19.945000,21.644001,89.473000>,
+  <16.217001,21.962000,88.793991>,
+  <16.097000,25.362000,90.505997>,
+  <18.843000,26.772001,88.283997>,
+  <17.037001,25.306000,85.277000>,
+  <13.664001,26.894999,86.059006>,
+  <15.316000,30.231001,86.795990>,
+  <17.252001,30.191000,83.530998>,
+  <14.189000,29.507000,81.384003>,
+  <11.933999,31.969000,83.200996>,
+  <14.533999,34.741001,82.913002>,
+  <15.134000,34.288002,79.182999>,
+  <11.384000,34.124001,78.639000>,
+  <11.075999,37.636997,80.051003>,
+  <14.096000,38.966003,78.169998>,
+  <13.073000,37.420002,74.834999>,
+  <9.413000,36.492001,75.148003>
+ }
+ normal_vectors { 17,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>
+ }
+ texture_list { 512,
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+ }
+ face_indices { 0
+ }
+}
+}
diff --git a/modules/gfx/tests/testfiles/pov_simple_std.inc b/modules/gfx/tests/testfiles/pov_simple_std.inc
new file mode 100644
index 0000000000000000000000000000000000000000..d87a7a3436fa71caab7a5f6d99b320f3643bd7a3
--- /dev/null
+++ b/modules/gfx/tests/testfiles/pov_simple_std.inc
@@ -0,0 +1,210 @@
+#declare _Helix = object {
+#if (_Helix_merge)
+ merge {
+#else
+ union {
+#end
+ sphere {<20.817999,21.098000,88.432999>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<19.945000,21.644001,89.473000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.631001,22.188000,88.916000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.615000,23.184999,88.193993>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.527000,21.546001,89.274994>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.217001,21.962000,88.793991>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.943999,23.448000,89.020996>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.393001,24.129002,88.158005>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.329000,23.954998,90.187004>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.097000,25.362000,90.505997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.796001,26.271000,89.505997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.200001,27.223001,89.000999>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.062000,25.976000,89.226997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.843000,26.772001,88.283997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.215000,26.692001,86.893997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.210001,27.664999,86.143997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.674000,25.523001,86.567001>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.037001,25.306000,85.277000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.785000,26.169001,85.133995>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.634000,26.889999,84.147003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.893001,26.108000,86.117004>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.664001,26.894999,86.059006>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.936999,28.400000,86.059006>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.202000,29.176001,85.442001>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.985000,28.819000,86.758003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.316000,30.231001,86.795990>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.752000,30.657000,85.408005>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.227000,31.623001,84.852005>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.712002,29.917999,84.856003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.252001,30.191000,83.530998>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.169001,30.403000,82.474998>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.150000,31.422001,81.782997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.265000,29.438000,82.361000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.189000,29.507000,81.384003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.238000,30.673000,81.619003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.861001,31.368999,80.679001>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.843000,30.880999,82.868004>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.933999,31.969000,83.200996>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.553000,33.334999,82.885002>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.873000,34.232998,82.393997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.844000,33.483002,83.159996>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.533999,34.741001,82.913002>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.619000,35.072998,81.427002>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.327001,36.200001,81.017006>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.021001,34.094002,80.621994>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.134000,34.288002,79.182999>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.766000,34.551998,78.573997>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.641001,35.312996,77.612999>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<12.738000,33.925003,79.134995>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.384000,34.124001,78.639000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.957000,35.577999,78.779999>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.205999,36.089001,77.953003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.431999,36.243000,79.830002>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.075999,37.636997,80.051003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.948000,38.558998,79.219002>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.502000,39.622997,78.803001>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.189000,38.151997,78.972000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.096000,38.966003,78.169998>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.787000,38.836998,76.680000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.929999,39.801998,75.931999>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.367001,37.648998,76.250000>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.073000,37.420002,74.834999>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.604000,37.230999,74.487007>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.191001,37.531998,73.372002>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<10.817000,36.722000,75.427002>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ sphere {<9.413000,36.492001,75.148003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<9.199000,35.091000,74.605995>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<8.073000,34.602997,74.550003>, _Helix_rf*0.100000 texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<20.817999,21.098000,88.432999>, <20.381500,21.371000,88.953003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<20.381500,21.371000,88.953003>, <19.945000,21.644001,89.473000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<19.945000,21.644001,89.473000>, <19.288000,21.916000,89.194504>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<19.288000,21.916000,89.194504>, <18.631001,22.188000,88.916000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.217001,21.962000,88.793991>, <16.080500,22.705000,88.907494>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.080500,22.705000,88.907494>, <15.943999,23.448000,89.020996>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.943999,23.448000,89.020996>, <15.668500,23.788502,88.589500>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.668500,23.788502,88.589500>, <15.393001,24.129002,88.158005>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.631001,22.188000,88.916000>, <18.623001,22.686501,88.554993>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.623001,22.686501,88.554993>, <18.615000,23.184999,88.193993>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.527000,21.546001,89.274994>, <16.872002,21.754002,89.034492>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.872002,21.754002,89.034492>, <16.217001,21.962000,88.793991>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.329000,23.954998,90.187004>, <16.213001,24.658499,90.346497>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.213001,24.658499,90.346497>, <16.097000,25.362000,90.505997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.631001,22.188000,88.916000>, <18.079000,21.867001,89.095497>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.079000,21.867001,89.095497>, <17.527000,21.546001,89.274994>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.062000,25.976000,89.226997>, <18.452499,26.374001,88.755493>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.452499,26.374001,88.755493>, <18.843000,26.772001,88.283997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.097000,25.362000,90.505997>, <16.446501,25.816500,90.005997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.446501,25.816500,90.005997>, <16.796001,26.271000,89.505997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.796001,26.271000,89.505997>, <16.498001,26.747002,89.253494>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.498001,26.747002,89.253494>, <16.200001,27.223001,89.000999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.843000,26.772001,88.283997>, <18.528999,26.732002,87.588997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.528999,26.732002,87.588997>, <18.215000,26.692001,86.893997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.943999,23.448000,89.020996>, <16.136499,23.701500,89.604004>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.136499,23.701500,89.604004>, <16.329000,23.954998,90.187004>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.037001,25.306000,85.277000>, <16.410999,25.737499,85.205498>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.410999,25.737499,85.205498>, <15.785000,26.169001,85.133995>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.215000,26.692001,86.893997>, <18.212502,27.178501,86.518997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.212502,27.178501,86.518997>, <18.210001,27.664999,86.143997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.796001,26.271000,89.505997>, <17.429001,26.123501,89.366501>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.429001,26.123501,89.366501>, <18.062000,25.976000,89.226997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.674000,25.523001,86.567001>, <17.355499,25.414501,85.921997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.355499,25.414501,85.921997>, <17.037001,25.306000,85.277000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.664001,26.894999,86.059006>, <13.800500,27.647499,86.059006>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.800500,27.647499,86.059006>, <13.936999,28.400000,86.059006>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.215000,26.692001,86.893997>, <17.944500,26.107502,86.730499>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.944500,26.107502,86.730499>, <17.674000,25.523001,86.567001>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.785000,26.169001,85.133995>, <15.709499,26.529499,84.640503>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.709499,26.529499,84.640503>, <15.634000,26.889999,84.147003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.893001,26.108000,86.117004>, <14.278501,26.501499,86.088005>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.278501,26.501499,86.088005>, <13.664001,26.894999,86.059006>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.985000,28.819000,86.758003>, <15.150499,29.525002,86.776993>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.150499,29.525002,86.776993>, <15.316000,30.231001,86.795990>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.316000,30.231001,86.795990>, <15.534000,30.444000,86.101997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.534000,30.444000,86.101997>, <15.752000,30.657000,85.408005>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.936999,28.400000,86.059006>, <13.569500,28.788000,85.750504>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.569500,28.788000,85.750504>, <13.202000,29.176001,85.442001>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.712002,29.917999,84.856003>, <16.982002,30.054501,84.193497>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.982002,30.054501,84.193497>, <17.252001,30.191000,83.530998>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.252001,30.191000,83.530998>, <16.710501,30.297001,83.002998>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.710501,30.297001,83.002998>, <16.169001,30.403000,82.474998>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.936999,28.400000,86.059006>, <14.460999,28.609501,86.408508>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.460999,28.609501,86.408508>, <14.985000,28.819000,86.758003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.785000,26.169001,85.133995>, <15.339001,26.138500,85.625504>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.339001,26.138500,85.625504>, <14.893001,26.108000,86.117004>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.752000,30.657000,85.408005>, <15.489500,31.139999,85.130005>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.489500,31.139999,85.130005>, <15.227000,31.623001,84.852005>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.752000,30.657000,85.408005>, <16.232000,30.287498,85.132004>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.232000,30.287498,85.132004>, <16.712002,29.917999,84.856003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.265000,29.438000,82.361000>, <14.727000,29.472500,81.872498>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.727000,29.472500,81.872498>, <14.189000,29.507000,81.384003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.169001,30.403000,82.474998>, <16.159500,30.912500,82.128998>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.159500,30.912500,82.128998>, <16.150000,31.422001,81.782997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.189000,29.507000,81.384003>, <13.713500,30.090000,81.501503>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.713500,30.090000,81.501503>, <13.238000,30.673000,81.619003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.169001,30.403000,82.474998>, <15.717001,29.920500,82.417999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.717001,29.920500,82.417999>, <15.265000,29.438000,82.361000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.843000,30.880999,82.868004>, <12.388500,31.424999,83.034500>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.388500,31.424999,83.034500>, <11.933999,31.969000,83.200996>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.238000,30.673000,81.619003>, <13.049500,31.021000,81.149002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.049500,31.021000,81.149002>, <12.861001,31.368999,80.679001>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.238000,30.673000,81.619003>, <13.040501,30.777000,82.243500>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.040501,30.777000,82.243500>, <12.843000,30.880999,82.868004>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.933999,31.969000,83.200996>, <12.243500,32.652000,83.042999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.243500,32.652000,83.042999>, <12.553000,33.334999,82.885002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.553000,33.334999,82.885002>, <12.213000,33.783997,82.639496>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.213000,33.783997,82.639496>, <11.873000,34.232998,82.393997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.844000,33.483002,83.159996>, <14.188999,34.112000,83.036499>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.188999,34.112000,83.036499>, <14.533999,34.741001,82.913002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.533999,34.741001,82.913002>, <14.576500,34.906998,82.169998>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.576500,34.906998,82.169998>, <14.619000,35.072998,81.427002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.619000,35.072998,81.427002>, <14.473001,35.636497,81.222000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.473001,35.636497,81.222000>, <14.327001,36.200001,81.017006>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.766000,34.551998,78.573997>, <13.703501,34.932495,78.093498>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.703501,34.932495,78.093498>, <13.641001,35.312996,77.612999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.553000,33.334999,82.885002>, <13.198500,33.409000,83.022499>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.198500,33.409000,83.022499>, <13.844000,33.483002,83.159996>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.021001,34.094002,80.621994>, <15.077500,34.191002,79.902496>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.077500,34.191002,79.902496>, <15.134000,34.288002,79.182999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.134000,34.288002,79.182999>, <14.450000,34.419998,78.878494>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.450000,34.419998,78.878494>, <13.766000,34.551998,78.573997>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.384000,34.124001,78.639000>, <11.170500,34.850998,78.709503>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.170500,34.850998,78.709503>, <10.957000,35.577999,78.779999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.619000,35.072998,81.427002>, <14.820001,34.583500,81.024498>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.820001,34.583500,81.024498>, <15.021001,34.094002,80.621994>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.738000,33.925003,79.134995>, <12.061000,34.024502,78.886993>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.061000,34.024502,78.886993>, <11.384000,34.124001,78.639000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.766000,34.551998,78.573997>, <13.252000,34.238503,78.854492>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.252000,34.238503,78.854492>, <12.738000,33.925003,79.134995>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.948000,38.558998,79.219002>, <11.725000,39.090996,79.011002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.725000,39.090996,79.011002>, <11.502000,39.622997,78.803001>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.957000,35.577999,78.779999>, <11.194500,35.910500,79.305000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.194500,35.910500,79.305000>, <11.431999,36.243000,79.830002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.957000,35.577999,78.779999>, <10.581499,35.833500,78.366501>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.581499,35.833500,78.366501>, <10.205999,36.089001,77.953003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.431999,36.243000,79.830002>, <11.254000,36.939999,79.940506>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.254000,36.939999,79.940506>, <11.075999,37.636997,80.051003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.787000,38.836998,76.680000>, <13.858500,39.319496,76.306000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.858500,39.319496,76.306000>, <13.929999,39.801998,75.931999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.075999,37.636997,80.051003>, <11.511999,38.098000,79.635002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.511999,38.098000,79.635002>, <11.948000,38.558998,79.219002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.189000,38.151997,78.972000>, <13.642500,38.558998,78.570999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.642500,38.558998,78.570999>, <14.096000,38.966003,78.169998>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.096000,38.966003,78.169998>, <13.941500,38.901501,77.425003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.941500,38.901501,77.425003>, <13.787000,38.836998,76.680000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.948000,38.558998,79.219002>, <12.568501,38.355499,79.095505>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.568501,38.355499,79.095505>, <13.189000,38.151997,78.972000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.073000,37.420002,74.834999>, <12.338500,37.325500,74.661003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.338500,37.325500,74.661003>, <11.604000,37.230999,74.487007>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.604000,37.230999,74.487007>, <11.397501,37.381500,73.929504>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.397501,37.381500,73.929504>, <11.191001,37.531998,73.372002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.817000,36.722000,75.427002>, <10.115000,36.607002,75.287506>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<10.115000,36.607002,75.287506>, <9.413000,36.492001,75.148003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.367001,37.648998,76.250000>, <13.220000,37.534500,75.542496>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.220000,37.534500,75.542496>, <13.073000,37.420002,74.834999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.604000,37.230999,74.487007>, <11.210501,36.976501,74.957001>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.210501,36.976501,74.957001>, <10.817000,36.722000,75.427002>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<9.413000,36.492001,75.148003>, <9.306000,35.791500,74.876999>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<9.306000,35.791500,74.876999>, <9.199000,35.091000,74.605995>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.787000,38.836998,76.680000>, <13.577000,38.242996,76.464996>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.577000,38.242996,76.464996>, <13.367001,37.648998,76.250000>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<9.199000,35.091000,74.605995>, <8.636000,34.847000,74.578003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<8.636000,34.847000,74.578003>, <8.073000,34.602997,74.550003>, _Helix_rf*0.100000 open texture { _Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}}
+ }
+}
diff --git a/modules/gfx/tests/testfiles/pov_sline_std.inc b/modules/gfx/tests/testfiles/pov_sline_std.inc
new file mode 100644
index 0000000000000000000000000000000000000000..365507247cc5e6e9c66a181b07c104836fb3910a
--- /dev/null
+++ b/modules/gfx/tests/testfiles/pov_sline_std.inc
@@ -0,0 +1,718 @@
+#declare _Helix = object {
+mesh2 {
+ vertex_vectors { 97,
+  <19.945000,21.644001,89.473000>,
+  <19.212208,21.550982,89.215630>,
+  <18.498526,21.482994,88.982986>,
+  <17.823057,21.465073,88.799782>,
+  <17.204908,21.522243,88.690727>,
+  <16.663185,21.679543,88.680565>,
+  <16.217001,21.962000,88.793991>,
+  <15.883054,22.383884,89.042091>,
+  <15.668437,22.916412,89.381317>,
+  <15.577835,23.520033,89.754501>,
+  <15.615936,24.155205,90.104462>,
+  <15.787430,24.782375,90.374031>,
+  <16.097000,25.362000,90.505997>,
+  <16.538811,25.859833,90.457443>,
+  <17.064920,26.262840,90.242447>,
+  <17.616861,26.563292,89.889290>,
+  <18.136166,26.753456,89.426292>,
+  <18.564367,26.825602,88.881760>,
+  <18.843000,26.772001,88.283997>,
+  <18.927195,26.593853,87.661835>,
+  <18.826479,26.328085,87.046181>,
+  <18.563974,26.020559,86.468452>,
+  <18.162809,25.717127,85.960060>,
+  <17.646109,25.463655,85.552437>,
+  <17.037001,25.306000,85.277000>,
+  <16.362896,25.280550,85.155441>,
+  <15.668392,25.385822,85.170563>,
+  <15.002369,25.610855,85.295410>,
+  <14.413705,25.944704,85.503067>,
+  <13.951289,26.376400,85.766571>,
+  <13.664001,26.894999,86.059006>,
+  <13.586650,27.484972,86.352890>,
+  <13.697765,28.112516,86.618584>,
+  <13.961802,28.739262,86.825905>,
+  <14.343219,29.326839,86.944702>,
+  <14.806465,29.836874,86.944786>,
+  <15.316000,30.231001,86.795990>,
+  <15.835805,30.480930,86.479446>,
+  <16.327951,30.598709,86.021568>,
+  <16.754045,30.606474,85.460068>,
+  <17.075684,30.526354,84.832649>,
+  <17.254469,30.380487,84.177063>,
+  <17.252001,30.191000,83.530998>,
+  <17.043346,29.980629,82.929482>,
+  <16.657429,29.774504,82.396751>,
+  <16.136644,29.598349,81.954308>,
+  <15.523381,29.477896,81.623688>,
+  <14.860037,29.438868,81.426407>,
+  <14.189000,29.507000,81.384003>,
+  <13.550619,29.700432,81.506943>,
+  <12.977076,30.006983,81.761520>,
+  <12.498507,30.406879,82.102966>,
+  <12.145045,30.880363,82.486549>,
+  <11.946831,31.407660,82.867470>,
+  <11.933999,31.969000,83.200996>,
+  <12.123243,32.543678,83.447983>,
+  <12.477486,33.107201,83.591728>,
+  <12.946202,33.634125,83.621178>,
+  <13.478876,34.099030,83.525253>,
+  <14.024983,34.476467,83.292892>,
+  <14.533999,34.741001,82.913002>,
+  <14.960752,34.875328,82.385025>,
+  <15.281425,34.894634,81.750366>,
+  <15.477555,34.822239,81.060944>,
+  <15.530673,34.681458,80.368622>,
+  <15.422310,34.495605,79.725342>,
+  <15.134000,34.288002,79.182999>,
+  <14.660203,34.083042,78.782761>,
+  <14.047105,33.909420,78.522934>,
+  <13.353824,33.796928,78.391068>,
+  <12.639467,33.775337,78.374756>,
+  <11.963153,33.874443,78.461533>,
+  <11.384000,34.124001,78.639000>,
+  <10.951005,34.540794,78.890717>,
+  <10.672736,35.089504,79.184326>,
+  <10.547647,35.721806,79.483513>,
+  <10.574193,36.389374,79.751907>,
+  <10.750826,37.043880,79.953186>,
+  <11.075999,37.636997,80.051003>,
+  <11.539078,38.128578,80.017075>,
+  <12.093057,38.511162,79.855331>,
+  <12.681831,38.785477,79.577774>,
+  <13.249315,38.952244,79.196365>,
+  <13.739404,39.012177,78.723114>,
+  <14.096000,38.966003,78.169998>,
+  <14.275891,38.818695,77.553589>,
+  <14.287378,38.592247,76.908768>,
+  <14.151648,38.312904,76.275040>,
+  <13.889884,38.006920,75.691841>,
+  <13.523272,37.700539,75.198677>,
+  <13.073000,37.420002,74.834999>,
+  <12.558451,37.185741,74.629021>,
+  <11.991838,36.994896,74.563843>,
+  <11.383575,36.838783,74.611320>,
+  <10.744071,36.708717,74.743279>,
+  <10.083740,36.596020,74.931557>,
+  <9.413000,36.492001,75.148003>
+ }
+ normal_vectors { 97,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>,
+  <0.000000,0.000000,0.000000>
+ }
+ texture_list { 512,
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.000000,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.000000,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.142857,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.142857,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.285714,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.285714,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.428571,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.428571,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.571429,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.571429,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.714286,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.714286,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.000000,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.142857,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.285714,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.428571,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.571429,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.714286,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,0.857143,_Helix_fi,_Helix_tp>}},
+  texture {_Helix_tex pigment {color rgbft <0.857143,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <0.857143,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.000000,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.142857,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.285714,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.428571,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.571429,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.714286,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,0.857143,1.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.000000,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.142857,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.285714,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.428571,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.571429,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.714286,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,0.857143,_Helix_fi,_Helix_tp>}}
+  texture {_Helix_tex pigment {color rgbft <1.000000,1.000000,1.000000,_Helix_fi,_Helix_tp>}}
+ }
+ face_indices { 0
+ }
+}
+}
diff --git a/modules/gfx/tests/testfiles/pov_trace_std.inc b/modules/gfx/tests/testfiles/pov_trace_std.inc
new file mode 100644
index 0000000000000000000000000000000000000000..696f9158e8cff3b4e3444e798f83aab45d9da3d3
--- /dev/null
+++ b/modules/gfx/tests/testfiles/pov_trace_std.inc
@@ -0,0 +1,57 @@
+#declare _Helix = object {
+#if (_Helix_merge)
+ merge {
+#else
+ union {
+#end
+ sphere {<19.945000,21.644001,89.473000>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.217001,21.962000,88.793991>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<19.945000,21.644001,89.473000>, <18.081001,21.803001,89.133499>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.081001,21.803001,89.133499>, <16.217001,21.962000,88.793991>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<16.097000,25.362000,90.505997>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.217001,21.962000,88.793991>, <16.157001,23.661999,89.649994>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.157001,23.661999,89.649994>, <16.097000,25.362000,90.505997>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<18.843000,26.772001,88.283997>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.097000,25.362000,90.505997>, <17.470001,26.067001,89.394997>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.470001,26.067001,89.394997>, <18.843000,26.772001,88.283997>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.037001,25.306000,85.277000>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<18.843000,26.772001,88.283997>, <17.940001,26.039001,86.780502>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.940001,26.039001,86.780502>, <17.037001,25.306000,85.277000>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.664001,26.894999,86.059006>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.037001,25.306000,85.277000>, <15.350500,26.100498,85.667999>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.350500,26.100498,85.667999>, <13.664001,26.894999,86.059006>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.316000,30.231001,86.795990>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.664001,26.894999,86.059006>, <14.490000,28.563000,86.427498>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.490000,28.563000,86.427498>, <15.316000,30.231001,86.795990>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<17.252001,30.191000,83.530998>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.316000,30.231001,86.795990>, <16.284000,30.211000,85.163498>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<16.284000,30.211000,85.163498>, <17.252001,30.191000,83.530998>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.189000,29.507000,81.384003>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<17.252001,30.191000,83.530998>, <15.720501,29.848999,82.457504>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.720501,29.848999,82.457504>, <14.189000,29.507000,81.384003>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.933999,31.969000,83.200996>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.189000,29.507000,81.384003>, <13.061500,30.737999,82.292496>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.061500,30.737999,82.292496>, <11.933999,31.969000,83.200996>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.533999,34.741001,82.913002>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.933999,31.969000,83.200996>, <13.233999,33.355000,83.056999>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.233999,33.355000,83.056999>, <14.533999,34.741001,82.913002>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<15.134000,34.288002,79.182999>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.533999,34.741001,82.913002>, <14.834000,34.514503,81.048004>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.834000,34.514503,81.048004>, <15.134000,34.288002,79.182999>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.384000,34.124001,78.639000>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<15.134000,34.288002,79.182999>, <13.259000,34.206001,78.910995>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.259000,34.206001,78.910995>, <11.384000,34.124001,78.639000>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<11.075999,37.636997,80.051003>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.384000,34.124001,78.639000>, <11.230000,35.880501,79.345001>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.230000,35.880501,79.345001>, <11.075999,37.636997,80.051003>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<14.096000,38.966003,78.169998>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.075999,37.636997,80.051003>, <12.585999,38.301498,79.110504>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<12.585999,38.301498,79.110504>, <14.096000,38.966003,78.169998>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<13.073000,37.420002,74.834999>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<14.096000,38.966003,78.169998>, <13.584499,38.193001,76.502502>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.584499,38.193001,76.502502>, <13.073000,37.420002,74.834999>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ sphere {<9.413000,36.492001,75.148003>, _Helix_rf*0.200000 texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<13.073000,37.420002,74.834999>, <11.243000,36.956001,74.991501>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ cylinder {<11.243000,36.956001,74.991501>, <9.413000,36.492001,75.148003>, _Helix_rf*0.200000 open texture { _Helix_tex pigment {color rgbft <0.830000,0.970000,0.970000,_Helix_fi,_Helix_tp>}}}
+ }
+}