Skip to content
Snippets Groups Projects
Commit 99fd4e7a authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 4c699e9e
No related branches found
No related tags found
No related merge requests found
// $Id: PViewDataGModel.cpp,v 1.18 2008-02-24 20:42:10 geuzaine Exp $ // $Id: PViewDataGModel.cpp,v 1.19 2008-02-24 21:05:04 geuzaine Exp $
// //
// Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// //
...@@ -50,12 +50,16 @@ PViewDataGModel::PViewDataGModel(GModel *model) : _model(model) ...@@ -50,12 +50,16 @@ PViewDataGModel::PViewDataGModel(GModel *model) : _model(model)
When reading a .msh file: When reading a .msh file:
* get node number in file nodeData.resize(std::max(_model->getMaxNodeDataIndex(), numDataInFile));
* get vertex pointer from _model->getVertexByTag(num) loop over lines:
* if MVertex * get node number in file
has no dataIndex, increment it (need global value stored in GModel) * get vertex pointer from _model->getVertexByTag(num)
it has one, do nothing * if MVertex has no dataIndex:
* fill nodeData[step][dataIndex] increment it (need global value stored in GModel)
fill std::vector<double> tmp
nodeData[step].push_back(tmp)
else:
add data nodeData[step][dataIndex]
.msh file format: .msh file format:
......
lc1=0.1;
lc2=0.001;
// Cubo
Point(1)={-2, -2, 0, lc1};
Point(2)={3, -2, 0, lc1};
Point(3)={3, 2, 0, lc1};
Point(4)={-2, 2, 0, lc1};
Spline(1)={1,2};
Spline(2)={2,3};
Spline(3)={3,4};
Spline(4)={4,1};
// NACA 0012 - Perfil da Raiz da Asa;
Point(101)={+1.0000000000000000e+000,+0.0000000000000000e+000,+0.0000000000000000e+000,lc2};
Point(102)={+9.9199000000000004e-001,-1.3209999999999999e-003,+0.0000000000000000e+000,lc2};
Point(103)={+9.8340000000000005e-001,-2.7246000000000002e-003,+0.0000000000000000e+000,lc2};
Point(104)={+9.7423999999999999e-001,-4.2063999999999999e-003,+0.0000000000000000e+000,lc2};
Point(105)={+9.6453999999999995e-001,-5.7619000000000004e-003,+0.0000000000000000e+000,lc2};
Point(106)={+9.5430999999999999e-001,-7.3866000000000001e-003,+0.0000000000000000e+000,lc2};
Point(107)={+9.4355999999999995e-001,-8.9133000000000007e-003,+0.0000000000000000e+000,lc2};
Point(108)={+9.3230000000000002e-001,-1.0378999999999999e-002,+0.0000000000000000e+000,lc2};
Point(109)={+9.2056000000000004e-001,-1.1886000000000001e-002,+0.0000000000000000e+000,lc2};
Point(110)={+9.0834999999999999e-001,-1.3433000000000000e-002,+0.0000000000000000e+000,lc2};
Point(111)={+8.9568999999999999e-001,-1.5013000000000000e-002,+0.0000000000000000e+000,lc2};
Point(112)={+8.8258999999999999e-001,-1.6622999999999999e-002,+0.0000000000000000e+000,lc2};
Point(113)={+8.6907999999999996e-001,-1.8258000000000000e-002,+0.0000000000000000e+000,lc2};
Point(114)={+8.5518000000000005e-001,-1.9914999999999999e-002,+0.0000000000000000e+000,lc2};
Point(115)={+8.4091000000000005e-001,-2.1588000000000000e-002,+0.0000000000000000e+000,lc2};
Point(116)={+8.2628000000000001e-001,-2.3274000000000000e-002,+0.0000000000000000e+000,lc2};
Point(117)={+8.1132000000000004e-001,-2.4969000000000002e-002,+0.0000000000000000e+000,lc2};
Point(118)={+7.9605000000000004e-001,-2.6668000000000001e-002,+0.0000000000000000e+000,lc2};
Point(119)={+7.8047999999999995e-001,-2.8368000000000001e-002,+0.0000000000000000e+000,lc2};
Point(120)={+7.6465000000000005e-001,-3.0062999999999999e-002,+0.0000000000000000e+000,lc2};
Point(121)={+7.4858000000000002e-001,-3.1751000000000001e-002,+0.0000000000000000e+000,lc2};
Point(122)={+7.3228000000000004e-001,-3.3426999999999998e-002,+0.0000000000000000e+000,lc2};
Point(123)={+7.1577999999999997e-001,-3.5085999999999999e-002,+0.0000000000000000e+000,lc2};
Point(124)={+6.9910000000000005e-001,-3.6726000000000002e-002,+0.0000000000000000e+000,lc2};
Point(125)={+6.8227000000000004e-001,-3.8342000000000001e-002,+0.0000000000000000e+000,lc2};
Point(126)={+6.6530000000000000e-001,-3.9928999999999999e-002,+0.0000000000000000e+000,lc2};
Point(127)={+6.4822000000000002e-001,-4.1485000000000001e-002,+0.0000000000000000e+000,lc2};
Point(128)={+6.3105999999999995e-001,-4.3004000000000001e-002,+0.0000000000000000e+000,lc2};
Point(129)={+6.1382000000000003e-001,-4.4482000000000001e-002,+0.0000000000000000e+000,lc2};
Point(130)={+5.9655000000000002e-001,-4.5915999999999998e-002,+0.0000000000000000e+000,lc2};
Point(131)={+5.7925000000000004e-001,-4.7301999999999997e-002,+0.0000000000000000e+000,lc2};
Point(132)={+5.6194999999999995e-001,-4.8634999999999998e-002,+0.0000000000000000e+000,lc2};
Point(133)={+5.4468000000000005e-001,-4.9911999999999998e-002,+0.0000000000000000e+000,lc2};
Point(134)={+5.2744000000000002e-001,-5.1128000000000000e-002,+0.0000000000000000e+000,lc2};
Point(135)={+5.1027000000000000e-001,-5.2280000000000000e-002,+0.0000000000000000e+000,lc2};
Point(136)={+4.9319000000000002e-001,-5.3365000000000003e-002,+0.0000000000000000e+000,lc2};
Point(137)={+4.7621000000000002e-001,-5.4378000000000003e-002,+0.0000000000000000e+000,lc2};
Point(138)={+4.5934999999999998e-001,-5.5316999999999998e-002,+0.0000000000000000e+000,lc2};
Point(139)={+4.4263999999999998e-001,-5.6177999999999999e-002,+0.0000000000000000e+000,lc2};
Point(140)={+4.2609000000000002e-001,-5.6958000000000002e-002,+0.0000000000000000e+000,lc2};
Point(141)={+4.0971999999999997e-001,-5.7653999999999997e-002,+0.0000000000000000e+000,lc2};
Point(142)={+3.9354000000000000e-001,-5.8264000000000003e-002,+0.0000000000000000e+000,lc2};
Point(143)={+3.7758000000000003e-001,-5.8785999999999998e-002,+0.0000000000000000e+000,lc2};
Point(144)={+3.6185000000000000e-001,-5.9218000000000000e-002,+0.0000000000000000e+000,lc2};
Point(145)={+3.4637000000000001e-001,-5.9558000000000000e-002,+0.0000000000000000e+000,lc2};
Point(146)={+3.3115000000000000e-001,-5.9804999999999997e-002,+0.0000000000000000e+000,lc2};
Point(147)={+3.1619999999999998e-001,-5.9957999999999997e-002,+0.0000000000000000e+000,lc2};
Point(148)={+3.0153000000000002e-001,-6.0017000000000001e-002,+0.0000000000000000e+000,lc2};
Point(149)={+2.8717999999999999e-001,-5.9979999999999999e-002,+0.0000000000000000e+000,lc2};
Point(150)={+2.7312999999999998e-001,-5.9850000000000000e-002,+0.0000000000000000e+000,lc2};
Point(151)={+2.5940000000000002e-001,-5.9624999999999997e-002,+0.0000000000000000e+000,lc2};
Point(152)={+2.4601000000000001e-001,-5.9306999999999999e-002,+0.0000000000000000e+000,lc2};
Point(153)={+2.3296000000000000e-001,-5.8896999999999998e-002,+0.0000000000000000e+000,lc2};
Point(154)={+2.2026000000000001e-001,-5.8397999999999999e-002,+0.0000000000000000e+000,lc2};
Point(155)={+2.0791999999999999e-001,-5.7810000000000000e-002,+0.0000000000000000e+000,lc2};
Point(156)={+1.9595000000000001e-001,-5.7135999999999999e-002,+0.0000000000000000e+000,lc2};
Point(157)={+1.8435000000000001e-001,-5.6377999999999998e-002,+0.0000000000000000e+000,lc2};
Point(158)={+1.7313000000000001e-001,-5.5539999999999999e-002,+0.0000000000000000e+000,lc2};
Point(159)={+1.6228999999999999e-001,-5.4625000000000000e-002,+0.0000000000000000e+000,lc2};
Point(160)={+1.5182999999999999e-001,-5.3636000000000003e-002,+0.0000000000000000e+000,lc2};
Point(161)={+1.4176000000000000e-001,-5.2575999999999998e-002,+0.0000000000000000e+000,lc2};
Point(162)={+1.3208000000000000e-001,-5.1450000000000003e-002,+0.0000000000000000e+000,lc2};
Point(163)={+1.2279000000000000e-001,-5.0261000000000000e-002,+0.0000000000000000e+000,lc2};
Point(164)={+1.1389000000000001e-001,-4.9013000000000001e-002,+0.0000000000000000e+000,lc2};
Point(165)={+1.0538000000000000e-001,-4.7711000000000003e-002,+0.0000000000000000e+000,lc2};
Point(166)={+9.7255999999999995e-002,-4.6358000000000003e-002,+0.0000000000000000e+000,lc2};
Point(167)={+8.9519000000000001e-002,-4.4958999999999999e-002,+0.0000000000000000e+000,lc2};
Point(168)={+8.2165000000000002e-002,-4.3519000000000002e-002,+0.0000000000000000e+000,lc2};
Point(169)={+7.5189000000000006e-002,-4.2041000000000002e-002,+0.0000000000000000e+000,lc2};
Point(170)={+6.8587999999999996e-002,-4.0529999999999997e-002,+0.0000000000000000e+000,lc2};
Point(171)={+6.2356000000000002e-002,-3.8989999999999997e-002,+0.0000000000000000e+000,lc2};
Point(172)={+5.6487000000000002e-002,-3.7425000000000000e-002,+0.0000000000000000e+000,lc2};
Point(173)={+5.0973999999999998e-002,-3.5839999999999997e-002,+0.0000000000000000e+000,lc2};
Point(174)={+4.5809999999999997e-002,-3.4237999999999998e-002,+0.0000000000000000e+000,lc2};
Point(175)={+4.0987999999999997e-002,-3.2624000000000000e-002,+0.0000000000000000e+000,lc2};
Point(176)={+3.6498999999999997e-002,-3.1001000000000001e-002,+0.0000000000000000e+000,lc2};
Point(177)={+3.2333000000000001e-002,-2.9373000000000000e-002,+0.0000000000000000e+000,lc2};
Point(178)={+2.8482000000000000e-002,-2.7744000000000001e-002,+0.0000000000000000e+000,lc2};
Point(179)={+2.4936000000000000e-002,-2.6116000000000000e-002,+0.0000000000000000e+000,lc2};
Point(180)={+2.1683000000000001e-002,-2.4494999999999999e-002,+0.0000000000000000e+000,lc2};
Point(181)={+1.8714000000000001e-002,-2.2882000000000000e-002,+0.0000000000000000e+000,lc2};
Point(182)={+1.6017000000000000e-002,-2.1281000000000001e-002,+0.0000000000000000e+000,lc2};
Point(183)={+1.3580000000000000e-002,-1.9694000000000000e-002,+0.0000000000000000e+000,lc2};
Point(184)={+1.1391999999999999e-002,-1.8124999999999999e-002,+0.0000000000000000e+000,lc2};
Point(185)={+9.4412000000000003e-003,-1.6577000000000001e-002,+0.0000000000000000e+000,lc2};
Point(186)={+7.7146000000000003e-003,-1.5051000000000000e-002,+0.0000000000000000e+000,lc2};
Point(187)={+6.1999999999999998e-003,-1.3550000000000000e-002,+0.0000000000000000e+000,lc2};
Point(188)={+4.8849999999999996e-003,-1.2076000000000000e-002,+0.0000000000000000e+000,lc2};
Point(189)={+3.7567999999999998e-003,-1.0632000000000001e-002,+0.0000000000000000e+000,lc2};
Point(190)={+2.8031000000000002e-003,-9.2178999999999994e-003,+0.0000000000000000e+000,lc2};
Point(191)={+2.0111000000000000e-003,-7.8358999999999998e-003,+0.0000000000000000e+000,lc2};
Point(192)={+1.3686000000000000e-003,-6.4863999999999998e-003,+0.0000000000000000e+000,lc2};
Point(193)={+8.6341000000000000e-004,-5.1690000000000000e-003,+0.0000000000000000e+000,lc2};
Point(194)={+4.8376000000000002e-004,-3.8815000000000000e-003,+0.0000000000000000e+000,lc2};
Point(195)={+2.1870000000000000e-004,-2.6178999999999998e-003,+0.0000000000000000e+000,lc2};
Point(196)={+5.8739999999999997e-005,-1.3609000000000000e-003,+0.0000000000000000e+000,lc2};
Point(197)={+0.0000000000000000e+000,+0.0000000000000000e+000,+0.0000000000000000e+000,lc2};
Point(198)={+5.8739999999999997e-005,+1.3609000000000000e-003,+0.0000000000000000e+000,lc2};
Point(199)={+2.1870000000000000e-004,+2.6178999999999998e-003,+0.0000000000000000e+000,lc2};
Point(200)={+4.8376000000000002e-004,+3.8815000000000000e-003,+0.0000000000000000e+000,lc2};
Point(201)={+8.6341000000000000e-004,+5.1690000000000000e-003,+0.0000000000000000e+000,lc2};
Point(202)={+1.3686000000000000e-003,+6.4863999999999998e-003,+0.0000000000000000e+000,lc2};
Point(203)={+2.0111000000000000e-003,+7.8358999999999998e-003,+0.0000000000000000e+000,lc2};
Point(204)={+2.8031000000000002e-003,+9.2178999999999994e-003,+0.0000000000000000e+000,lc2};
Point(205)={+3.7567999999999998e-003,+1.0632000000000001e-002,+0.0000000000000000e+000,lc2};
Point(206)={+4.8849999999999996e-003,+1.2076000000000000e-002,+0.0000000000000000e+000,lc2};
Point(207)={+6.1999999999999998e-003,+1.3550000000000000e-002,+0.0000000000000000e+000,lc2};
Point(208)={+7.7146000000000003e-003,+1.5051000000000000e-002,+0.0000000000000000e+000,lc2};
Point(209)={+9.4412000000000003e-003,+1.6577000000000001e-002,+0.0000000000000000e+000,lc2};
Point(210)={+1.1391999999999999e-002,+1.8124999999999999e-002,+0.0000000000000000e+000,lc2};
Point(211)={+1.3580000000000000e-002,+1.9694000000000000e-002,+0.0000000000000000e+000,lc2};
Point(212)={+1.6017000000000000e-002,+2.1281000000000001e-002,+0.0000000000000000e+000,lc2};
Point(213)={+1.8714000000000001e-002,+2.2882000000000000e-002,+0.0000000000000000e+000,lc2};
Point(214)={+2.1683000000000001e-002,+2.4494999999999999e-002,+0.0000000000000000e+000,lc2};
Point(215)={+2.4936000000000000e-002,+2.6116000000000000e-002,+0.0000000000000000e+000,lc2};
Point(216)={+2.8482000000000000e-002,+2.7744000000000001e-002,+0.0000000000000000e+000,lc2};
Point(217)={+3.2333000000000001e-002,+2.9373000000000000e-002,+0.0000000000000000e+000,lc2};
Point(218)={+3.6498999999999997e-002,+3.1001000000000001e-002,+0.0000000000000000e+000,lc2};
Point(219)={+4.0987999999999997e-002,+3.2624000000000000e-002,+0.0000000000000000e+000,lc2};
Point(220)={+4.5809999999999997e-002,+3.4237999999999998e-002,+0.0000000000000000e+000,lc2};
Point(221)={+5.0973999999999998e-002,+3.5839999999999997e-002,+0.0000000000000000e+000,lc2};
Point(222)={+5.6487000000000002e-002,+3.7425000000000000e-002,+0.0000000000000000e+000,lc2};
Point(223)={+6.2356000000000002e-002,+3.8989999999999997e-002,+0.0000000000000000e+000,lc2};
Point(224)={+6.8587999999999996e-002,+4.0529999999999997e-002,+0.0000000000000000e+000,lc2};
Point(225)={+7.5189000000000006e-002,+4.2041000000000002e-002,+0.0000000000000000e+000,lc2};
Point(226)={+8.2165000000000002e-002,+4.3519000000000002e-002,+0.0000000000000000e+000,lc2};
Point(227)={+8.9519000000000001e-002,+4.4958999999999999e-002,+0.0000000000000000e+000,lc2};
Point(228)={+9.7255999999999995e-002,+4.6358000000000003e-002,+0.0000000000000000e+000,lc2};
Point(229)={+1.0538000000000000e-001,+4.7711000000000003e-002,+0.0000000000000000e+000,lc2};
Point(230)={+1.1389000000000001e-001,+4.9013000000000001e-002,+0.0000000000000000e+000,lc2};
Point(231)={+1.2279000000000000e-001,+5.0261000000000000e-002,+0.0000000000000000e+000,lc2};
Point(232)={+1.3208000000000000e-001,+5.1450000000000003e-002,+0.0000000000000000e+000,lc2};
Point(233)={+1.4176000000000000e-001,+5.2575999999999998e-002,+0.0000000000000000e+000,lc2};
Point(234)={+1.5182999999999999e-001,+5.3636000000000003e-002,+0.0000000000000000e+000,lc2};
Point(235)={+1.6228999999999999e-001,+5.4625000000000000e-002,+0.0000000000000000e+000,lc2};
Point(236)={+1.7313000000000001e-001,+5.5539999999999999e-002,+0.0000000000000000e+000,lc2};
Point(237)={+1.8435000000000001e-001,+5.6377999999999998e-002,+0.0000000000000000e+000,lc2};
Point(238)={+1.9595000000000001e-001,+5.7135999999999999e-002,+0.0000000000000000e+000,lc2};
Point(239)={+2.0791999999999999e-001,+5.7810000000000000e-002,+0.0000000000000000e+000,lc2};
Point(240)={+2.2026000000000001e-001,+5.8397999999999999e-002,+0.0000000000000000e+000,lc2};
Point(241)={+2.3296000000000000e-001,+5.8896999999999998e-002,+0.0000000000000000e+000,lc2};
Point(242)={+2.4601000000000001e-001,+5.9306999999999999e-002,+0.0000000000000000e+000,lc2};
Point(243)={+2.5940000000000002e-001,+5.9624999999999997e-002,+0.0000000000000000e+000,lc2};
Point(244)={+2.7312999999999998e-001,+5.9850000000000000e-002,+0.0000000000000000e+000,lc2};
Point(245)={+2.8717999999999999e-001,+5.9979999999999999e-002,+0.0000000000000000e+000,lc2};
Point(246)={+3.0153000000000002e-001,+6.0017000000000001e-002,+0.0000000000000000e+000,lc2};
Point(247)={+3.1619999999999998e-001,+5.9957999999999997e-002,+0.0000000000000000e+000,lc2};
Point(248)={+3.3115000000000000e-001,+5.9804999999999997e-002,+0.0000000000000000e+000,lc2};
Point(249)={+3.4637000000000001e-001,+5.9558000000000000e-002,+0.0000000000000000e+000,lc2};
Point(250)={+3.6185000000000000e-001,+5.9218000000000000e-002,+0.0000000000000000e+000,lc2};
Point(251)={+3.7758000000000003e-001,+5.8785999999999998e-002,+0.0000000000000000e+000,lc2};
Point(252)={+3.9354000000000000e-001,+5.8264000000000003e-002,+0.0000000000000000e+000,lc2};
Point(253)={+4.0971999999999997e-001,+5.7653999999999997e-002,+0.0000000000000000e+000,lc2};
Point(254)={+4.2609000000000002e-001,+5.6958000000000002e-002,+0.0000000000000000e+000,lc2};
Point(255)={+4.4263999999999998e-001,+5.6177999999999999e-002,+0.0000000000000000e+000,lc2};
Point(256)={+4.5934999999999998e-001,+5.5316999999999998e-002,+0.0000000000000000e+000,lc2};
Point(257)={+4.7621000000000002e-001,+5.4378000000000003e-002,+0.0000000000000000e+000,lc2};
Point(258)={+4.9319000000000002e-001,+5.3365000000000003e-002,+0.0000000000000000e+000,lc2};
Point(259)={+5.1027000000000000e-001,+5.2280000000000000e-002,+0.0000000000000000e+000,lc2};
Point(260)={+5.2744000000000002e-001,+5.1128000000000000e-002,+0.0000000000000000e+000,lc2};
Point(261)={+5.4468000000000005e-001,+4.9911999999999998e-002,+0.0000000000000000e+000,lc2};
Point(262)={+5.6194999999999995e-001,+4.8634999999999998e-002,+0.0000000000000000e+000,lc2};
Point(263)={+5.7925000000000004e-001,+4.7301999999999997e-002,+0.0000000000000000e+000,lc2};
Point(264)={+5.9655000000000002e-001,+4.5915999999999998e-002,+0.0000000000000000e+000,lc2};
Point(265)={+6.1382000000000003e-001,+4.4482000000000001e-002,+0.0000000000000000e+000,lc2};
Point(266)={+6.3105999999999995e-001,+4.3004000000000001e-002,+0.0000000000000000e+000,lc2};
Point(267)={+6.4822000000000002e-001,+4.1485000000000001e-002,+0.0000000000000000e+000,lc2};
Point(268)={+6.6530000000000000e-001,+3.9928999999999999e-002,+0.0000000000000000e+000,lc2};
Point(269)={+6.8227000000000004e-001,+3.8342000000000001e-002,+0.0000000000000000e+000,lc2};
Point(270)={+6.9910000000000005e-001,+3.6726000000000002e-002,+0.0000000000000000e+000,lc2};
Point(271)={+7.1577999999999997e-001,+3.5085999999999999e-002,+0.0000000000000000e+000,lc2};
Point(272)={+7.3228000000000004e-001,+3.3426999999999998e-002,+0.0000000000000000e+000,lc2};
Point(273)={+7.4858000000000002e-001,+3.1751000000000001e-002,+0.0000000000000000e+000,lc2};
Point(274)={+7.6465000000000005e-001,+3.0062999999999999e-002,+0.0000000000000000e+000,lc2};
Point(275)={+7.8047999999999995e-001,+2.8368000000000001e-002,+0.0000000000000000e+000,lc2};
Point(276)={+7.9605000000000004e-001,+2.6668000000000001e-002,+0.0000000000000000e+000,lc2};
Point(277)={+8.1132000000000004e-001,+2.4969000000000002e-002,+0.0000000000000000e+000,lc2};
Point(278)={+8.2628000000000001e-001,+2.3274000000000000e-002,+0.0000000000000000e+000,lc2};
Point(279)={+8.4091000000000005e-001,+2.1588000000000000e-002,+0.0000000000000000e+000,lc2};
Point(280)={+8.5518000000000005e-001,+1.9914999999999999e-002,+0.0000000000000000e+000,lc2};
Point(281)={+8.6907999999999996e-001,+1.8258000000000000e-002,+0.0000000000000000e+000,lc2};
Point(282)={+8.8258999999999999e-001,+1.6622999999999999e-002,+0.0000000000000000e+000,lc2};
Point(283)={+8.9568999999999999e-001,+1.5013000000000000e-002,+0.0000000000000000e+000,lc2};
Point(284)={+9.0834999999999999e-001,+1.3433000000000000e-002,+0.0000000000000000e+000,lc2};
Point(285)={+9.2056000000000004e-001,+1.1886000000000001e-002,+0.0000000000000000e+000,lc2};
Point(286)={+9.3230000000000002e-001,+1.0378999999999999e-002,+0.0000000000000000e+000,lc2};
Point(287)={+9.4355999999999995e-001,+8.9133000000000007e-003,+0.0000000000000000e+000,lc2};
Point(288)={+9.5430999999999999e-001,+7.3866000000000001e-003,+0.0000000000000000e+000,lc2};
Point(289)={+9.6453999999999995e-001,+5.7619000000000004e-003,+0.0000000000000000e+000,lc2};
Point(290)={+9.7423999999999999e-001,+4.2063999999999999e-003,+0.0000000000000000e+000,lc2};
Point(291)={+9.8340000000000005e-001,+2.7246000000000002e-003,+0.0000000000000000e+000,lc2};
Point(292)={+9.9199000000000004e-001,+1.3209999999999999e-003,+0.0000000000000000e+000,lc2};
// Loop das Splines para formar o perfil - Intradorso;
i=0;
j=0;
end=84;
For i In {0:end}
j=i+101;
a[i]=j;
EndFor
Spline(1001)={a[]};
// Loop das Splines para formar o perfil - Intradorso;
i=0;
j=0;
end=24;
For i In {0:end}
j=i+185;
b[i]=j;
EndFor
Spline(1002)={b[]};
// Loop das Splines para formar o perfil - Extradorso;
i=0;
j=0;
end=84;
For i In {0:end}
j=i+209;
c[i]=j;
EndFor
c[84]=101;
Spline(1003)={c[]};
Line Loop(2001)={1,2,3,4};
Line Loop(2002)={1001,1002,1003};
Plane Surface(3001)={2001,2002};
Extrude Surface { 3001, {0, 0, 0.3} };
Surface Loop(1)={3001,3013,3017,3021,3025,3029,3033,3037,3038};
Volume(2)={1};
// Flag das Arestas geométricas
Physical Line(1) = {1001,1002,1003,3007,3008,3009,3027,3028,3032};
Physical Line(2) = {4,3006,3011,3020};
//Flag das Superfícies
Physical Surface(3) = {3001,3013,3017,3021,3038};
Physical Surface(1) = {3029,3033,3037};
Physical Surface(2) = {3025};
Physical Volume(3) = {1};
DBRep_DrawableShape
CASCADE Topology V1, (c) Matra-Datavision
Locations 8
1
1 0 0 0
0 1 0 0
0 0 1 0
1
1 0 0 0
0 1 0 0
0 0 1 0
1
1 0 0 0
0 1 0 0
0 0 1 0
2 2 1 3 1 0
2 1 -1 0
2 2 1 3 1 1 1 0
2 3 -1 2 -1 0
2 1 -1 3 -1 2 -1 0
Curve2ds 14
1 0 0 0 1
7 0 0 11 12 2 0.8779778172612831 5.1260101863482319 0.87334675403080964 9.5896537719878516 0.86847468674618178 13.611139862607121 0.86328510906890821 17.311484324849559 0.85777999208983957 20.700679492273075 0.85185852367804493 23.858883667394771 0.84557770759308837 26.76312694308168 0.83876651524980372 29.491462177869376 0.83148179344792716 32.022731281912449 0.82355927422339437 34.404242691575305 0.81494815957254019 36.638107884720839 0.80552371722069116 38.74065167771451
147.39496720261567 12 183.58572022963691 12
1 16.49713020376894 0 0 1
7 0 0 10 20 3 -3.1449765726987279e-09 37.568209062824977 0.080906460656500728 37.568209062825169 0.16183699268258275 37.568267774133076 0.24258516573183708 37.567874792412418 0.32400070703654693 37.569170103796537 0.40385984114136653 37.56641837420581 0.48627730596578578 37.570601981210551 0.56554114363494246 37.565765367546405 0.64746559536185144 37.570188927592966 0.72732584567310632 37.567028709830403 0.80977909885278898 37.568757989311145 0.80986131887039225 37.568763086917635 0.80994554142593156 37.568771632788703 0.81003169399661645 37.568783658469791 0.81011970405706257 37.568799195460187 0.81020949908587392 37.568818275334216 0.81030100655703463 37.568840929577398 0.81039415394864378 37.568867189754243 0.81048886873596993 37.568897087375895 0.81058507839576499 37.568930653980573
55.264522574515418 11 71.74561748898077 9 71.761652778284358 11
1 0 2.4468543773930906 1 0
1 3.3077924606545203e-15 5.1260101863482452 1 0
1 6.2831853071795898 0 0 1
1 0 0 0 1
1 0 0 0 1
7 0 0 11 12 2 5.483328605885462 38.740651677714666 5.4739041635331089 36.638107884717549 5.4652930488847389 34.404242691579846 5.4573705296536152 32.022731281883559 5.4500858078638643 29.491462177920123 5.4432746155037792 26.763126943018122 5.4369937994369817 23.858883667443578 5.4310723310097409 20.700679492245747 5.4255672140409308 17.311484324855684 5.4203776363584915 13.611139862606393 5.4155055690757026 9.5896537719884574 5.4108745058448697 5.1260101863482035
-1.7512630745064244 12 34.439489952451758 12
1 16.381678772298841 0 0 1
7 0 0 10 20 3 5.4782672445982135 37.568930627046349 5.478363459362563 37.56889705361462 5.4784581796091887 37.568867148922131 5.4785513328083573 37.568840881340513 5.4786428464437709 37.568818219320171 5.4787326479756659 37.568799131178466 5.4788206648957605 37.568783585403828 5.4789068246623751 37.568771550311475 5.4789910547620551 37.568762994356717 5.4790732826626183 37.568757885905001 5.5609559408531801 37.567028826154903 5.6402562784421875 37.570188989784718 5.7216053346023097 37.565764923218396 5.8003142168497401 37.570602716905469 5.882153658662129 37.566417663298381 5.9614533667037106 37.569170545180903 6.0422997078688674 37.56787462405341 6.1224821007117463 37.568267805623144 6.202845600157783 37.568209062825105 6.283185305607101 37.568209062824977
38.882843834249101 11 38.898879508378982 9 55.264522606547942 11
1 0 2.4468543773930866 1 0
1 5.3906172462968085 5.1260101863482337 1 0
Curves 7
7 1 0 11 22 3 -89.232447629825813 -96.372219586592365 31.547996751923201 0.99999999999999889 -87.553404144895296 -92.943153599565505 29.227978039867505 1.0000000000000149 -86.039750982542913 -89.853762409147905 27.137291496428254 0.9999999999999466 -84.646105042127303 -87.011079051410064 25.213020053774038 1.0000000000001359 -83.368656270675871 -84.407427203092979 23.450034108944024 0.9999999999997623 -82.177286829090875 -81.981227550440337 21.806620830653234 1.0000000000002767 -81.080648989774147 -79.750126064944979 20.294769177973077 0.99999999999978118 -80.049287413681824 -77.654160879690451 18.873839962374362 1.0000000000001146 -79.091203011799095 -75.709586089588569 17.554862626325445 0.99999999999996614 -78.188461688694773 -73.880058347075618 16.313170844947351 1.0000000000000004 -77.340214582013218 -72.163955569951483 15.147639455253364 1.0000000000000027 -76.429207374985197 -70.324655469760742 13.897399829544606 0.99999999999999956 -76.305814149144425 -70.075527723129426 13.728058578125294 0.99999999999999933 -76.170015351811116 -69.801353446994028 13.541692283501092 0.99999999999999933 -76.021810982985158 -69.502132641354578 13.338300945672005 0.999999999999999 -75.861201042666593 -69.177865306210961 13.117884564638027 0.99999999999999889 -75.688185530855435 -68.828551441563292 12.880443140399159 0.99999999999999889 -75.502764447551627 -68.454191047411555 12.625976672955407 0.99999999999999889 -75.304937792755268 -68.054784123755695 12.354485162306769 0.999999999999999 -75.094705566466288 -67.630330670595711 12.065968608453241 0.99999999999999933 -74.872067768684744 -67.180830687931689 11.760427011394821 0.99999999999999933 -74.637024399410507 -66.706284175763571 11.437860371131508 1
147.39496720261567 12 183.58572022963691 10 188.6065060018185 12
7 1 0 10 20 3 -83.276692966007573 -71.449432052752869 1.4638283349910353e-06 1 -83.276692847574381 -71.449432052752869 1.6368831365101428 1.0000000000000095 -83.129114888191296 -71.449386949476178 3.2740047236678107 0.99999999999996958 -82.837629568336695 -71.449688846397706 4.8944160123440534 1.0000000000000613 -82.3888843864423 -71.448693760627108 6.4918132900301249 0.99999999999990907 -81.825558143101517 -71.450807697855581 8.0288301515586085 1.0000000000000968 -81.080766483596477 -71.447593761929141 9.5339970773980447 0.9999999999999275 -80.259281136343645 -71.451309351465994 10.932926385005867 1.000000000000038 -79.26993910205961 -71.447911078507829 12.274381034458401 0.99999999999998546 -78.206322081825846 -71.450338825040603 13.500535801251974 1.0000000000000033 -76.99768721270388 -71.449010355745258 14.650282591299465 1.0000000000000002 -76.996480406376151 -71.449006439655932 14.651427416295231 1.0000000000000124 -76.995242633866482 -71.448999874533413 14.652598471498694 0.99999999999994837 -76.99397493645516 -71.448990636155472 14.653794721501178 1.0000000000000941 -76.992678355429433 -71.44897870029962 14.655015130871229 0.99999999999990019 -76.991353932066545 -71.448964042743739 14.656258664210887 1.0000000000000702 -76.99000270765471 -71.448946639265287 14.6575242860843 0.99999999999996447 -76.988625723472865 -71.448926465642089 14.658810961089051 1.0000000000000135 -76.987224020805982 -71.448903497651742 14.660117653799791 0.99999999999999689 -76.985798640936054 -71.448877711071958 14.661443328803156 1
55.264522574515418 11 71.74561748898077 9 71.761652778284358 11
2 -63.044914245605398 -96.372219586592379 9.7727352379288429e-15 2.4492127076447471e-16 1 4.9800942239059175e-31 -0.99999999999999711 2.4492127076447402e-16 7.5497902906501258e-08 7.5497902906501258e-08 -1.8491042817922641e-23 0.99999999999999711 41.000768331935149
1 -107.32727433136201 -100.31012969117801 3.3432251855210398e-06 0.64018439966447793 0.76822127959737585 -4.8332577530528592e-08
7 1 0 11 22 3 -74.701658166265574 -66.706284175762121 -11.371982626418896 1 -74.938525790340307 -67.180830687929983 -11.693212063917173 1.0000000000000087 -75.162891558890351 -67.630330670593892 -11.997487035672769 1.0000000000000149 -75.374755471915492 -68.054784123753691 -12.284807541685669 1.00000000000002 -75.574117529415787 -68.454191047409452 -12.55517358195589 1.0000000000000238 -75.760977731391321 -68.828551441561316 -12.80858515648344 1.0000000000000249 -75.935336077841924 -69.177865306209057 -13.045042265268295 1.0000000000000251 -76.097192568767767 -69.502132641352802 -13.264544908310477 1.0000000000000235 -76.246547204168778 -69.801353446992564 -13.467093085609987 1.00000000000002 -76.383399984044942 -70.075527723128317 -13.652686797166821 1.0000000000000149 -76.507750908396247 -70.324655469760046 -13.821326042980969 1.0000000000000082 -77.425828764880237 -72.163955569952037 -15.06638278963382 0.99999999999993971 -78.280667475698664 -73.880058347079583 -16.227088330609831 1.0000000000002403 -79.190431139195113 -75.709586089594836 -17.463644214087235 0.99999999999945988 -80.155974980531781 -77.654160879674933 -18.777170774363704 1.0000000000008533 -81.195372594630953 -79.750126064968583 -20.192232305281962 0.99999999999896794 -82.300560693544199 -81.981227550423128 -21.697844883684667 1.0000000000009823 -83.501224451242322 -84.407427203101662 -23.334480118128791 0.99999999999926537 -84.78864379111937 -87.011079051410974 -25.090198275650103 1.0000000000004208 -86.193172460981614 -89.853762409146682 -27.006540835780417 0.99999999999982658 -87.718649522768374 -92.943153599565363 -29.08861572703411 1.0000000000000422 -89.410813907961398 -96.372219586592394 -31.399081814658082 1
-6.7720488466895361 12 -1.7512630745064244 10 34.439489952451758 12
7 1 0 10 20 3 -77.068663185596847 -71.448877731763389 -14.582203008237819 0.99999999999999978 -77.070081107265381 -71.448903523587205 -14.580869208261271 0.99999999999998612 -77.071475464936896 -71.448926497012593 -14.579554519593009 1.0000000000000493 -77.07284522321919 -71.448946676317533 -14.578259983592329 0.99999999999990918 -77.074189346718015 -71.448964085779963 -14.576986641615976 1.0000000000001088 -77.075506800042803 -71.448978749677948 -14.575735535026267 0.9999999999999023 -77.076796547797997 -71.448990692289286 -14.574507705176124 1.0000000000000713 -77.0780575545933 -71.44899993789214 -14.573304193430765 0.99999999999995837 -77.079288785034038 -71.449006510764306 -14.572126041142981 1.000000000000016 -77.080489203728405 -71.449010435183865 -14.570974289675069 0.99999999999999778 -78.274275238391496 -71.450338735678287 -13.422405573681106 1.0000000000000111 -79.324225952558692 -71.447911030729045 -12.199616103289614 0.99999999999996425 -80.300622603184848 -71.451309692811392 -10.86336082753224 1.0000000000000802 -81.111024788566255 -71.447593196748883 -9.4713835666668658 0.99999999999986677 -81.845724573664 -71.45080824399281 -7.9745861329905487 1.0000000000001683 -82.401236896393087 -71.448693421544533 -6.447219715239294 0.99999999999983902 -82.843768436164851 -71.449688975735327 -4.8603136553817263 1.0000000000001117 -83.13117434173229 -71.449386925284784 -3.2510676364347901 0.99999999999994793 -83.276693086167043 -71.449432052752854 -1.6254136474698262 1.0000000000000133 -83.276692966007559 -71.449432052752854 1.4956426479528773e-06 1
38.882843834249101 11 38.898879508378982 9 55.264522606547942 11
2 -63.044914245605398 -96.372219586592379 9.7727352379288429e-15 2.4492127076447471e-16 1 4.9800942239059175e-31 -0.62741444453322781 1.5366714305106558e-16 -0.77868550441822226 -0.77868550441822226 1.9071664326798667e-16 0.62741444453322781 41.000768331935141
Polygon3D 0
PolygonOnTriangulations 8
4 1 3 4 2
p 0.127602571308098 1 147.394967202616 162.677562509029 172.229184575538 181.780806642046
7 5 6 7 8 9 10 2
p 0.127602571308098 1 55.2645225745154 58.49535124435 61.7261799141846 64.9618405024279 68.1998859355548 69.9807693569196 71.7616527782844
8 11 12 13 14 15 16 17 1
p 0.127602571308098 1 -3.30779246065452e-15 0.125425402465894 0.250850804931792 0.37627620739769 0.501701609863588 0.627127012329485 0.752552414795383 0.877977817261281
2 13 5
p 0.126989830207457 1 5.12601018634823 37.568209062825
2 11 5
p 0.127602571308098 1 5.12601018634823 37.568209062825
4 1 3 4 2
p 0.126989830207457 1 0.0536505184427909 15.3362458224468 24.8878678874493 34.4394899524518
9 1 6 7 8 9 10 11 12 5
p 0.126989830207457 1 38.8828438342491 39.7690297833116 40.9506110487284 42.7229829468535 45.3815407940411 48.3724183721272 51.6002739028741 53.432398254711 55.2645226065479
8 2 14 15 16 17 18 19 13
p 0.126989830207457 1 0.0202572595480625 0.144873088310165 0.269488917072268 0.39410474583437 0.518720574596473 0.643336403358576 0.767952232120678 0.892568060882781
Surfaces 7
3 -63.044914245605398 -100.31012969117801 9.7727349555377393e-15 2.4492127076447501e-16 1 0 -0.99999999999999711 2.4492127076447432e-16 7.5497899598708811e-08 7.5497899598708811e-08 -1.849104150976451e-23 0.99999999999999711 44.282360085756501
-0.69473827619670303
9 1 1 0 0 2 11 3 22 2 3 -89.232447629825813 -96.372219586592365 31.547996751923201 0.99999999999999889 -87.553404144895296 -92.943153599565505 29.227978039867505 1.0000000000000149 -86.039750982542913 -89.853762409147905 27.137291496428254 0.9999999999999466 -84.646105042127303 -87.011079051410064 25.213020053774038 1.0000000000001359 -83.368656270675871 -84.407427203092979 23.450034108944024 0.9999999999997623 -82.177286829090875 -81.981227550440337 21.806620830653234 1.0000000000002767 -81.080648989774147 -79.750126064944979 20.294769177973077 0.99999999999978118 -80.049287413681824 -77.654160879690451 18.873839962374362 1.0000000000001146 -79.091203011799095 -75.709586089588569 17.554862626325445 0.99999999999996614 -78.188461688694773 -73.880058347075618 16.313170844947351 1.0000000000000004 -77.340214582013218 -72.163955569951483 15.147639455253364 1.0000000000000027 -76.429207374985197 -70.324655469760742 13.897399829544606 0.99999999999999956 -76.305814149144425 -70.075527723129426 13.728058578125294 0.99999999999999933 -76.170015351811116 -69.801353446994028 13.541692283501092 0.99999999999999933 -76.021810982985158 -69.502132641354578 13.338300945672005 0.999999999999999 -75.861201042666593 -69.177865306210961 13.117884564638027 0.99999999999999889 -75.688185530855435 -68.828551441563292 12.880443140399159 0.99999999999999889 -75.502764447551627 -68.454191047411555 12.625976672955407 0.99999999999999889 -75.304937792755268 -68.054784123755695 12.354485162306769 0.999999999999999 -75.094705566466288 -67.630330670595711 12.065968608453241 0.99999999999999933 -74.872067768684744 -67.180830687931689 11.760427011394821 0.99999999999999933 -74.637024399410507 -66.706284175763571 11.437860371131508 1
-88.634735247970099 -96.34634491066808 32.016126157279025 0.72515584517742171 -86.962260877683889 -92.922059549844164 29.700392045460966 0.72636974481894179 -85.454322326418037 -89.835206270426056 27.612476796216125 0.7276647114809961 -84.065744842791261 -86.993255668047496 25.689830743836737 0.72902031632159947 -82.793331988053495 -84.389659981179477 23.928028049346803 0.73047309617781842 -81.606522319154038 -81.961866825543908 22.284752861800662 0.73201905686515145 -80.514562548507229 -79.728785134748847 20.772808323484611 0.73366039122453497 -79.487568877394736 -77.62931529161456 19.350816860376842 0.73543184402347939 -78.533870826618767 -75.680489505509769 18.030311656953764 0.73732064969955935 -77.635418274930288 -73.845460989515118 16.786300233663013 0.73936633547666364 -76.791395872631455 -72.122618104738137 15.617653644593412 0.74157958603538077 -75.885516987946318 -70.274830770930492 14.363359604749808 0.74432292654608012 -75.763298402072579 -70.025532593490595 14.194133843545812 0.7445903026335684 -75.628846981982676 -69.751282210514859 14.007970309194459 0.74479083469918439 -75.482136412803285 -69.452025945633878 13.804832565711502 0.74492452274292842 -75.323133803591432 -69.127696708788804 13.584675071784131 0.74499136676480049 -75.151799663723779 -68.778213948070388 13.34744314807897 0.74499136676480049 -74.968087870421513 -68.403483583477538 13.093072932276788 0.74492452274292842 -74.771945627355834 -68.003397922481767 12.82149132175682 0.74479083469918417 -74.56331341425556 -67.577835557238146 12.532615903822856 0.7445903026335684 -74.342124927416677 -67.126661243238061 12.226354873331481 0.74432292654608012 -74.108307010989137 -66.649725759150357 11.902606937551214 0.74398870643671977
-88.969345285699944 -95.845886976170291 32.479432437060844 0.99999999999999889 -87.300022066896759 -92.43154716157693 30.168061458759553 1.0000000000000149 -85.788756005626695 -89.343095908204276 28.075538887236817 0.9999999999999466 -84.396223964953748 -86.496907062591205 26.147417293463231 1.0000000000001359 -83.120475062326136 -83.892225049674508 24.380995455002271 0.9999999999997623 -81.931917626931423 -81.465618768049893 22.735300282699583 1.0000000000002767 -80.838386981964192 -79.235266356851511 21.221180687277293 0.99999999999978118 -79.810347772635637 -77.139535682546864 19.797741555650365 1.0000000000001146 -78.855826056118914 -75.19551536152828 18.476095891780858 0.99999999999996614 -77.95694086155828 -73.366528210871024 17.231485424422814 1.0000000000000004 -77.11286857740626 -71.651070231886095 16.062769768159253 1.0000000000000027 -76.207028318142449 -69.81260276860921 14.808529209677046 0.99999999999999956 -76.084327701618506 -69.563573109244459 14.638636021312662 0.99999999999999933 -75.949284635678524 -69.289493567810098 14.451653284884808 0.99999999999999933 -75.801899120322602 -68.990364144306341 14.247581000393497 0.999999999999999 -75.642171155550741 -68.666184838732988 14.02641916783872 0.99999999999999889 -75.470100741362913 -68.316955651090154 13.788167787220473 0.99999999999999889 -75.285687877759159 -67.942676581377796 13.532826858538757 0.99999999999999889 -75.088932564739423 -67.5433476295959 13.260396381793575 0.999999999999999 -74.879834802303705 -67.118968795744507 12.970876356984927 0.99999999999999933 -74.658394590452019 -66.669540079823591 12.66426678411282 0.99999999999999933 -74.424611929184394 -66.195061481833122 12.340567663177238 1
0 3
36.190753027021231 3
147.39496720261567 12
183.58572022963691 10
188.6065060018185 12
9 1 1 0 0 2 10 3 20 2 3 -83.044914245604929 -70.809247653088363 1.5099580030764059e-06 1 -83.044914123439568 -70.809247653088363 1.6181307935197529 1.0000000000000095 -82.898995570048413 -70.80932774300571 3.2365721831392928 0.99999999999996958 -82.611046049880315 -70.808792352850347 4.8379303886604621 1.0000000000000613 -82.166849503922407 -70.810553947731137 6.4185917681452125 0.99999999999990907 -81.611079572180699 -70.806820789677857 7.9348164186853491 1.0000000000000968 -80.873450490088601 -70.812477012841583 9.4272831527604133 0.9999999999999275 -80.062550485580431 -70.805969502621281 10.807437191792523 1.000000000000038 -79.079279512847563 -70.811883214856692 12.145140885091127 0.99999999999998546 -78.018083655582714 -70.807687380739225 13.355414336783577 1.0000000000000033 -76.859400572387273 -70.809968688550981 14.462363913042008 1.0000000000000002 -76.858313627810574 -70.809975391670761 14.463402149495074 1.0000000000000124 -76.857264516495079 -70.809986621463779 14.464404079363469 0.99999999999994837 -76.856251770788134 -70.810002418925308 14.46537111988733 1.0000000000000941 -76.85527392304293 -70.810022825051107 14.46630468829464 0.99999999999990019 -76.854329505604241 -70.810047880836208 14.467206201831617 1.0000000000000702 -76.853417050826124 -70.810077627276513 14.468077077723475 0.99999999999996447 -76.852535091054634 -70.810112105367125 14.468918733214259 1.0000000000000135 -76.851682158641225 -70.810151356103702 14.469732585534889 0.99999999999999689 -76.850856785934567 -70.81019542048162 14.470520051923277 1
-83.044914245604929 -71.171297588269724 1.5099578618560372e-06 0.94027157768310876 -83.044914123439568 -71.171297588269724 1.6181307935193541 0.94027157768311342 -82.898904931349151 -71.171298020962283 3.2367223616162617 0.94028220260590378 -82.611538168061017 -71.171295135349681 4.8371815342762634 0.94021108349386018 -82.165540783549503 -71.171304595416956 6.4204369249719377 0.94044550499318247 -81.613257813546227 -71.171284641834433 7.931946514215551 0.93994749930667565 -80.871037031253678 -71.171314644448898 9.4303188451518345 0.94070463521799597 -80.064358856291719 -71.171280497351972 10.804048543392717 0.9398293803549026 -79.081057672411433 -71.171311056835378 12.1406758643269 0.94062975383714964 -78.026505886627788 -71.171289756330054 13.349219255637667 0.94005810290687453 -76.847294335999976 -71.171301143004683 14.473927823221649 0.94037082142658279 -76.846148426351945 -71.17130117612048 14.475020636922951 0.94037174304096205 -76.845002385271485 -71.171301231474231 14.476113444190997 0.94037328798040676 -76.843856172542459 -71.171301309252186 14.477206283768989 0.94037546192046018 -76.842709747977892 -71.171301409640549 14.47829919436538 0.94037827053462975 -76.841563071418975 -71.171301532825396 14.479392214674171 0.94038171949949823 -76.840416102737109 -71.17130167899272 14.48048538334629 0.94038581448816183 -76.83926880183229 -71.171301848328412 14.481578739020556 0.94039056117675324 -76.838121128635052 -71.171302041018251 14.482672320295865 0.94039596523936086 -76.83697304310563 -71.171302257247902 14.483766165750088 0.94040203235112385
-83.276692966007573 -71.449432052752869 1.4638283349910353e-06 1 -83.276692847574381 -71.449432052752869 1.6368831365101428 1.0000000000000095 -83.129114888191296 -71.449386949476178 3.2740047236678107 0.99999999999996958 -82.837629568336695 -71.449688846397706 4.8944160123440534 1.0000000000000613 -82.3888843864423 -71.448693760627108 6.4918132900301249 0.99999999999990907 -81.825558143101517 -71.450807697855581 8.0288301515586085 1.0000000000000968 -81.080766483596477 -71.447593761929141 9.5339970773980447 0.9999999999999275 -80.259281136343645 -71.451309351465994 10.932926385005867 1.000000000000038 -79.26993910205961 -71.447911078507829 12.274381034458401 0.99999999999998546 -78.206322081825846 -71.450338825040603 13.500535801251974 1.0000000000000033 -76.99768721270388 -71.449010355745258 14.650282591299465 1.0000000000000002 -76.996480406376151 -71.449006439655932 14.651427416295231 1.0000000000000124 -76.995242633866482 -71.448999874533413 14.652598471498694 0.99999999999994837 -76.99397493645516 -71.448990636155472 14.653794721501178 1.0000000000000941 -76.992678355429433 -71.44897870029962 14.655015130871229 0.99999999999990019 -76.991353932066545 -71.448964042743739 14.656258664210887 1.0000000000000702 -76.99000270765471 -71.448946639265287 14.6575242860843 0.99999999999996447 -76.988625723472865 -71.448926465642089 14.658810961089051 1.0000000000000135 -76.987224020805982 -71.448903497651742 14.660117653799791 0.99999999999999689 -76.985798640936054 -71.448877711071958 14.661443328803156 1
0 3
16.49713020376894 3
55.264522574515418 11
71.74561748898077 9
71.761652778284358 11
5 -63.044914245605398 -93.171297588269979 9.7727352379288445e-15 -2.4492127076447471e-16 -1 -4.9800942239059175e-31 -0.99999999999999711 2.4492127076447402e-16 7.5497902906501258e-08 7.5497902906501258e-08 -1.8491042817922641e-23 0.99999999999999711 44.841874729922033 5
9 1 1 0 0 2 11 3 22 2 3 -74.701658166265574 -66.706284175762121 -11.371982626418896 1 -74.938525790340307 -67.180830687929983 -11.693212063917173 1.0000000000000087 -75.162891558890351 -67.630330670593892 -11.997487035672769 1.0000000000000149 -75.374755471915492 -68.054784123753691 -12.284807541685669 1.00000000000002 -75.574117529415787 -68.454191047409452 -12.55517358195589 1.0000000000000238 -75.760977731391321 -68.828551441561316 -12.80858515648344 1.0000000000000249 -75.935336077841924 -69.177865306209057 -13.045042265268295 1.0000000000000251 -76.097192568767767 -69.502132641352802 -13.264544908310477 1.0000000000000235 -76.246547204168778 -69.801353446992564 -13.467093085609987 1.00000000000002 -76.383399984044942 -70.075527723128317 -13.652686797166821 1.0000000000000149 -76.507750908396247 -70.324655469760046 -13.821326042980969 1.0000000000000082 -77.425828764880237 -72.163955569952037 -15.06638278963382 0.99999999999993971 -78.280667475698664 -73.880058347079583 -16.227088330609831 1.0000000000002403 -79.190431139195113 -75.709586089594836 -17.463644214087235 0.99999999999945988 -80.155974980531781 -77.654160879674933 -18.777170774363704 1.0000000000008533 -81.195372594630953 -79.750126064968583 -20.192232305281962 0.99999999999896794 -82.300560693544199 -81.981227550423128 -21.697844883684667 1.0000000000009823 -83.501224451242322 -84.407427203101662 -23.334480118128791 0.99999999999926537 -84.78864379111937 -87.011079051410974 -25.090198275650103 1.0000000000004208 -86.193172460981614 -89.853762409146682 -27.006540835780417 0.99999999999982658 -87.718649522768374 -92.943153599565363 -29.08861572703411 1.0000000000000422 -89.410813907961398 -96.372219586592394 -31.399081814658082 1
-74.175583050442455 -66.649725759149064 -11.839718043432708 0.74398870643671955 -74.411231935912411 -67.126661243236569 -12.162135702286999 0.74432292654608656 -74.634152493920752 -67.577835557236426 -12.467138309365746 0.74459030263358061 -74.844418453182413 -68.003397922479863 -12.754826741189641 0.74479083469920093 -75.042096636609173 -68.403483583475548 -13.025292425675719 0.74492452274294785 -75.227247030560292 -68.778213948068412 -13.278617436887268 0.74499136676482147 -75.399922844799292 -69.127696708786928 -13.51487457706714 0.74499136676482147 -75.560170563280863 -69.452025945632215 -13.734127446124965 0.74492452274294785 -75.708029985869459 -69.751282210513523 -13.936430498717304 0.74479083469920093 -75.843534261068612 -70.025532593489601 -14.121829089028171 0.7445903026335805 -75.966709909816785 -70.274830770929967 -14.290359503326739 0.74432292654608656 -76.879682503228892 -72.122618104738763 -15.539499661910581 0.74157958603533303 -77.730314231767366 -73.845460989520149 -16.703344294213824 0.73936633547682917 -78.635802338443213 -75.680489505513364 -17.942244087407275 0.73732064969919342 -79.596968557751353 -77.629315291601017 -19.257323348573689 0.73543184402401318 -80.632004356899344 -79.728785134773247 -20.67347186346014 0.73366039122396587 -81.732514988680009 -81.961866825524055 -22.179203837254626 0.73201905686560453 -82.928618264317507 -84.389659981189922 -23.815726824033803 0.73047309617752321 -84.210995062719448 -86.993255668048008 -25.570290289438827 0.72902031632176023 -85.610446145870625 -89.835206270424507 -27.485036209034263 0.72766471148092771 -87.130192983036508 -92.92205954984415 -29.564372236077229 0.72636974481895744 -88.815764077659452 -96.346344910668066 -31.870591020337073 0.72515584517742215
-74.494364872555494 -66.19506148183234 -12.27587919295844 1 -74.72997822679126 -66.669540079822454 -12.598248237547754 1.0000000000000087 -74.953152481007351 -67.118968795743186 -12.903597954850222 1.0000000000000149 -75.16388763520375 -67.543347629594408 -13.191928344865833 1.00000000000002 -75.362183689380458 -67.942676581376148 -13.463239407594591 1.0000000000000238 -75.54804064353759 -68.316955651088563 -13.717531143036508 1.0000000000000249 -75.721458497675002 -68.66618483873151 -13.954803551191564 1.0000000000000251 -75.882437251792695 -68.990364144304962 -14.175056632059775 1.0000000000000235 -76.03097690589081 -69.28949356780906 -14.378290385641147 1.00000000000002 -76.167077459969235 -69.563573109243677 -14.564504811935675 1.0000000000000149 -76.29073891402804 -69.812602768608855 -14.733699910943344 1.0000000000000082 -77.203672579552887 -71.651070231886976 -15.982786807920395 0.99999999999993971 -78.054354580557572 -73.366528210877007 -17.146700223620925 1.0000000000002403 -78.960278718018131 -75.195515361528493 -18.38619659941455 0.99999999999945988 -79.922275052995133 -77.139535682539915 -19.702411634890659 1.0000000000008533 -80.958364577692478 -79.235266356868024 -21.120001869837171 0.99999999999896794 -82.06045838492372 -81.465618768036833 -22.627899963452858 1.0000000000009823 -83.258323113368618 -83.8922250496815 -24.26683299129699 0.99999999999926537 -84.544062083411646 -86.496907062593479 -26.025996620656077 1.0000000000004208 -85.947498690744837 -89.343095908202258 -27.9461955827041 0.99999999999982658 -87.470599094805991 -92.431547161577484 -30.030120000584926 1.0000000000000422 -89.15299436207431 -95.845886976170348 -32.331993579398407 1
0 3
36.190753026958184 3
-6.7720488466895361 12
-1.7512630745064244 10
34.439489952451758 12
9 1 1 0 0 2 10 3 20 2 3 -76.932641044048623 -70.810195385051998 -14.392047956138326 0.99999999999999978 -76.933461889047834 -70.810151311711778 -14.391255874905134 0.99999999999998612 -76.9343101374658 -70.810112051687895 -14.390437258082679 1.0000000000000493 -76.935187248857915 -70.810077563890033 -14.389590680183261 0.99999999999990918 -76.936094682780976 -70.810047807227377 -14.388714715719328 1.0000000000001088 -76.937033898789011 -70.810022740609966 -14.387807939203185 0.9999999999999023 -76.938006356440383 -70.810002322946687 -14.386868925147002 1.0000000000000713 -76.93901351528811 -70.809986513147678 -14.385896248063601 0.99999999999995837 -76.940056834890356 -70.80997527012201 -14.384888482464756 1.000000000000016 -76.94113777480149 -70.809968552779438 -14.383844202863241 0.99999999999999778 -78.085324420622413 -70.807687626304357 -13.278273873669042 1.0000000000000111 -79.13299631156633 -70.811882963454622 -12.071235533281566 0.99999999999996425 -80.103398771564912 -70.805969578598507 -10.738665298225619 1.0000000000000802 -80.903382240801676 -70.812477134110281 -9.3653898319041531 0.99999999999986677 -81.630998544766314 -70.80682059226676 -7.8811912009850928 1.0000000000001683 -82.179069544672686 -70.810554094166704 -6.3745119932562098 0.99999999999983902 -82.617111512248414 -70.808792291765798 -4.8042172803970029 1.0000000000001117 -82.901032022369833 -70.809327755057865 -3.2138976844146256 0.99999999999994793 -83.044914369441145 -70.809247653088363 -1.6067925750574279 1.0000000000000133 -83.044914245604929 -70.809247653088363 1.5414078431419398e-06 1
-76.91883284913844 -71.171302257072895 -14.40537228906695 0.94040202748198409 -76.919974736599499 -71.171302040799205 -14.404271936103997 0.94039595913630014 -76.921116213376422 -71.171301848063749 -14.403171849502096 0.94039055379482994 -76.922257319255962 -71.171301678680379 -14.402071990489269 0.94038580576929298 -76.923398094054747 -71.171301532462877 -14.400972320269526 0.94038170937248877 -76.924538577619543 -71.171301409224853 -14.399872800010174 0.94037825891553095 -76.925678809825897 -71.171301308779903 -14.398773390863646 0.94037544871148282 -76.926818830579194 -71.171301230941424 -14.397674053939429 0.94037327307168284 -76.927958679813216 -71.171301175522814 -14.396574750333937 0.94037172630865795 -76.92909839749052 -71.171301142337313 -14.395475441106452 0.94037080273429319 -78.093701284788281 -71.171289758991435 -13.272027486986454 0.94005812497701635 -79.134766693544449 -71.171311050391026 -12.066763346318167 0.94062976153082767 -80.105179814540904 -71.171280508041093 -10.735287672064413 0.9398293068078496 -80.901004921431124 -71.171314631839394 -9.3684117089545218 0.94070475980419133 -81.633144427035077 -71.17128465237495 -7.8783344458280498 0.93994737791987337 -82.177780199155194 -71.17130458936569 -6.3763484055858877 0.94044558067901785 -82.617596363919901 -71.171295137550217 -4.8034720945938121 0.94021105455144705 -82.900942720856278 -71.171298020563711 -3.2140471026076849 0.94028220802835749 -83.044914369441187 -71.171297588269709 -1.6067925750572556 0.94027157768311076 -83.044914245604929 -71.171297588269709 1.5414077019215711e-06 0.94027157768310854
-77.068663185596847 -71.448877731763389 -14.582203008237819 0.99999999999999978 -77.070081107265381 -71.448903523587205 -14.580869208261271 0.99999999999998612 -77.071475464936896 -71.448926497012593 -14.579554519593009 1.0000000000000493 -77.07284522321919 -71.448946676317533 -14.578259983592329 0.99999999999990918 -77.074189346718015 -71.448964085779963 -14.576986641615976 1.0000000000001088 -77.075506800042803 -71.448978749677948 -14.575735535026267 0.9999999999999023 -77.076796547797997 -71.448990692289286 -14.574507705176124 1.0000000000000713 -77.0780575545933 -71.44899993789214 -14.573304193430765 0.99999999999995837 -77.079288785034038 -71.449006510764306 -14.572126041142981 1.000000000000016 -77.080489203728405 -71.449010435183865 -14.570974289675069 0.99999999999999778 -78.274275238391496 -71.450338735678287 -13.422405573681106 1.0000000000000111 -79.324225952558692 -71.447911030729045 -12.199616103289614 0.99999999999996425 -80.300622603184848 -71.451309692811392 -10.86336082753224 1.0000000000000802 -81.111024788566255 -71.447593196748883 -9.4713835666668658 0.99999999999986677 -81.845724573664 -71.45080824399281 -7.9745861329905487 1.0000000000001683 -82.401236896393087 -71.448693421544533 -6.447219715239294 0.99999999999983902 -82.843768436164851 -71.449688975735327 -4.8603136553817263 1.0000000000001117 -83.13117434173229 -71.449386925284784 -3.2510676364347901 0.99999999999994793 -83.276693086167043 -71.449432052752854 -1.6254136474698262 1.0000000000000133 -83.276692966007559 -71.449432052752854 1.4956426479528773e-06 1
0 3
16.381678772298841 3
38.882843834249101 11
38.898879508378982 9
55.264522606547942 11
5 -63.044914245605398 -93.171297588269979 9.7727352379288445e-15 -2.4492127076447471e-16 -1 -4.9800942239059175e-31 -0.62741444453322781 1.5366714305106558e-16 -0.77868550441822226 -0.77868550441822226 1.9071664326798667e-16 0.62741444453322781 44.841874729922019 5
Triangulations 2
37 55 1 0.0784015954379805
-89.2324476298258 -96.3722195865924 31.5479967519232 -76.9857986409361 -71.448877711072 14.6614433288032 -82.7096403391283 -83.0680556007241 22.5420462705557 -79.5920803088707 -76.7290652847604 18.2455682616965 -83.2766929660076 -71.4494320527529 1.52745687523132e-06 -83.0227696482441 -71.44943277331 3.19537756344452 -82.2673820462658 -71.4494325720284 6.3104476045459 -81.0277359603813 -71.4494291441571 9.27052584284661 -79.3351876139465 -71.4494193728703 11.9979775875448 -78.2244007385569 -71.4494319006025 13.3756498018417 -104.04568257754 -96.3722195865924 3.09547206267801e-06 -103.723602315791 -96.3722195865924 5.12906820948279 -102.762422481906 -96.3722195865924 10.1775509484554 -101.177244094372 -96.3722195865924 15.0661350091488 -98.9929717623903 -96.3722195865924 19.7180162435004 -96.243922411581 -96.3722195865924 24.0601093223722 -92.973286133543 -96.3722195865924 28.0241959732357 -99.4980059302668 -91.3875512114883 5.372571674944 -98.3250645645954 -91.3875512114883 10.6303063569312 -96.3980388306426 -91.3875512114883 15.660826931798 -93.7581173279499 -91.3875512114883 20.3566101351725 -90.4617262202572 -91.3875512114883 24.61728744032 -95.3885086661231 -86.4028828363843 4.76690100123024 -94.3477974930215 -86.4028828363843 9.4319110255086 -92.6380127835096 -86.4028828363843 13.8953216630766 -90.2956997878461 -86.4028828363843 18.0617311608075 -87.3709235312556 -86.4028828363843 21.8420859221123 -91.2790114019794 -81.4182144612803 4.16123032751648 -90.3705304214476 -81.4182144612803 8.233515694086 -88.8779867363766 -81.4182144612803 12.1298163943553 -86.8332822477422 -81.4182144612803 15.7668521864424 -84.280120842254 -81.4182144612803 19.0668844039047 -87.1695141378357 -76.4335460861762 3.55555965380272 -86.3932633498737 -76.4335460861762 7.0351203626634 -85.1179606892436 -76.4335460861762 10.3643111256339 -83.3708647076384 -76.4335460861762 13.4719732120773 -81.1893181532523 -76.4335460861762 16.2916828856971 0.877977817261283 5.12601018634866 0.810585078395766 37.5689306539802 0.853464772486873 22.4441505961543 0.83417421944566 30.6956667729595 -3.14497761912496e-09 37.568209062825 0.158602347788453 37.5682081248697 0.317200042068907 37.5682083868797 0.475987353292357 37.5682128489681 0.6348124998235 37.5682255683332 0.722311622123866 37.5682092608803 1.92254868933223e-25 5.12601018634825 0.125425402465898 5.12601018634825 0.250850804931796 5.12601018634825 0.376276207397693 5.12601018634825 0.501701609863591 5.12601018634825 0.627127012329489 5.12601018634825 0.752552414795386 5.12601018634825 0.146329633589399 11.6145942798746 0.292659270323776 11.6145942798746 0.438988907058153 11.6145942798746 0.585318543792529 11.6145942798746 0.731648180526906 11.6145942798746 0.146329633589399 18.103178373401 0.292659270323776 18.103178373401 0.438988907058153 18.103178373401 0.585318543792529 18.103178373401 0.731648180526906 18.103178373401 0.146329633589399 24.5917624669274 0.292659270323776 24.5917624669274 0.438988907058153 24.5917624669274 0.585318543792529 24.5917624669274 0.731648180526906 24.5917624669274 0.146329633589399 31.0803465604538 0.292659270323776 31.0803465604538 0.438988907058153 31.0803465604538 0.585318543792529 31.0803465604538 0.731648180526906 31.0803465604538 11 12 18 18 23 11 23 18 24 12 13 18 11 23 5 13 14 19 24 19 25 20 19 14 25 19 20 24 18 19 14 15 20 19 18 13 23 24 29 28 33 5 6 33 34 6 5 33 33 28 29 28 5 23 29 25 30 29 28 23 7 34 35 30 34 29 35 34 30 34 7 6 25 26 30 29 34 33 24 25 29 20 26 25 15 16 21 26 20 21 27 26 21 21 16 22 31 30 26 17 1 22 22 3 27 3 22 1 26 27 32 22 27 21 17 22 16 32 27 3 35 31 36 35 30 31 8 36 9 36 8 35 37 9 36 36 31 32 35 8 7 32 4 37 4 32 3 10 37 2 10 9 37 2 37 4 37 36 32 31 26 32 20 15 21
39 57 1 0.0790552166936619
-77.0686633466579 -71.448877713789 -14.5822028531059 -89.4108139079614 -96.3722195865924 -31.3990818146581 -81.5087340884284 -80.3857500185642 -20.6203386089089 -85.0392781837326 -87.520361203761 -25.4329727826009 -83.2766929660076 -71.4494320527529 1.52745687523132e-06 -77.6986243849934 -71.4493794983623 -13.9496300609495 -78.4860548615524 -71.4494302846038 -13.0727126857924 -79.5639789456485 -71.4494199666639 -11.6809715403802 -80.9425727855363 -71.449428690262 -9.43389361389356 -82.1297771698704 -71.4494329008421 -6.71514275012489 -82.9502604666629 -71.4494321735705 -3.61968589732019 -83.194918462941 -71.449432028495 -1.8171888214528 -104.04568257754 -96.3722195865924 3.09547206267801e-06 -93.1090626450922 -96.3722195865924 -27.8784860568621 -96.3410459308791 -96.3722195865924 -23.9255223267106 -99.0566388748562 -96.3722195865924 -19.6014972141422 -101.213725294224 -96.3722195865924 -14.9734721071579 -102.778850894535 -96.3722195865924 -10.1132231354741 -103.727742112979 -96.3722195865924 -5.0961279931573 -90.5776792137062 -91.3875512120318 -24.4875330120746 -93.8348084794997 -91.3875512120318 -20.2404257087573 -96.4422822833082 -91.3875512120318 -15.5662528554674 -98.3450838853612 -91.3875512120318 -10.5636377830074 -99.5030648705828 -91.3875512120318 -5.33813383239696 -87.4738046980473 -86.4028828374711 -21.7269592100756 -90.3637452512645 -86.4028828374711 -17.9586446520314 -92.6772685020041 -86.4028828374711 -13.8114092864192 -94.3655599592238 -86.4028828374711 -9.37275825654804 -95.3929972931336 -86.4028828374711 -4.7363454692322 -84.3699301823884 -81.4182144629105 -18.9663854080766 -86.8926820230293 -81.4182144629105 -15.6768635953055 -88.9122547207 -81.4182144629105 -12.056565717371 -90.3860360330865 -81.4182144629105 -8.18187873008871 -91.2829297156843 -81.4182144629105 -4.13455710606744 -81.2660556667295 -76.4335460883498 -16.2058116060777 -83.4216187947941 -76.4335460883498 -13.3950825385796 -85.1472409393959 -76.4335460883498 -10.3017221483227 -86.4065121069491 -76.4335460883498 -6.99099920362938 -87.1728621382351 -76.4335460883498 -3.53276874290268 5.47826724469562 37.5689306504436 5.41087450584487 5.12601018634813 5.44266666631802 25.9357299801122 5.42541102684416 16.6485475306283 6.2831853056071 37.568209062825 5.5223974700703 37.5682774733103 5.58065914511976 37.5682113644392 5.66769632926919 37.5682247953871 5.79809165749371 37.5682134398072 5.94485713950835 37.5682079588602 6.10330589825669 37.5682089055557 6.19324546352981 37.5682090944016 6.28318530717959 5.12601018634823 5.53549033460697 5.12601018634823 5.66010616336908 5.12601018634823 5.78472199213118 5.12601018634823 5.90933782089328 5.12601018634823 6.03395364965538 5.12601018634823 6.15856947841749 5.12601018634823 5.55625963940066 11.6145942791672 5.70164477295644 11.6145942791672 5.84702990651223 11.6145942791672 5.99241504006802 11.6145942791672 6.1378001736238 11.6145942791672 5.55625963940066 18.1031783719863 5.70164477295644 18.1031783719863 5.84702990651223 18.1031783719863 5.99241504006802 18.1031783719863 6.1378001736238 18.1031783719863 5.55625963940066 24.5917624648054 5.70164477295644 24.5917624648054 5.84702990651223 24.5917624648054 5.99241504006802 24.5917624648054 6.1378001736238 24.5917624648054 5.55625963940066 31.0803465576245 5.70164477295644 31.0803465576245 5.84702990651223 31.0803465576245 5.99241504006802 31.0803465576245 6.1378001736238 31.0803465576245 2 14 20 4 20 25 20 4 2 14 15 20 15 16 21 20 26 25 20 21 26 22 26 21 25 26 30 31 26 27 21 20 15 4 25 3 3 30 35 30 3 25 1 35 6 35 1 3 6 35 7 30 31 35 8 35 36 9 36 37 8 7 35 8 36 9 32 36 31 36 35 31 30 26 31 22 21 16 22 17 23 17 22 16 22 28 27 28 22 23 28 23 24 27 28 32 17 18 23 22 27 26 18 19 24 24 13 29 13 24 19 29 13 5 29 28 24 24 23 18 28 29 33 32 33 37 33 32 28 37 38 10 38 37 33 10 38 11 37 10 9 33 34 38 32 37 36 39 11 38 39 34 5 39 12 11 12 39 5 34 29 5 39 38 34 33 29 34 27 32 31
TShapes 18
Ve
0.0001
-76.9857986409361 -71.448877711072 14.6614433288032
0 0
0101100
*
Ve
0.0001
-89.2324476298258 -96.3722195865924 31.5479967519232
0 0
0101100
*
Ed
1.10543592251834e-05 1 1 0
1 1 0 147.394967202616 181.780806642046
2 1 2 0 147.394967202616 181.780806642046
2 2 1 6 147.394967202616 181.780806642046
4 G1 2 0 1 6
6 1 1 1
0
0101000
-18 0 +17 0 *
Ve
0.0001
-83.2766929660076 -71.4494320527529 1.52745687523132e-06
0 0
0101100
*
Ed
8.69385664426782e-05 1 1 0
1 2 0 55.2645225745154 71.7616527782844
2 3 3 0 55.2645225745154 71.7616527782844
2 4 1 6 55.2645225745154 71.7616527782844
4 G1 3 0 1 6
6 2 1 1
0
0101000
+15 0 -18 0 *
Ve
1e-07
-104.04568257754 -96.3722195865924 3.09547206267801e-06
0 0
0101100
*
Ed
1e-07 1 1 0
1 3 0 -3.30779246065452e-15 0.877977817261281
2 5 4 0 -3.30779246065452e-15 0.877977817261281
2 6 1 6 -3.30779246065452e-15 0.877977817261281
4 G1 4 0 1 6
6 3 1 1
0
0101000
-17 0 +13 0 *
Ed
1e-07 1 1 0
1 4 0 5.12601018634823 37.568209062825
3 7 8CN 1 0 5.12601018634823 37.568209062825
6 4 2 7
6 5 1 7
0
0101000
-15 8 +13 8 *
Wi
0101100
+16 0 -14 0 +12 0 -11 6 *
Fa
0 1e-07 1 4
2 1
0111000
+10 5 *
Ve
0.0001
-77.0686633466579 -71.448877713789 -14.5822028531059
0 0
0101100
*
Ve
0.0001
-89.4108139079614 -96.3722195865924 -31.3990818146581
0 0
0101100
*
Ed
1.10543813420433e-05 1 1 0
1 5 0 0.0536505184427909 34.4394899524518
2 9 5 0 0.0536505184427909 34.4394899524518
2 10 1 6 0.0536505184427909 34.4394899524518
4 G1 5 0 1 6
6 6 2 1
0
0101000
+8 0 -7 0 *
Ed
8.62952937020576e-05 1 1 0
1 6 0 38.8828438342491 55.2645226065479
2 11 6 0 38.8828438342491 55.2645226065479
2 12 1 6 38.8828438342491 55.2645226065479
4 G1 6 0 1 6
6 7 2 1
0
0101000
+8 0 -15 0 *
Ed
1e-07 1 1 0
1 7 0 0.0202572595480625 0.892568060882781
2 13 7 0 0.0202572595480625 0.892568060882781
2 14 1 6 0.0202572595480625 0.892568060882781
4 G1 7 0 1 6
6 8 2 1
0
0101000
+7 0 -13 0 *
Wi
0101100
+6 0 -5 0 +4 0 +11 6 *
Fa
0 1e-07 1 4
2 2
0111000
+3 5 *
Co
1100000
+9 1 +2 1 *
+1 0
\ No newline at end of file
Point (1) = {-50, -250, 0, 0.1};
Point (2) = {50, -250, 0, 20};
Point (3) = {50, 550, 0, 0.1};
Point (4) = {-50, 550, 0, 0.1};
Point (5) = {-50, -250, 50, 0.1};
Point (6) = {50, -250, 50, 20};
Point (7) = {50, 550, 50, 0.1};
Point (8) = {-50, 550, 50, 0.1};
Point (9) = {0, 0, 0, 0.1};
Point (10) = {0, 0, 50, 0.1};
Point (13) = {-10, 0, 0, 0.1};
Point (14) = {10, 0, 0, 0.1};
Point (15) = {10, 0, 50, 0.1};
Point (16) = {-10, 0, 50, 0.1};
Point (17) = {0, 10, 0, 20};
Point (18) = {0, -10, 0, 20};
Point (20) = {0, 10, 50, 20};
Point (21) = {0, -10, 50, 20};
Line (1) = {1, 2};
Line (2) = {2, 6};
Line (3) = {6, 5};
Line (4) = {5, 1};
Line (5) = {3, 7};
Line (6) = {7, 8};
Line (7) = {8, 4};
Line (8) = {4, 3};
Line (9) = {2, 3};
Line (10) = {6, 7};
Line (11) = {5, 8};
Line (12) = {4, 1};
Line (13) = {15, 14};
Line (14) = {20, 17};
Line (15) = {16, 13};
Line (16) = {21, 18};
Circle (17) = {15, 10, 20};
Circle (18) = {20, 10, 16};
Circle (19) = {16, 10, 21};
Circle (20) = {21, 10, 15};
Circle (21) = {14, 9, 17};
Circle (22) = {17, 9, 13};
Circle (23) = {13, 9, 18};
Circle (24) = {18, 9, 14};
Line Loop (26) = {24, -13, -20, 16};
Ruled Surface (26) = {26};
Line Loop (28) = {17, 14, -21, -13};
Ruled Surface (28) = {28};
Line Loop (30) = {18, 15, -22, -14};
Ruled Surface (30) = {30};
Line Loop (32) = {19, 16, -23, -15};
Ruled Surface (32) = {32};
Line Loop (34) = {2, 3, 4, 1};
Plane Surface (34) = {34};
Line Loop (36) = {11, 7, 12, -4};
Plane Surface (36) = {36};
Line Loop (38) = {6, 7, 8, 5};
Plane Surface (38) = {38};
Line Loop (40) = {10, -5, -9, 2};
Plane Surface (40) = {40};
Line Loop (43) = {9, -8, 12, 1, -23, -22, -21, -24};
Plane Surface (43) = {43};
Line Loop (46) = {3, 11, -6, -10, -20, -19, -18, -17};
Plane Surface (46) = {46};
Surface Loop (48) = {46, 34, 40, 38, 36, 43, 32, 26, 28, 30};
Volume (48) = {48};
Physical Volume (49) = {48};
View " polynomial " {
SL(0,0,0,0,-0.5,0){ 5.173046553042295E-01, 5.638691340390936E-01, 6.004998155675270E-01, 6.261146405868998E-01};
SL(0,-0.5,0,0,-1,0){ 6.260818770219654E-01, 6.399140282367684E-01, 6.413615211583964E-01, 6.301261213103514E-01};
SL(0,-1,0,0,-1.5,0){ 6.302250504970187E-01, 6.060686677975010E-01, 5.701157196362138E-01, 5.223287082218013E-01};
SL(0,-1.5,0,0,-2,0){ 5.220468454489777E-01, 4.619097321886671E-01, 3.959444519907308E-01, 3.472685701426845E-01};
SL(0,-2,0,0,-2.5,0){ 3.454988595177433E-01, 3.344073380157798E-01, 3.383707797330285E-01, 3.402121831749315E-01};
SL(0,-2.5,0,0,-3,0){ 3.404374729207975E-01, 3.375686708172767E-01, 3.380090600195914E-01, 3.391266809125149E-01};
SL(0,-3,0,0,-3.44444,0){ 3.384794540907117E-01, 3.384276283637216E-01, 3.383617387999355E-01, 3.383175120052098E-01};
SL(0,-3.44444,0,0,-3.88889,0){ 3.383177458443148E-01, 3.383152988150367E-01, 3.383443688880302E-01, 3.383791076697003E-01};
SL(0,-3.88889,0,0,-4.33333,0){ 3.383781971793124E-01, 3.383962803486706E-01, 3.383895052415099E-01, 3.383706656213244E-01};
SL(0,-4.33333,0,0,-4.77778,0){ 3.383715448710744E-01, 3.383558943054332E-01, 3.383551194455377E-01, 3.383640383771190E-01};
SL(0,-4.77778,0,0,-5.22222,0){ 3.383634104852095E-01, 3.383731784409487E-01, 3.383746989929187E-01, 3.383702929371438E-01};
SL(0,-5.22222,0,0,-5.66667,0){ 3.383706586240652E-01, 3.383654899838871E-01, 3.383649756827493E-01, 3.383674390630329E-01};
SL(0,-5.66667,0,0,-6.11111,0){ 3.383672945868560E-01, 3.383695025692560E-01, 3.383691988895699E-01, 3.383678630992867E-01};
SL(0,-6.11111,0,0,-6.55556,0){ 3.383678583646247E-01, 3.383673598910720E-01, 3.383678400704028E-01, 3.383683346390896E-01};
SL(0,-6.55556,0,0,-7,0){ 3.383683820830810E-01, 3.383682222013114E-01, 3.383679813395275E-01, 3.383679353121905E-01};
SL(0,-7,0,0.140462,-7.4323,0){ 2.255287265275449E-01, 2.255287959308526E-01, 2.255288140772565E-01, 2.255287926557931E-01};
SL(0.140462,-7.4323,0,0.280924,-7.8646,0){ 2.255287929567902E-01, 2.255287770507408E-01, 2.255287835682999E-01, 2.255287924151700E-01};
SL(0.280924,-7.8646,0,0.421386,-8.2969,0){ 2.255287934430935E-01, 2.255287898623048E-01, 2.255287864444454E-01, 2.255287869767378E-01};
SL(0.421386,-8.2969,0,0.561849,-8.72919,0){ 2.255287868809854E-01, 2.255287886814956E-01, 2.255287882834881E-01, 2.255287875531762E-01};
SL(0.561849,-8.72919,0,0.702311,-9.16149,0){ 2.255287874415387E-01, 2.255287878735588E-01, 2.255287880799025E-01, 2.255287879363836E-01};
SL(0.702311,-9.16149,0,0.842773,-9.59379,0){ 2.255287879175017E-01, 2.255287878769089E-01, 2.255287879488814E-01, 2.255287879615029E-01};
SL(0.842773,-9.59379,0,0.983235,-10.0261,0){ 2.255287879636657E-01, 2.255287879234281E-01, 2.255287879327842E-01, 2.255287879455365E-01};
SL(0.983235,-10.0261,0,1.1237,-10.4584,0){ 2.255287879476551E-01, 2.255287879356891E-01, 2.255287879350619E-01, 2.255287879391330E-01};
SL(1.1237,-10.4584,0,1.26416,-10.8907,0){ 2.255287879398892E-01, 2.255287879373607E-01, 2.255287879366433E-01, 2.255287879376169E-01};
SL(1.26416,-10.8907,0,1.40462,-11.323,0){ 2.255287879378342E-01, 2.255287879373766E-01, 2.255287879371327E-01, 2.255287879373607E-01};
SL(1.40462,-11.323,0,1.54508,-11.7553,0){ 2.255287879374190E-01, 2.255287879373483E-01, 2.255287879372511E-01, 2.255287879372671E-01};
SL(0,-7,0,-0.140462,-7.4323,0){ 2.255287265275449E-01, 2.255287959308526E-01, 2.255288140772565E-01, 2.255287926557931E-01};
SL(-0.140462,-7.4323,0,-0.280924,-7.8646,0){ 2.255287929567902E-01, 2.255287770507408E-01, 2.255287835682999E-01, 2.255287924151700E-01};
SL(-0.280924,-7.8646,0,-0.421386,-8.2969,0){ 2.255287934430935E-01, 2.255287898623048E-01, 2.255287864444454E-01, 2.255287869767378E-01};
SL(-0.421386,-8.2969,0,-0.561849,-8.72919,0){ 2.255287868809854E-01, 2.255287886814956E-01, 2.255287882834881E-01, 2.255287875531762E-01};
SL(-0.561849,-8.72919,0,-0.702311,-9.16149,0){ 2.255287874415387E-01, 2.255287878735588E-01, 2.255287880799025E-01, 2.255287879363836E-01};
SL(-0.702311,-9.16149,0,-0.842773,-9.59379,0){ 2.255287879175017E-01, 2.255287878769089E-01, 2.255287879488814E-01, 2.255287879615029E-01};
SL(-0.842773,-9.59379,0,-0.983235,-10.0261,0){ 2.255287879636657E-01, 2.255287879234281E-01, 2.255287879327842E-01, 2.255287879455365E-01};
SL(-0.983235,-10.0261,0,-1.1237,-10.4584,0){ 2.255287879476551E-01, 2.255287879356891E-01, 2.255287879350619E-01, 2.255287879391330E-01};
SL(-1.1237,-10.4584,0,-1.26416,-10.8907,0){ 2.255287879398892E-01, 2.255287879373607E-01, 2.255287879366433E-01, 2.255287879376169E-01};
SL(-1.26416,-10.8907,0,-1.40462,-11.323,0){ 2.255287879378342E-01, 2.255287879373766E-01, 2.255287879371327E-01, 2.255287879373607E-01};
SL(-1.40462,-11.323,0,-1.54508,-11.7553,0){ 2.255287879374190E-01, 2.255287879373483E-01, 2.255287879372511E-01, 2.255287879372671E-01};
SL(-1.54508,-11.7553,0,-1.68242,-12.178,0){ 2.820232776904312E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-1.68242,-12.178,0,-1.81977,-12.6007,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-1.81977,-12.6007,0,-1.95711,-13.0234,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-1.95711,-13.0234,0,-2.09445,-13.4461,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-2.09445,-13.4461,0,-2.23179,-13.8687,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-2.23179,-13.8687,0,-2.36913,-14.2914,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-2.36913,-14.2914,0,-2.50647,-14.7141,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-2.50647,-14.7141,0,-2.64381,-15.1368,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(-2.64381,-15.1368,0,-2.78115,-15.5595,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(1.54508,-11.7553,0,1.68242,-12.178,0){ 2.820232776904312E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(1.68242,-12.178,0,1.81977,-12.6007,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(1.81977,-12.6007,0,1.95711,-13.0234,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(1.95711,-13.0234,0,2.09445,-13.4461,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(2.09445,-13.4461,0,2.23179,-13.8687,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(2.23179,-13.8687,0,2.36913,-14.2914,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(2.36913,-14.2914,0,2.50647,-14.7141,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(2.50647,-14.7141,0,2.64381,-15.1368,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
SL(2.64381,-15.1368,0,2.78115,-15.5595,0){ 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01, 2.820232776903976E-01};
INTERPOLATION_SCHEME
{{-6.250000000000000E-02, 6.250000000000000E-02, 5.625000000000000E-01,-5.625000000000000E-01}
,{ 5.625000000000000E-01,-1.687500000000000E+00,-5.625000000000000E-01, 1.687500000000000E+00}
,{ 5.625000000000000E-01, 1.687500000000000E+00,-5.625000000000000E-01,-1.687500000000000E+00}
,{-6.250000000000000E-02,-6.250000000000000E-02, 5.625000000000000E-01, 5.625000000000000E-01}
}
{{0,0,0}
,{1,0,0}
,{2,0,0}
,{3,0,0}
};
};
Merge "deform.pos";
fact = 0.5; // deformation factor
PostProcessing.Format = 3; // save view as STL
For t In {0 : View[0].NbTimeStep - 1}
Plugin(Warp).iView = 0;
Plugin(Warp).dView = 0;
Plugin(Warp).TimeStep = t;
Plugin(Warp).Factor = fact;
Plugin(Warp).Run;
Save View[0] Sprintf("deform%g.stl", t);
// reset
Plugin(Warp).Factor = -fact;
Plugin(Warp).Run;
EndFor
View "visible_Combine" {
TIME{0,1,2,3};
VT(0.12769368,0.48850822,0,0.09387865200000001,0.21606276,0,0.30170882,0.31749481,0){0,0,0.23608739,0,0,0.039927481,0,0,0.18127988,0,0,0.283304868,0,0,0.0479129772,0,0,0.217535856,0,0,0.354131085,0,0,0.0598912215,0,0,0.27191982,0,0,0.47217478,0,0,0.079854962,0,0,0.36255976};
VT(-0.5421228,-0.11260696,0,-0.76457788,-0.080568783,0,-0.7261900999999999,-0.30622169,0){0,0,0.29334969,0,0,0.58004414,0,0,0.60510213,0,0,0.352019628,0,0,0.696052968,0,0,0.726122556,0,0,0.440024535,0,0,0.8700662100000001,0,0,0.907653195,0,0,0.58669938,0,0,1.16008828,0,0,1.21020426};
VT(0.30679003,0.71918631,0,0.043011361,0.73950988,0,0.12769368,0.48850822,0){0,0,0.59405992,0,0,0.53333204,0,0,0.23608739,0,0,0.7128719039999999,0,0,0.6399984479999999,0,0,0.283304868,0,0,0.89108988,0,0,0.7999980600000001,0,0,0.354131085,0,0,1.18811984,0,0,1.06666408,0,0,0.47217478};
VT(1,0.6,0,0.84832091,0.84974074,0,0.69212735,0.70317181,0){0,0,1.3402922,0,0,1.4269182,0,0,0.95455084,0,0,1.60835064,0,0,1.71230184,0,0,1.145461008,0,0,2.0104383,0,0,2.1403773,0,0,1.43182626,0,0,2.6805844,0,0,2.8538364,0,0,1.90910168};
VT(-1,-0.6,0,-0.84971248,-0.848268,0,-0.70289226,-0.69159403,0){0,0,1.3413455,0,0,1.4267533,0,0,0.95344494,0,0,1.6096146,0,0,1.71210396,0,0,1.144133928,0,0,2.01201825,0,0,2.14012995,0,0,1.43016741,0,0,2.682691,0,0,2.8535066,0,0,1.90688988};
VT(-0.29614927,-0.68911075,0,-0.15018816,-0.84801006,0,0,-0.6,0){0,0,0.54324782,0,0,0.7271253,0,0,0.34037099,0,0,0.6518973840000001,0,0,0.87255036,0,0,0.408445188,0,0,0.8148717300000001,0,0,1.09068795,0,0,0.5105564849999999,0,0,1.08649564,0,0,1.4542506,0,0,0.68074198};
VT(-0.4,-1,0,-0.15018816,-0.84801006,0,-0.29614927,-0.68911075,0){0,0,1.1400056,0,0,0.7271253,0,0,0.54324782,0,0,1.36800672,0,0,0.87255036,0,0,0.6518973840000001,0,0,1.7100084,0,0,1.09068795,0,0,0.8148717300000001,0,0,2.2800112,0,0,1.4542506,0,0,1.08649564};
VT(-0.70289226,-0.69159403,0,-0.84971248,-0.848268,0,-0.6,-1,0){0,0,0.95344494,0,0,1.4267533,0,0,1.3402345,0,0,1.144133928,0,0,1.71210396,0,0,1.6082814,0,0,1.43016741,0,0,2.14012995,0,0,2.01035175,0,0,1.90688988,0,0,2.8535066,0,0,2.680469};
VT(0.68845064,0.29742567,0,0.84793591,0.15031831,0,1,0.4,0){0,0,0.54289424,0,0,0.72705167,0,0,1.1400094,0,0,0.6514730879999999,0,0,0.8724620040000001,0,0,1.36801128,0,0,0.81434136,0,0,1.090577505,0,0,1.7100141,0,0,1.08578848,0,0,1.45410334,0,0,2.2800188};
VT(0.6,0,0,0.84793591,0.15031831,0,0.68845064,0.29742567,0){0,0,0.34012917,0,0,0.72705167,0,0,0.54289424,0,0,0.408155004,0,0,0.8724620040000001,0,0,0.6514730879999999,0,0,0.510193755,0,0,1.090577505,0,0,0.81434136,0,0,0.68025834,0,0,1.45410334,0,0,1.08578848};
VT(0.69212735,0.70317181,0,0.84832091,0.84974074,0,0.6,1,0){0,0,0.95455084,0,0,1.4269182,0,0,1.3413909,0,0,1.145461008,0,0,1.71230184,0,0,1.60966908,0,0,1.43182626,0,0,2.1403773,0,0,2.01208635,0,0,1.90910168,0,0,2.8538364,0,0,2.6827818};
VT(0.12769368,0.48850822,0,0.37038152,0.50386299,0,0.30679003,0.71918631,0){0,0,0.23608739,0,0,0.38031894,0,0,0.59405992,0,0,0.283304868,0,0,0.456382728,0,0,0.7128719039999999,0,0,0.354131085,0,0,0.57047841,0,0,0.89108988,0,0,0.47217478,0,0,0.76063788,0,0,1.18811984};
VT(0.30170882,0.31749481,0,0.37038152,0.50386299,0,0.12769368,0.48850822,0){0,0,0.18127988,0,0,0.38031894,0,0,0.23608739,0,0,0.217535856,0,0,0.456382728,0,0,0.283304868,0,0,0.27191982,0,0,0.57047841,0,0,0.354131085,0,0,0.36255976,0,0,0.76063788,0,0,0.47217478};
VT(-0.7261900999999999,-0.30622169,0,-0.48993004,-0.34456746,0,-0.5421228,-0.11260696,0){0,0,0.60510213,0,0,0.34565331,0,0,0.29334969,0,0,0.726122556,0,0,0.414783972,0,0,0.352019628,0,0,0.907653195,0,0,0.518479965,0,0,0.440024535,0,0,1.21020426,0,0,0.69130662,0,0,0.58669938};
VT(0.30679003,0.71918631,0,0.50076357,0.81140902,0,0.4,1,0){0,0,0.59405992,0,0,0.90095104,0,0,1.144558,0,0,0.7128719039999999,0,0,1.081141248,0,0,1.3734696,0,0,0.89108988,0,0,1.35142656,0,0,1.716837,0,0,1.18811984,0,0,1.80190208,0,0,2.289116};
VT(-1,-0.4,0,-0.81220583,-0.50021121,0,-0.7261900999999999,-0.30622169,0){0,0,1.1449524,0,0,0.90166921,0,0,0.60510213,0,0,1.37394288,0,0,1.082003052,0,0,0.726122556,0,0,1.7174286,0,0,1.352503815,0,0,0.907653195,0,0,2.2899048,0,0,1.80333842,0,0,1.21020426};
VT(0.4,1,0,0.19528035,0.88414987,0,0.30679003,0.71918631,0){0,0,1.144558,0,0,0.8102247,0,0,0.59405992,0,0,1.3734696,0,0,0.9722696399999999,0,0,0.7128719039999999,0,0,1.716837,0,0,1.21533705,0,0,0.89108988,0,0,2.289116,0,0,1.6204494,0,0,1.18811984};
VT(-0.7261900999999999,-0.30622169,0,-0.88909151,-0.20108716,0,-1,-0.4,0){0,0,0.60510213,0,0,0.82235965,0,0,1.1449524,0,0,0.726122556,0,0,0.9868315799999999,0,0,1.37394288,0,0,0.907653195,0,0,1.233539475,0,0,1.7174286,0,0,1.21020426,0,0,1.6447193,0,0,2.2899048};
VT(0.69212735,0.70317181,0,0.79278602,0.50016561,0,1,0.6,0){0,0,0.95455084,0,0,0.86850078,0,0,1.3402922,0,0,1.145461008,0,0,1.042200936,0,0,1.60835064,0,0,1.43182626,0,0,1.30275117,0,0,2.0104383,0,0,1.90910168,0,0,1.73700156,0,0,2.6805844};
VT(1,0.4,0,0.79278602,0.50016561,0,0.68845064,0.29742567,0){0,0,1.1400094,0,0,0.86850078,0,0,0.54289424,0,0,1.36801128,0,0,1.042200936,0,0,0.6514730879999999,0,0,1.7100141,0,0,1.30275117,0,0,0.81434136,0,0,2.2800188,0,0,1.73700156,0,0,1.08578848};
VT(-0.29614927,-0.68911075,0,-0.49970002,-0.79249012,0,-0.4,-1,0){0,0,0.54324782,0,0,0.86750281,0,0,1.1400056,0,0,0.6518973840000001,0,0,1.041003372,0,0,1.36800672,0,0,0.8148717300000001,0,0,1.301254215,0,0,1.7100084,0,0,1.08649564,0,0,1.73500562,0,0,2.2800112};
VT(-0.6,-1,0,-0.49970002,-0.79249012,0,-0.70289226,-0.69159403,0){0,0,1.3402345,0,0,0.86750281,0,0,0.95344494,0,0,1.6082814,0,0,1.041003372,0,0,1.144133928,0,0,2.01035175,0,0,1.301254215,0,0,1.43016741,0,0,2.680469,0,0,1.73500562,0,0,1.90688988};
VT(-0.097376676,0.37012027,0,0.09387865200000001,0.21606276,0,0.12769368,0.48850822,0){0,0,0.13384161,0,0,0.039927481,0,0,0.23608739,0,0,0.160609932,0,0,0.0479129772,0,0,0.283304868,0,0,0.200762415,0,0,0.0598912215,0,0,0.354131085,0,0,0.26768322,0,0,0.079854962,0,0,0.47217478};
VT(0.46505257,0.18920403,0,0.28472232,0.147503,0,0.4,0,0){0,0,0.24153004,0,0,0.095759319,0,0,0.15186115,0,0,0.289836048,0,0,0.1149111828,0,0,0.18223338,0,0,0.36229506,0,0,0.1436389785,0,0,0.227791725,0,0,0.48306008,0,0,0.191518638,0,0,0.3037223};
VT(0.30170882,0.31749481,0,0.28472232,0.147503,0,0.46505257,0.18920403,0){0,0,0.18127988,0,0,0.095759319,0,0,0.24153004,0,0,0.217535856,0,0,0.1149111828,0,0,0.289836048,0,0,0.27191982,0,0,0.1436389785,0,0,0.36229506,0,0,0.36255976,0,0,0.191518638,0,0,0.48306008};
VT(-0.5069458,0.52411158,0,-0.28048336,0.5090566,0,-0.41369197,0.73184535,0){0,0,0.5208650500000001,0,0,0.32465226,0,0,0.69052686,0,0,0.6250380600000001,0,0,0.389582712,0,0,0.8286322319999999,0,0,0.7812975750000001,0,0,0.48697839,0,0,1.03579029,0,0,1.0417301,0,0,0.6493045200000001,0,0,1.38105372};
VT(-0.41369197,0.73184535,0,-0.28048336,0.5090566,0,-0.18314711,0.6994734500000001,0){0,0,0.69052686,0,0,0.32465226,0,0,0.51294111,0,0,0.8286322319999999,0,0,0.389582712,0,0,0.6155293319999999,0,0,1.03579029,0,0,0.48697839,0,0,0.769411665,0,0,1.38105372,0,0,0.6493045200000001,0,0,1.02588222};
VT(0,-0.6,0,-0.18237993,-0.47217714,0,-0.29614927,-0.68911075,0){0,0,0.34037099,0,0,0.24651427,0,0,0.54324782,0,0,0.408445188,0,0,0.295817124,0,0,0.6518973840000001,0,0,0.5105564849999999,0,0,0.369771405,0,0,0.8148717300000001,0,0,0.68074198,0,0,0.49302854,0,0,1.08649564};
VT(-0.70289226,-0.69159403,0,-0.81220583,-0.50021121,0,-1,-0.6,0){0,0,0.95344494,0,0,0.90166921,0,0,1.3413455,0,0,1.144133928,0,0,1.082003052,0,0,1.6096146,0,0,1.43016741,0,0,1.352503815,0,0,2.01201825,0,0,1.90688988,0,0,1.80333842,0,0,2.682691};
VT(0.68845064,0.29742567,0,0.46505257,0.18920403,0,0.6,0,0){0,0,0.54289424,0,0,0.24153004,0,0,0.34012917,0,0,0.6514730879999999,0,0,0.289836048,0,0,0.408155004,0,0,0.81434136,0,0,0.36229506,0,0,0.510193755,0,0,1.08578848,0,0,0.48306008,0,0,0.68025834};
VT(0.6,1,0,0.50076357,0.81140902,0,0.69212735,0.70317181,0){0,0,1.3413909,0,0,0.90095104,0,0,0.95455084,0,0,1.60966908,0,0,1.081141248,0,0,1.145461008,0,0,2.01208635,0,0,1.35142656,0,0,1.43182626,0,0,2.6827818,0,0,1.80190208,0,0,1.90910168};
VT(-0.72720733,0.43583582,0,-0.5069458,0.52411158,0,-0.6529472200000001,0.66226976,0){0,0,0.70414594,0,0,0.5208650500000001,0,0,0.8529703199999999,0,0,0.844975128,0,0,0.6250380600000001,0,0,1.023564384,0,0,1.05621891,0,0,0.7812975750000001,0,0,1.27945548,0,0,1.40829188,0,0,1.0417301,0,0,1.70594064};
VT(-0.72720733,0.43583582,0,-0.5562586,0.36467285,0,-0.5069458,0.52411158,0){0,0,0.70414594,0,0,0.43706793,0,0,0.5208650500000001,0,0,0.844975128,0,0,0.5244815159999999,0,0,0.6250380600000001,0,0,1.05621891,0,0,0.655601895,0,0,0.7812975750000001,0,0,1.40829188,0,0,0.87413586,0,0,1.0417301};
VT(1,0.8,0,0.84832091,0.84974074,0,1,0.6,0){0,0,1.6351217,0,0,1.4269182,0,0,1.3402922,0,0,1.96214604,0,0,1.71230184,0,0,1.60835064,0,0,2.45268255,0,0,2.1403773,0,0,2.0104383,0,0,3.2702434,0,0,2.8538364,0,0,2.6805844};
VT(-1,-0.8,0,-0.84971248,-0.848268,0,-1,-0.6,0){0,0,1.6350425,0,0,1.4267533,0,0,1.3413455,0,0,1.962051,0,0,1.71210396,0,0,1.6096146,0,0,2.45256375,0,0,2.14012995,0,0,2.01201825,0,0,3.270085,0,0,2.8535066,0,0,2.682691};
VT(-0.6,-1,0,-0.84971248,-0.848268,0,-0.8,-1,0){0,0,1.3402345,0,0,1.4267533,0,0,1.6351469,0,0,1.6082814,0,0,1.71210396,0,0,1.96217628,0,0,2.01035175,0,0,2.14012995,0,0,2.45272035,0,0,2.680469,0,0,2.8535066,0,0,3.2702938};
VT(0,-0.6,0,-0.15018816,-0.84801006,0,0,-0.8,0){0,0,0.34037099,0,0,0.7271253,0,0,0.63521318,0,0,0.408445188,0,0,0.87255036,0,0,0.762255816,0,0,0.5105564849999999,0,0,1.09068795,0,0,0.9528197700000001,0,0,0.68074198,0,0,1.4542506,0,0,1.27042636};
VT(-0.2,-1,0,-0.15018816,-0.84801006,0,-0.4,-1,0){0,0,1.0350883,0,0,0.7271253,0,0,1.1400056,0,0,1.24210596,0,0,0.87255036,0,0,1.36800672,0,0,1.55263245,0,0,1.09068795,0,0,1.7100084,0,0,2.0701766,0,0,1.4542506,0,0,2.2800112};
VT(0.8,0,0,0.84793591,0.15031831,0,0.6,0,0){0,0,0.63526591,0,0,0.72705167,0,0,0.34012917,0,0,0.7623190919999999,0,0,0.8724620040000001,0,0,0.408155004,0,0,0.952898865,0,0,1.090577505,0,0,0.510193755,0,0,1.27053182,0,0,1.45410334,0,0,0.68025834};
VT(1,0.4,0,0.84793591,0.15031831,0,1,0.2,0){0,0,1.1400094,0,0,0.72705167,0,0,1.0350863,0,0,1.36801128,0,0,0.8724620040000001,0,0,1.24210356,0,0,1.7100141,0,0,1.090577505,0,0,1.55262945,0,0,2.2800188,0,0,1.45410334,0,0,2.0701726};
VT(0.6,1,0,0.84832091,0.84974074,0,0.8,1,0){0,0,1.3413909,0,0,1.4269182,0,0,1.6350174,0,0,1.60966908,0,0,1.71230184,0,0,1.96202088,0,0,2.01208635,0,0,2.1403773,0,0,2.4525261,0,0,2.6827818,0,0,2.8538364,0,0,3.2700348};
VT(0,0,0,-0.13062954,0.15354208,0,-0.20237428,-0.094234203,0){0,0,-0.011188789,0,0,0.028273334,0,0,0.035308585,0,0,-0.0134265468,0,0,0.0339280008,0,0,0.04237030200000001,0,0,-0.0167831835,0,0,0.042410001,0,0,0.05296287750000001,0,0,-0.022377578,0,0,0.056546668,0,0,0.07061717000000001};
VT(-0.20237428,-0.094234203,0,-0.13062954,0.15354208,0,-0.31649602,0.11487776,0){0,0,0.035308585,0,0,0.028273334,0,0,0.10378379,0,0,0.04237030200000001,0,0,0.0339280008,0,0,0.124540548,0,0,0.05296287750000001,0,0,0.042410001,0,0,0.155675685,0,0,0.07061717000000001,0,0,0.056546668,0,0,0.20756758};
VT(0.58125547,0.50080114,0,0.79278602,0.50016561,0,0.69212735,0.70317181,0){0,0,0.5792341,0,0,0.86850078,0,0,0.95455084,0,0,0.69508092,0,0,1.042200936,0,0,1.145461008,0,0,0.86885115,0,0,1.30275117,0,0,1.43182626,0,0,1.1584682,0,0,1.73700156,0,0,1.90910168};
VT(-0.49856645,-0.57864874,0,-0.49970002,-0.79249012,0,-0.29614927,-0.68911075,0){0,0,0.57334145,0,0,0.86750281,0,0,0.54324782,0,0,0.68800974,0,0,1.041003372,0,0,0.6518973840000001,0,0,0.860012175,0,0,1.301254215,0,0,0.8148717300000001,0,0,1.1466829,0,0,1.73500562,0,0,1.08649564};
VT(0.68845064,0.29742567,0,0.79278602,0.50016561,0,0.58125547,0.50080114,0){0,0,0.54289424,0,0,0.86850078,0,0,0.5792341,0,0,0.6514730879999999,0,0,1.042200936,0,0,0.69508092,0,0,0.81434136,0,0,1.30275117,0,0,0.86885115,0,0,1.08578848,0,0,1.73700156,0,0,1.1584682};
VT(-0.70289226,-0.69159403,0,-0.49970002,-0.79249012,0,-0.49856645,-0.57864874,0){0,0,0.95344494,0,0,0.86750281,0,0,0.57334145,0,0,1.144133928,0,0,1.041003372,0,0,0.68800974,0,0,1.43016741,0,0,1.301254215,0,0,0.860012175,0,0,1.90688988,0,0,1.73500562,0,0,1.1466829};
VT(-0.18314711,0.6994734500000001,0,-0.078017137,0.55659901,0,0.043011361,0.73950988,0){0,0,0.51294111,0,0,0.30773002,0,0,0.53333204,0,0,0.6155293319999999,0,0,0.369276024,0,0,0.6399984479999999,0,0,0.769411665,0,0,0.46159503,0,0,0.7999980600000001,0,0,1.02588222,0,0,0.61546004,0,0,1.06666408};
VT(0.69212735,0.70317181,0,0.48833461,0.64651393,0,0.58125547,0.50080114,0){0,0,0.95455084,0,0,0.65057086,0,0,0.5792341,0,0,1.145461008,0,0,0.7806850319999999,0,0,0.69508092,0,0,1.43182626,0,0,0.97585629,0,0,0.86885115,0,0,1.90910168,0,0,1.30114172,0,0,1.1584682};
VT(0.58125547,0.50080114,0,0.48102844,0.36070204,0,0.68845064,0.29742567,0){0,0,0.5792341,0,0,0.35498666,0,0,0.54289424,0,0,0.69508092,0,0,0.425983992,0,0,0.6514730879999999,0,0,0.86885115,0,0,0.53247999,0,0,0.81434136,0,0,1.1584682,0,0,0.70997332,0,0,1.08578848};
VT(-0.29614927,-0.68911075,0,-0.35285213,-0.48044777,0,-0.49856645,-0.57864874,0){0,0,0.54324782,0,0,0.34856344,0,0,0.57334145,0,0,0.6518973840000001,0,0,0.418276128,0,0,0.68800974,0,0,0.8148717300000001,0,0,0.52284516,0,0,0.860012175,0,0,1.08649564,0,0,0.69712688,0,0,1.1466829};
VT(-0.49856645,-0.57864874,0,-0.64504271,-0.48377429,0,-0.70289226,-0.69159403,0){0,0,0.57334145,0,0,0.64319256,0,0,0.95344494,0,0,0.68800974,0,0,0.771831072,0,0,1.144133928,0,0,0.860012175,0,0,0.96478884,0,0,1.43016741,0,0,1.1466829,0,0,1.28638512,0,0,1.90688988};
VT(0.043011361,0.73950988,0,-0.11821516,0.85398875,0,-0.18314711,0.6994734500000001,0){0,0,0.53333204,0,0,0.7370328900000001,0,0,0.51294111,0,0,0.6399984479999999,0,0,0.8844394680000001,0,0,0.6155293319999999,0,0,0.7999980600000001,0,0,1.105549335,0,0,0.769411665,0,0,1.06666408,0,0,1.47406578,0,0,1.02588222};
VT(0.2,0,0,0.09387865200000001,0.21606276,0,0,0,0){0,0,0.029318307,0,0,0.039927481,0,0,-0.011188789,0,0,0.0351819684,0,0,0.0479129772,0,0,-0.0134265468,0,0,0.0439774605,0,0,0.0598912215,0,0,-0.0167831835,0,0,0.058636614,0,0,0.079854962,0,0,-0.022377578};
VT(-1,0,0,-0.88909151,-0.20108716,0,-0.76457788,-0.080568783,0){0,0,0.98567746,0,0,0.82235965,0,0,0.58004414,0,0,1.182812952,0,0,0.9868315799999999,0,0,0.696052968,0,0,1.47851619,0,0,1.233539475,0,0,0.8700662100000001,0,0,1.97135492,0,0,1.6447193,0,0,1.16008828};
VT(0.043011361,0.73950988,0,0.19528035,0.88414987,0,0,1,0){0,0,0.53333204,0,0,0.8102247,0,0,0.98599093,0,0,0.6399984479999999,0,0,0.9722696399999999,0,0,1.183189116,0,0,0.7999980600000001,0,0,1.21533705,0,0,1.478986395,0,0,1.06666408,0,0,1.6204494,0,0,1.97198186};
VT(0.2,0,0,0.28472232,0.147503,0,0.09387865200000001,0.21606276,0){0,0,0.029318307,0,0,0.095759319,0,0,0.039927481,0,0,0.0351819684,0,0,0.1149111828,0,0,0.0479129772,0,0,0.0439774605,0,0,0.1436389785,0,0,0.0598912215,0,0,0.058636614,0,0,0.191518638,0,0,0.079854962};
VT(0.12769368,0.48850822,0,-0.078017137,0.55659901,0,-0.097376676,0.37012027,0){0,0,0.23608739,0,0,0.30773002,0,0,0.13384161,0,0,0.283304868,0,0,0.369276024,0,0,0.160609932,0,0,0.354131085,0,0,0.46159503,0,0,0.200762415,0,0,0.47217478,0,0,0.61546004,0,0,0.26768322};
VT(-1,0.8,0,-0.81500321,0.8168568,0,-1,1,0){0,0,1.6296302,0,0,1.3205926,0,0,1.9856788,0,0,1.95555624,0,0,1.58471112,0,0,2.38281456,0,0,2.4444453,0,0,1.9808889,0,0,2.9785182,0,0,3.2592604,0,0,2.6411852,0,0,3.9713576};
VT(-1,1,0,-0.81500321,0.8168568,0,-0.8,1,0){0,0,1.9856788,0,0,1.3205926,0,0,1.6295719,0,0,2.38281456,0,0,1.58471112,0,0,1.95548628,0,0,2.9785182,0,0,1.9808889,0,0,2.44435785,0,0,3.9713576,0,0,2.6411852,0,0,3.2591438};
VT(-1,-0.2,0,-0.88909151,-0.20108716,0,-1,0,0){0,0,1.035932,0,0,0.82235965,0,0,0.98567746,0,0,1.2431184,0,0,0.9868315799999999,0,0,1.182812952,0,0,1.553898,0,0,1.233539475,0,0,1.47851619,0,0,2.071864,0,0,1.6447193,0,0,1.97135492};
VT(0,1,0,0.19528035,0.88414987,0,0.2,1,0){0,0,0.98599093,0,0,0.8102247,0,0,1.0361451,0,0,1.183189116,0,0,0.9722696399999999,0,0,1.24337412,0,0,1.478986395,0,0,1.21533705,0,0,1.55421765,0,0,1.97198186,0,0,1.6204494,0,0,2.0722902};
VT(0.043011361,0.73950988,0,-0.078017137,0.55659901,0,0.12769368,0.48850822,0){0,0,0.53333204,0,0,0.30773002,0,0,0.23608739,0,0,0.6399984479999999,0,0,0.369276024,0,0,0.283304868,0,0,0.7999980600000001,0,0,0.46159503,0,0,0.354131085,0,0,1.06666408,0,0,0.61546004,0,0,0.47217478};
VT(-1,0.8,0,-0.86037128,0.61481672,0,-0.81500321,0.8168568,0){0,0,1.6296302,0,0,1.106042,0,0,1.3205926,0,0,1.95555624,0,0,1.3272504,0,0,1.58471112,0,0,2.4444453,0,0,1.659063,0,0,1.9808889,0,0,3.2592604,0,0,2.212084,0,0,2.6411852};
VT(-0.81500321,0.8168568,0,-0.61026761,0.86248481,0,-0.8,1,0){0,0,1.3205926,0,0,1.1041067,0,0,1.6295719,0,0,1.58471112,0,0,1.32492804,0,0,1.95548628,0,0,1.9808889,0,0,1.65616005,0,0,2.44435785,0,0,2.6411852,0,0,2.2082134,0,0,3.2591438};
VT(-1,0.6,0,-0.86037128,0.61481672,0,-1,0.8,0){0,0,1.3548322,0,0,1.106042,0,0,1.6296302,0,0,1.62579864,0,0,1.3272504,0,0,1.95555624,0,0,2.0322483,0,0,1.659063,0,0,2.4444453,0,0,2.7096644,0,0,2.212084,0,0,3.2592604};
VT(-0.8,1,0,-0.61026761,0.86248481,0,-0.6,1,0){0,0,1.6295719,0,0,1.1041067,0,0,1.3548692,0,0,1.95548628,0,0,1.32492804,0,0,1.62584304,0,0,2.44435785,0,0,1.65616005,0,0,2.0323038,0,0,3.2591438,0,0,2.2082134,0,0,2.7097384};
VT(-0.4,1,0,-0.61026761,0.86248481,0,-0.41369197,0.73184535,0){0,0,1.1445323,0,0,1.1041067,0,0,0.69052686,0,0,1.37343876,0,0,1.32492804,0,0,0.8286322319999999,0,0,1.71679845,0,0,1.65616005,0,0,1.03579029,0,0,2.2890646,0,0,2.2082134,0,0,1.38105372};
VT(-0.72720733,0.43583582,0,-0.86037128,0.61481672,0,-1,0.4,0){0,0,0.70414594,0,0,1.106042,0,0,1.1437749,0,0,0.844975128,0,0,1.3272504,0,0,1.37252988,0,0,1.05621891,0,0,1.659063,0,0,1.71566235,0,0,1.40829188,0,0,2.212084,0,0,2.2875498};
VT(0,0,0,-0.20237428,-0.094234203,0,0,-0.2,0){0,0,-0.011188789,0,0,0.035308585,0,0,0.030108895,0,0,-0.0134265468,0,0,0.04237030200000001,0,0,0.036130674,0,0,-0.0167831835,0,0,0.05296287750000001,0,0,0.0451633425,0,0,-0.022377578,0,0,0.07061717000000001,0,0,0.06021779};
VT(0.50076357,0.81140902,0,0.48833461,0.64651393,0,0.69212735,0.70317181,0){0,0,0.90095104,0,0,0.65057086,0,0,0.95455084,0,0,1.081141248,0,0,0.7806850319999999,0,0,1.145461008,0,0,1.35142656,0,0,0.97585629,0,0,1.43182626,0,0,1.80190208,0,0,1.30114172,0,0,1.90910168};
VT(0.68845064,0.29742567,0,0.48102844,0.36070204,0,0.46505257,0.18920403,0){0,0,0.54289424,0,0,0.35498666,0,0,0.24153004,0,0,0.6514730879999999,0,0,0.425983992,0,0,0.289836048,0,0,0.81434136,0,0,0.53247999,0,0,0.36229506,0,0,1.08578848,0,0,0.70997332,0,0,0.48306008};
VT(-0.70289226,-0.69159403,0,-0.64504271,-0.48377429,0,-0.81220583,-0.50021121,0){0,0,0.95344494,0,0,0.64319256,0,0,0.90166921,0,0,1.144133928,0,0,0.771831072,0,0,1.082003052,0,0,1.43016741,0,0,0.96478884,0,0,1.352503815,0,0,1.90688988,0,0,1.28638512,0,0,1.80333842};
VT(-0.18237993,-0.47217714,0,-0.35285213,-0.48044777,0,-0.29614927,-0.68911075,0){0,0,0.24651427,0,0,0.34856344,0,0,0.54324782,0,0,0.295817124,0,0,0.418276128,0,0,0.6518973840000001,0,0,0.369771405,0,0,0.52284516,0,0,0.8148717300000001,0,0,0.49302854,0,0,0.69712688,0,0,1.08649564};
VT(-0.76457788,-0.080568783,0,-0.88909151,-0.20108716,0,-0.7261900999999999,-0.30622169,0){0,0,0.58004414,0,0,0.82235965,0,0,0.60510213,0,0,0.696052968,0,0,0.9868315799999999,0,0,0.726122556,0,0,0.8700662100000001,0,0,1.233539475,0,0,0.907653195,0,0,1.16008828,0,0,1.6447193,0,0,1.21020426};
VT(0.30679003,0.71918631,0,0.19528035,0.88414987,0,0.043011361,0.73950988,0){0,0,0.59405992,0,0,0.8102247,0,0,0.53333204,0,0,0.7128719039999999,0,0,0.9722696399999999,0,0,0.6399984479999999,0,0,0.89108988,0,0,1.21533705,0,0,0.7999980600000001,0,0,1.18811984,0,0,1.6204494,0,0,1.06666408};
VT(-0.6,1,0,-0.61026761,0.86248481,0,-0.4,1,0){0,0,1.3548692,0,0,1.1041067,0,0,1.1445323,0,0,1.62584304,0,0,1.32492804,0,0,1.37343876,0,0,2.0323038,0,0,1.65616005,0,0,1.71679845,0,0,2.7097384,0,0,2.2082134,0,0,2.2890646};
VT(-1,0.4,0,-0.86037128,0.61481672,0,-1,0.6,0){0,0,1.1437749,0,0,1.106042,0,0,1.3548322,0,0,1.37252988,0,0,1.3272504,0,0,1.62579864,0,0,1.71566235,0,0,1.659063,0,0,2.0322483,0,0,2.2875498,0,0,2.212084,0,0,2.7096644};
VT(1,0.6,0,0.79278602,0.50016561,0,1,0.4,0){0,0,1.3402922,0,0,0.86850078,0,0,1.1400094,0,0,1.60835064,0,0,1.042200936,0,0,1.36801128,0,0,2.0104383,0,0,1.30275117,0,0,1.7100141,0,0,2.6805844,0,0,1.73700156,0,0,2.2800188};
VT(-0.4,-1,0,-0.49970002,-0.79249012,0,-0.6,-1,0){0,0,1.1400056,0,0,0.86750281,0,0,1.3402345,0,0,1.36800672,0,0,1.041003372,0,0,1.6082814,0,0,1.7100084,0,0,1.301254215,0,0,2.01035175,0,0,2.2800112,0,0,1.73500562,0,0,2.680469};
VT(-0.76457788,-0.080568783,0,-0.81920417,0.10649619,0,-1,0,0){0,0,0.58004414,0,0,0.67320716,0,0,0.98567746,0,0,0.696052968,0,0,0.807848592,0,0,1.182812952,0,0,0.8700662100000001,0,0,1.00981074,0,0,1.47851619,0,0,1.16008828,0,0,1.34641432,0,0,1.97135492};
VT(0,1,0,-0.11821516,0.85398875,0,0.043011361,0.73950988,0){0,0,0.98599093,0,0,0.7370328900000001,0,0,0.53333204,0,0,1.183189116,0,0,0.8844394680000001,0,0,0.6399984479999999,0,0,1.478986395,0,0,1.105549335,0,0,0.7999980600000001,0,0,1.97198186,0,0,1.47406578,0,0,1.06666408};
VT(-0.097376676,0.37012027,0,-0.13062954,0.15354208,0,0.09387865200000001,0.21606276,0){0,0,0.13384161,0,0,0.028273334,0,0,0.039927481,0,0,0.160609932,0,0,0.0339280008,0,0,0.0479129772,0,0,0.200762415,0,0,0.042410001,0,0,0.0598912215,0,0,0.26768322,0,0,0.056546668,0,0,0.079854962};
VT(0.09387865200000001,0.21606276,0,0.28472232,0.147503,0,0.30170882,0.31749481,0){0,0,0.039927481,0,0,0.095759319,0,0,0.18127988,0,0,0.0479129772,0,0,0.1149111828,0,0,0.217535856,0,0,0.0598912215,0,0,0.1436389785,0,0,0.27191982,0,0,0.079854962,0,0,0.191518638,0,0,0.36255976};
VT(-0.5421228,-0.11260696,0,-0.65059508,0.041512801,0,-0.76457788,-0.080568783,0){0,0,0.29334969,0,0,0.41885836,0,0,0.58004414,0,0,0.352019628,0,0,0.502630032,0,0,0.696052968,0,0,0.440024535,0,0,0.62828754,0,0,0.8700662100000001,0,0,0.58669938,0,0,0.83771672,0,0,1.16008828};
VT(0.09387865200000001,0.21606276,0,-0.13062954,0.15354208,0,0,0,0){0,0,0.039927481,0,0,0.028273334,0,0,-0.011188789,0,0,0.0479129772,0,0,0.0339280008,0,0,-0.0134265468,0,0,0.0598912215,0,0,0.042410001,0,0,-0.0167831835,0,0,0.079854962,0,0,0.056546668,0,0,-0.022377578};
VT(0.37038152,0.50386299,0,0.48102844,0.36070204,0,0.58125547,0.50080114,0){0,0,0.38031894,0,0,0.35498666,0,0,0.5792341,0,0,0.456382728,0,0,0.425983992,0,0,0.69508092,0,0,0.57047841,0,0,0.53247999,0,0,0.86885115,0,0,0.76063788,0,0,0.70997332,0,0,1.1584682};
VT(0.58125547,0.50080114,0,0.48833461,0.64651393,0,0.37038152,0.50386299,0){0,0,0.5792341,0,0,0.65057086,0,0,0.38031894,0,0,0.69508092,0,0,0.7806850319999999,0,0,0.456382728,0,0,0.86885115,0,0,0.97585629,0,0,0.57047841,0,0,1.1584682,0,0,1.30114172,0,0,0.76063788};
VT(-0.49856645,-0.57864874,0,-0.35285213,-0.48044777,0,-0.48993004,-0.34456746,0){0,0,0.57334145,0,0,0.34856344,0,0,0.34565331,0,0,0.68800974,0,0,0.418276128,0,0,0.414783972,0,0,0.860012175,0,0,0.52284516,0,0,0.518479965,0,0,1.1466829,0,0,0.69712688,0,0,0.69130662};
VT(-0.48993004,-0.34456746,0,-0.64504271,-0.48377429,0,-0.49856645,-0.57864874,0){0,0,0.34565331,0,0,0.64319256,0,0,0.57334145,0,0,0.414783972,0,0,0.771831072,0,0,0.68800974,0,0,0.518479965,0,0,0.96478884,0,0,0.860012175,0,0,0.69130662,0,0,1.28638512,0,0,1.1466829};
VT(0.6,0,0,0.46505257,0.18920403,0,0.4,0,0){0,0,0.34012917,0,0,0.24153004,0,0,0.15186115,0,0,0.408155004,0,0,0.289836048,0,0,0.18223338,0,0,0.510193755,0,0,0.36229506,0,0,0.227791725,0,0,0.68025834,0,0,0.48306008,0,0,0.3037223};
VT(0.4,1,0,0.50076357,0.81140902,0,0.6,1,0){0,0,1.144558,0,0,0.90095104,0,0,1.3413909,0,0,1.3734696,0,0,1.081141248,0,0,1.60966908,0,0,1.716837,0,0,1.35142656,0,0,2.01208635,0,0,2.289116,0,0,1.80190208,0,0,2.6827818};
VT(-1,-0.6,0,-0.81220583,-0.50021121,0,-1,-0.4,0){0,0,1.3413455,0,0,0.90166921,0,0,1.1449524,0,0,1.6096146,0,0,1.082003052,0,0,1.37394288,0,0,2.01201825,0,0,1.352503815,0,0,1.7174286,0,0,2.682691,0,0,1.80333842,0,0,2.2899048};
VT(0,-0.4,0,-0.18237993,-0.47217714,0,0,-0.6,0){0,0,0.15276498,0,0,0.24651427,0,0,0.34037099,0,0,0.183317976,0,0,0.295817124,0,0,0.408445188,0,0,0.22914747,0,0,0.369771405,0,0,0.5105564849999999,0,0,0.30552996,0,0,0.49302854,0,0,0.68074198};
VT(-1,0.4,0,-0.84092818,0.27169996,0,-0.72720733,0.43583582,0){0,0,1.1437749,0,0,0.77335554,0,0,0.70414594,0,0,1.37252988,0,0,0.9280266479999999,0,0,0.844975128,0,0,1.71566235,0,0,1.16003331,0,0,1.05621891,0,0,2.2875498,0,0,1.54671108,0,0,1.40829188};
VT(-0.41369197,0.73184535,0,-0.26434268,0.85422499,0,-0.4,1,0){0,0,0.69052686,0,0,0.7935808600000001,0,0,1.1445323,0,0,0.8286322319999999,0,0,0.952297032,0,0,1.37343876,0,0,1.03579029,0,0,1.19037129,0,0,1.71679845,0,0,1.38105372,0,0,1.58716172,0,0,2.2890646};
VT(-0.72720733,0.43583582,0,-0.84092818,0.27169996,0,-0.65243693,0.21794688,0){0,0,0.70414594,0,0,0.77335554,0,0,0.46262006,0,0,0.844975128,0,0,0.9280266479999999,0,0,0.5551440719999999,0,0,1.05621891,0,0,1.16003331,0,0,0.6939300900000001,0,0,1.40829188,0,0,1.54671108,0,0,0.92524012};
VT(-0.18314711,0.6994734500000001,0,-0.26434268,0.85422499,0,-0.41369197,0.73184535,0){0,0,0.51294111,0,0,0.7935808600000001,0,0,0.69052686,0,0,0.6155293319999999,0,0,0.952297032,0,0,0.8286322319999999,0,0,0.769411665,0,0,1.19037129,0,0,1.03579029,0,0,1.02588222,0,0,1.58716172,0,0,1.38105372};
VT(-0.6529472200000001,0.66226976,0,-0.5069458,0.52411158,0,-0.41369197,0.73184535,0){0,0,0.8529703199999999,0,0,0.5208650500000001,0,0,0.69052686,0,0,1.023564384,0,0,0.6250380600000001,0,0,0.8286322319999999,0,0,1.27945548,0,0,0.7812975750000001,0,0,1.03579029,0,0,1.70594064,0,0,1.0417301,0,0,1.38105372};
VT(0,-0.4,0,-0.13561503,-0.2979777,0,-0.18237993,-0.47217714,0){0,0,0.15276498,0,0,0.099810723,0,0,0.24651427,0,0,0.183317976,0,0,0.1197728676,0,0,0.295817124,0,0,0.22914747,0,0,0.1497160845,0,0,0.369771405,0,0,0.30552996,0,0,0.199621446,0,0,0.49302854};
VT(-0.65243693,0.21794688,0,-0.5562586,0.36467285,0,-0.72720733,0.43583582,0){0,0,0.46262006,0,0,0.43706793,0,0,0.70414594,0,0,0.5551440719999999,0,0,0.5244815159999999,0,0,0.844975128,0,0,0.6939300900000001,0,0,0.655601895,0,0,1.05621891,0,0,0.92524012,0,0,0.87413586,0,0,1.40829188};
VT(-0.6529472200000001,0.66226976,0,-0.86037128,0.61481672,0,-0.72720733,0.43583582,0){0,0,0.8529703199999999,0,0,1.106042,0,0,0.70414594,0,0,1.023564384,0,0,1.3272504,0,0,0.844975128,0,0,1.27945548,0,0,1.659063,0,0,1.05621891,0,0,1.70594064,0,0,2.212084,0,0,1.40829188};
VT(-0.41369197,0.73184535,0,-0.61026761,0.86248481,0,-0.6529472200000001,0.66226976,0){0,0,0.69052686,0,0,1.1041067,0,0,0.8529703199999999,0,0,0.8286322319999999,0,0,1.32492804,0,0,1.023564384,0,0,1.03579029,0,0,1.65616005,0,0,1.27945548,0,0,1.38105372,0,0,2.2082134,0,0,1.70594064};
VT(-0.4165969,0.39543964,0,-0.28048336,0.5090566,0,-0.5069458,0.52411158,0){0,0,0.32534352,0,0,0.32465226,0,0,0.5208650500000001,0,0,0.390412224,0,0,0.389582712,0,0,0.6250380600000001,0,0,0.48801528,0,0,0.48697839,0,0,0.7812975750000001,0,0,0.65068704,0,0,0.6493045200000001,0,0,1.0417301};
VT(-0.29182364,-0.31445753,0,-0.13561503,-0.2979777,0,-0.20237428,-0.094234203,0){0,0,0.17552505,0,0,0.099810723,0,0,0.035308585,0,0,0.21063006,0,0,0.1197728676,0,0,0.04237030200000001,0,0,0.263287575,0,0,0.1497160845,0,0,0.05296287750000001,0,0,0.3510501,0,0,0.199621446,0,0,0.07061717000000001};
VT(-0.20237428,-0.094234203,0,-0.13561503,-0.2979777,0,0,-0.2,0){0,0,0.035308585,0,0,0.099810723,0,0,0.030108895,0,0,0.04237030200000001,0,0,0.1197728676,0,0,0.036130674,0,0,0.05296287750000001,0,0,0.1497160845,0,0,0.0451633425,0,0,0.07061717000000001,0,0,0.199621446,0,0,0.06021779};
VT(-0.5069458,0.52411158,0,-0.5562586,0.36467285,0,-0.4165969,0.39543964,0){0,0,0.5208650500000001,0,0,0.43706793,0,0,0.32534352,0,0,0.6250380600000001,0,0,0.5244815159999999,0,0,0.390412224,0,0,0.7812975750000001,0,0,0.655601895,0,0,0.48801528,0,0,1.0417301,0,0,0.87413586,0,0,0.65068704};
VT(0.2,1,0,0.19528035,0.88414987,0,0.4,1,0){0,0,1.0361451,0,0,0.8102247,0,0,1.144558,0,0,1.24337412,0,0,0.9722696399999999,0,0,1.3734696,0,0,1.55421765,0,0,1.21533705,0,0,1.716837,0,0,2.0722902,0,0,1.6204494,0,0,2.289116};
VT(-1,-0.4,0,-0.88909151,-0.20108716,0,-1,-0.2,0){0,0,1.1449524,0,0,0.82235965,0,0,1.035932,0,0,1.37394288,0,0,0.9868315799999999,0,0,1.2431184,0,0,1.7174286,0,0,1.233539475,0,0,1.553898,0,0,2.2899048,0,0,1.6447193,0,0,2.071864};
VT(-0.18237993,-0.47217714,0,-0.13561503,-0.2979777,0,-0.29182364,-0.31445753,0){0,0,0.24651427,0,0,0.099810723,0,0,0.17552505,0,0,0.295817124,0,0,0.1197728676,0,0,0.21063006,0,0,0.369771405,0,0,0.1497160845,0,0,0.263287575,0,0,0.49302854,0,0,0.199621446,0,0,0.3510501};
VT(-0.097376676,0.37012027,0,-0.28356559,0.29961254,0,-0.13062954,0.15354208,0){0,0,0.13384161,0,0,0.16152593,0,0,0.028273334,0,0,0.160609932,0,0,0.193831116,0,0,0.0339280008,0,0,0.200762415,0,0,0.242288895,0,0,0.042410001,0,0,0.26768322,0,0,0.32305186,0,0,0.056546668};
VT(0.4,0,0,0.28472232,0.147503,0,0.2,0,0){0,0,0.15186115,0,0,0.095759319,0,0,0.029318307,0,0,0.18223338,0,0,0.1149111828,0,0,0.0351819684,0,0,0.227791725,0,0,0.1436389785,0,0,0.0439774605,0,0,0.3037223,0,0,0.191518638,0,0,0.058636614};
VT(-0.20237428,-0.094234203,0,-0.37726926,-0.17874311,0,-0.29182364,-0.31445753,0){0,0,0.035308585,0,0,0.16815028,0,0,0.17552505,0,0,0.04237030200000001,0,0,0.201780336,0,0,0.21063006,0,0,0.05296287750000001,0,0,0.25222542,0,0,0.263287575,0,0,0.07061717000000001,0,0,0.33630056,0,0,0.3510501};
VT(-0.31649602,0.11487776,0,-0.37982886,-0.033787755,0,-0.20237428,-0.094234203,0){0,0,0.10378379,0,0,0.14032754,0,0,0.035308585,0,0,0.124540548,0,0,0.168393048,0,0,0.04237030200000001,0,0,0.155675685,0,0,0.21049131,0,0,0.05296287750000001,0,0,0.20756758,0,0,0.28065508,0,0,0.07061717000000001};
VT(-0.13062954,0.15354208,0,-0.28356559,0.29961254,0,-0.31649602,0.11487776,0){0,0,0.028273334,0,0,0.16152593,0,0,0.10378379,0,0,0.0339280008,0,0,0.193831116,0,0,0.124540548,0,0,0.042410001,0,0,0.242288895,0,0,0.155675685,0,0,0.056546668,0,0,0.32305186,0,0,0.20756758};
VT(-0.48993004,-0.34456746,0,-0.35285213,-0.48044777,0,-0.29182364,-0.31445753,0){0,0,0.34565331,0,0,0.34856344,0,0,0.17552505,0,0,0.414783972,0,0,0.418276128,0,0,0.21063006,0,0,0.518479965,0,0,0.52284516,0,0,0.263287575,0,0,0.69130662,0,0,0.69712688,0,0,0.3510501};
VT(0.30170882,0.31749481,0,0.48102844,0.36070204,0,0.37038152,0.50386299,0){0,0,0.18127988,0,0,0.35498666,0,0,0.38031894,0,0,0.217535856,0,0,0.425983992,0,0,0.456382728,0,0,0.27191982,0,0,0.53247999,0,0,0.57047841,0,0,0.36255976,0,0,0.70997332,0,0,0.76063788};
VT(0.37038152,0.50386299,0,0.48833461,0.64651393,0,0.30679003,0.71918631,0){0,0,0.38031894,0,0,0.65057086,0,0,0.59405992,0,0,0.456382728,0,0,0.7806850319999999,0,0,0.7128719039999999,0,0,0.57047841,0,0,0.97585629,0,0,0.89108988,0,0,0.76063788,0,0,1.30114172,0,0,1.18811984};
VT(-0.7261900999999999,-0.30622169,0,-0.64504271,-0.48377429,0,-0.48993004,-0.34456746,0){0,0,0.60510213,0,0,0.64319256,0,0,0.34565331,0,0,0.726122556,0,0,0.771831072,0,0,0.414783972,0,0,0.907653195,0,0,0.96478884,0,0,0.518479965,0,0,1.21020426,0,0,1.28638512,0,0,0.69130662};
VT(0,-1,0,-0.15018816,-0.84801006,0,-0.2,-1,0){0,0,0.99004705,0,0,0.7271253,0,0,1.0350883,0,0,1.18805646,0,0,0.87255036,0,0,1.24210596,0,0,1.485070575,0,0,1.09068795,0,0,1.55263245,0,0,1.9800941,0,0,1.4542506,0,0,2.0701766};
VT(1,0.2,0,0.84793591,0.15031831,0,1,0,0){0,0,1.0350863,0,0,0.72705167,0,0,0.99001353,0,0,1.24210356,0,0,0.8724620040000001,0,0,1.188016236,0,0,1.55262945,0,0,1.090577505,0,0,1.485020295,0,0,2.0701726,0,0,1.45410334,0,0,1.98002706};
VT(0,-0.8,0,-0.15018816,-0.84801006,0,0,-1,0){0,0,0.63521318,0,0,0.7271253,0,0,0.99004705,0,0,0.762255816,0,0,0.87255036,0,0,1.18805646,0,0,0.9528197700000001,0,0,1.09068795,0,0,1.485070575,0,0,1.27042636,0,0,1.4542506,0,0,1.9800941};
VT(1,0,0,0.84793591,0.15031831,0,0.8,0,0){0,0,0.99001353,0,0,0.72705167,0,0,0.63526591,0,0,1.188016236,0,0,0.8724620040000001,0,0,0.7623190919999999,0,0,1.485020295,0,0,1.090577505,0,0,0.952898865,0,0,1.98002706,0,0,1.45410334,0,0,1.27053182};
VT(1,1,0,0.84832091,0.84974074,0,1,0.8,0){0,0,1.9902232,0,0,1.4269182,0,0,1.6351217,0,0,2.38826784,0,0,1.71230184,0,0,1.96214604,0,0,2.9853348,0,0,2.1403773,0,0,2.45268255,0,0,3.9804464,0,0,2.8538364,0,0,3.2702434};
VT(-0.8,-1,0,-0.84971248,-0.848268,0,-1,-1,0){0,0,1.6351469,0,0,1.4267533,0,0,1.9902184,0,0,1.96217628,0,0,1.71210396,0,0,2.38826208,0,0,2.45272035,0,0,2.14012995,0,0,2.9853276,0,0,3.2702938,0,0,2.8535066,0,0,3.9804368};
VT(0.8,1,0,0.84832091,0.84974074,0,1,1,0){0,0,1.6350174,0,0,1.4269182,0,0,1.9902232,0,0,1.96202088,0,0,1.71230184,0,0,2.38826784,0,0,2.4525261,0,0,2.1403773,0,0,2.9853348,0,0,3.2700348,0,0,2.8538364,0,0,3.9804464};
VT(-1,-1,0,-0.84971248,-0.848268,0,-1,-0.8,0){0,0,1.9902184,0,0,1.4267533,0,0,1.6350425,0,0,2.38826208,0,0,1.71210396,0,0,1.962051,0,0,2.9853276,0,0,2.14012995,0,0,2.45256375,0,0,3.9804368,0,0,2.8535066,0,0,3.270085};
VT(-0.49398787,0.083343978,0,-0.45358265,0.24821429,0,-0.65243693,0.21794688,0){0,0,0.24306828,0,0,0.25954993,0,0,0.46262006,0,0,0.291681936,0,0,0.3114599159999999,0,0,0.5551440719999999,0,0,0.36460242,0,0,0.389324895,0,0,0.6939300900000001,0,0,0.48613656,0,0,0.51909986,0,0,0.92524012};
VT(-0.81500321,0.8168568,0,-0.86037128,0.61481672,0,-0.6529472200000001,0.66226976,0){0,0,1.3205926,0,0,1.106042,0,0,0.8529703199999999,0,0,1.58471112,0,0,1.3272504,0,0,1.023564384,0,0,1.9808889,0,0,1.659063,0,0,1.27945548,0,0,2.6411852,0,0,2.212084,0,0,1.70594064};
VT(-0.6529472200000001,0.66226976,0,-0.61026761,0.86248481,0,-0.81500321,0.8168568,0){0,0,0.8529703199999999,0,0,1.1041067,0,0,1.3205926,0,0,1.023564384,0,0,1.32492804,0,0,1.58471112,0,0,1.27945548,0,0,1.65616005,0,0,1.9808889,0,0,1.70594064,0,0,2.2082134,0,0,2.6411852};
VT(-0.31649602,0.11487776,0,-0.45358265,0.24821429,0,-0.49398787,0.083343978,0){0,0,0.10378379,0,0,0.25954993,0,0,0.24306828,0,0,0.124540548,0,0,0.3114599159999999,0,0,0.291681936,0,0,0.155675685,0,0,0.389324895,0,0,0.36460242,0,0,0.20756758,0,0,0.51909986,0,0,0.48613656};
VT(-1,0,0,-0.81920417,0.10649619,0,-1,0.2,0){0,0,0.98567746,0,0,0.67320716,0,0,1.0319964,0,0,1.182812952,0,0,0.807848592,0,0,1.23839568,0,0,1.47851619,0,0,1.00981074,0,0,1.5479946,0,0,1.97135492,0,0,1.34641432,0,0,2.0639928};
VT(-0.2,1,0,-0.11821516,0.85398875,0,0,1,0){0,0,1.0333304,0,0,0.7370328900000001,0,0,0.98599093,0,0,1.23999648,0,0,0.8844394680000001,0,0,1.183189116,0,0,1.5499956,0,0,1.105549335,0,0,1.478986395,0,0,2.0666608,0,0,1.47406578,0,0,1.97198186};
VT(-1,0.2,0,-0.84092818,0.27169996,0,-1,0.4,0){0,0,1.0319964,0,0,0.77335554,0,0,1.1437749,0,0,1.23839568,0,0,0.9280266479999999,0,0,1.37252988,0,0,1.5479946,0,0,1.16003331,0,0,1.71566235,0,0,2.0639928,0,0,1.54671108,0,0,2.2875498};
VT(-0.4,1,0,-0.26434268,0.85422499,0,-0.2,1,0){0,0,1.1445323,0,0,0.7935808600000001,0,0,1.0333304,0,0,1.37343876,0,0,0.952297032,0,0,1.23999648,0,0,1.71679845,0,0,1.19037129,0,0,1.5499956,0,0,2.2890646,0,0,1.58716172,0,0,2.0666608};
VT(-0.65243693,0.21794688,0,-0.45358265,0.24821429,0,-0.5562586,0.36467285,0){0,0,0.46262006,0,0,0.25954993,0,0,0.43706793,0,0,0.5551440719999999,0,0,0.3114599159999999,0,0,0.5244815159999999,0,0,0.6939300900000001,0,0,0.389324895,0,0,0.655601895,0,0,0.92524012,0,0,0.51909986,0,0,0.87413586};
VT(-0.76457788,-0.080568783,0,-0.65059508,0.041512801,0,-0.81920417,0.10649619,0){0,0,0.58004414,0,0,0.41885836,0,0,0.67320716,0,0,0.696052968,0,0,0.502630032,0,0,0.807848592,0,0,0.8700662100000001,0,0,0.62828754,0,0,1.00981074,0,0,1.16008828,0,0,0.83771672,0,0,1.34641432};
VT(-0.81920417,0.10649619,0,-0.65059508,0.041512801,0,-0.65243693,0.21794688,0){0,0,0.67320716,0,0,0.41885836,0,0,0.46262006,0,0,0.807848592,0,0,0.502630032,0,0,0.5551440719999999,0,0,1.00981074,0,0,0.62828754,0,0,0.6939300900000001,0,0,1.34641432,0,0,0.83771672,0,0,0.92524012};
VT(-0.11821516,0.85398875,0,-0.26434268,0.85422499,0,-0.18314711,0.6994734500000001,0){0,0,0.7370328900000001,0,0,0.7935808600000001,0,0,0.51294111,0,0,0.8844394680000001,0,0,0.952297032,0,0,0.6155293319999999,0,0,1.105549335,0,0,1.19037129,0,0,0.769411665,0,0,1.47406578,0,0,1.58716172,0,0,1.02588222};
VT(-0.65243693,0.21794688,0,-0.84092818,0.27169996,0,-0.81920417,0.10649619,0){0,0,0.46262006,0,0,0.77335554,0,0,0.67320716,0,0,0.5551440719999999,0,0,0.9280266479999999,0,0,0.807848592,0,0,0.6939300900000001,0,0,1.16003331,0,0,1.00981074,0,0,0.92524012,0,0,1.54671108,0,0,1.34641432};
VT(0.46505257,0.18920403,0,0.48102844,0.36070204,0,0.30170882,0.31749481,0){0,0,0.24153004,0,0,0.35498666,0,0,0.18127988,0,0,0.289836048,0,0,0.425983992,0,0,0.217535856,0,0,0.36229506,0,0,0.53247999,0,0,0.27191982,0,0,0.48306008,0,0,0.70997332,0,0,0.36255976};
VT(0.30679003,0.71918631,0,0.48833461,0.64651393,0,0.50076357,0.81140902,0){0,0,0.59405992,0,0,0.65057086,0,0,0.90095104,0,0,0.7128719039999999,0,0,0.7806850319999999,0,0,1.081141248,0,0,0.89108988,0,0,0.97585629,0,0,1.35142656,0,0,1.18811984,0,0,1.30114172,0,0,1.80190208};
VT(-0.81220583,-0.50021121,0,-0.64504271,-0.48377429,0,-0.7261900999999999,-0.30622169,0){0,0,0.90166921,0,0,0.64319256,0,0,0.60510213,0,0,1.082003052,0,0,0.771831072,0,0,0.726122556,0,0,1.352503815,0,0,0.96478884,0,0,0.907653195,0,0,1.80333842,0,0,1.28638512,0,0,1.21020426};
VT(-0.29182364,-0.31445753,0,-0.35285213,-0.48044777,0,-0.18237993,-0.47217714,0){0,0,0.17552505,0,0,0.34856344,0,0,0.24651427,0,0,0.21063006,0,0,0.418276128,0,0,0.295817124,0,0,0.263287575,0,0,0.52284516,0,0,0.369771405,0,0,0.3510501,0,0,0.69712688,0,0,0.49302854};
VT(-0.28356559,0.29961254,0,-0.45358265,0.24821429,0,-0.31649602,0.11487776,0){0,0,0.16152593,0,0,0.25954993,0,0,0.10378379,0,0,0.193831116,0,0,0.3114599159999999,0,0,0.124540548,0,0,0.242288895,0,0,0.389324895,0,0,0.155675685,0,0,0.32305186,0,0,0.51909986,0,0,0.20756758};
VT(-0.48993004,-0.34456746,0,-0.37726926,-0.17874311,0,-0.5421228,-0.11260696,0){0,0,0.34565331,0,0,0.16815028,0,0,0.29334969,0,0,0.414783972,0,0,0.201780336,0,0,0.352019628,0,0,0.518479965,0,0,0.25222542,0,0,0.440024535,0,0,0.69130662,0,0,0.33630056,0,0,0.58669938};
VT(-0.29182364,-0.31445753,0,-0.37726926,-0.17874311,0,-0.48993004,-0.34456746,0){0,0,0.17552505,0,0,0.16815028,0,0,0.34565331,0,0,0.21063006,0,0,0.201780336,0,0,0.414783972,0,0,0.263287575,0,0,0.25222542,0,0,0.518479965,0,0,0.3510501,0,0,0.33630056,0,0,0.69130662};
VT(-0.4165969,0.39543964,0,-0.28356559,0.29961254,0,-0.28048336,0.5090566,0){0,0,0.32534352,0,0,0.16152593,0,0,0.32465226,0,0,0.390412224,0,0,0.193831116,0,0,0.389582712,0,0,0.48801528,0,0,0.242288895,0,0,0.48697839,0,0,0.65068704,0,0,0.32305186,0,0,0.6493045200000001};
VT(-0.28048336,0.5090566,0,-0.28356559,0.29961254,0,-0.097376676,0.37012027,0){0,0,0.32465226,0,0,0.16152593,0,0,0.13384161,0,0,0.389582712,0,0,0.193831116,0,0,0.160609932,0,0,0.48697839,0,0,0.242288895,0,0,0.200762415,0,0,0.6493045200000001,0,0,0.32305186,0,0,0.26768322};
VT(-0.49398787,0.083343978,0,-0.65059508,0.041512801,0,-0.5421228,-0.11260696,0){0,0,0.24306828,0,0,0.41885836,0,0,0.29334969,0,0,0.291681936,0,0,0.502630032,0,0,0.352019628,0,0,0.36460242,0,0,0.62828754,0,0,0.440024535,0,0,0.48613656,0,0,0.83771672,0,0,0.58669938};
VT(-0.2,1,0,-0.26434268,0.85422499,0,-0.11821516,0.85398875,0){0,0,1.0333304,0,0,0.7935808600000001,0,0,0.7370328900000001,0,0,1.23999648,0,0,0.952297032,0,0,0.8844394680000001,0,0,1.5499956,0,0,1.19037129,0,0,1.105549335,0,0,2.0666608,0,0,1.58716172,0,0,1.47406578};
VT(-0.81920417,0.10649619,0,-0.84092818,0.27169996,0,-1,0.2,0){0,0,0.67320716,0,0,0.77335554,0,0,1.0319964,0,0,0.807848592,0,0,0.9280266479999999,0,0,1.23839568,0,0,1.00981074,0,0,1.16003331,0,0,1.5479946,0,0,1.34641432,0,0,1.54671108,0,0,2.0639928};
VT(-0.49398787,0.083343978,0,-0.37982886,-0.033787755,0,-0.31649602,0.11487776,0){0,0,0.24306828,0,0,0.14032754,0,0,0.10378379,0,0,0.291681936,0,0,0.168393048,0,0,0.124540548,0,0,0.36460242,0,0,0.21049131,0,0,0.155675685,0,0,0.48613656,0,0,0.28065508,0,0,0.20756758};
VT(-0.5421228,-0.11260696,0,-0.37982886,-0.033787755,0,-0.49398787,0.083343978,0){0,0,0.29334969,0,0,0.14032754,0,0,0.24306828,0,0,0.352019628,0,0,0.168393048,0,0,0.291681936,0,0,0.440024535,0,0,0.21049131,0,0,0.36460242,0,0,0.58669938,0,0,0.28065508,0,0,0.48613656};
VT(-0.28048336,0.5090566,0,-0.078017137,0.55659901,0,-0.18314711,0.6994734500000001,0){0,0,0.32465226,0,0,0.30773002,0,0,0.51294111,0,0,0.389582712,0,0,0.369276024,0,0,0.6155293319999999,0,0,0.48697839,0,0,0.46159503,0,0,0.769411665,0,0,0.6493045200000001,0,0,0.61546004,0,0,1.02588222};
VT(-0.097376676,0.37012027,0,-0.078017137,0.55659901,0,-0.28048336,0.5090566,0){0,0,0.13384161,0,0,0.30773002,0,0,0.32465226,0,0,0.160609932,0,0,0.369276024,0,0,0.389582712,0,0,0.200762415,0,0,0.46159503,0,0,0.48697839,0,0,0.26768322,0,0,0.61546004,0,0,0.6493045200000001};
VT(0,-0.2,0,-0.13561503,-0.2979777,0,0,-0.4,0){0,0,0.030108895,0,0,0.099810723,0,0,0.15276498,0,0,0.036130674,0,0,0.1197728676,0,0,0.183317976,0,0,0.0451633425,0,0,0.1497160845,0,0,0.22914747,0,0,0.06021779,0,0,0.199621446,0,0,0.30552996};
VT(-0.65243693,0.21794688,0,-0.65059508,0.041512801,0,-0.49398787,0.083343978,0){0,0,0.46262006,0,0,0.41885836,0,0,0.24306828,0,0,0.5551440719999999,0,0,0.502630032,0,0,0.291681936,0,0,0.6939300900000001,0,0,0.62828754,0,0,0.36460242,0,0,0.92524012,0,0,0.83771672,0,0,0.48613656};
VT(-0.5562586,0.36467285,0,-0.45358265,0.24821429,0,-0.4165969,0.39543964,0){0,0,0.43706793,0,0,0.25954993,0,0,0.32534352,0,0,0.5244815159999999,0,0,0.3114599159999999,0,0,0.390412224,0,0,0.655601895,0,0,0.389324895,0,0,0.48801528,0,0,0.87413586,0,0,0.51909986,0,0,0.65068704};
VT(-0.4165969,0.39543964,0,-0.45358265,0.24821429,0,-0.28356559,0.29961254,0){0,0,0.32534352,0,0,0.25954993,0,0,0.16152593,0,0,0.390412224,0,0,0.3114599159999999,0,0,0.193831116,0,0,0.48801528,0,0,0.389324895,0,0,0.242288895,0,0,0.65068704,0,0,0.51909986,0,0,0.32305186};
VT(-0.5421228,-0.11260696,0,-0.37726926,-0.17874311,0,-0.37982886,-0.033787755,0){0,0,0.29334969,0,0,0.16815028,0,0,0.14032754,0,0,0.352019628,0,0,0.201780336,0,0,0.168393048,0,0,0.440024535,0,0,0.25222542,0,0,0.21049131,0,0,0.58669938,0,0,0.33630056,0,0,0.28065508};
VT(-0.37982886,-0.033787755,0,-0.37726926,-0.17874311,0,-0.20237428,-0.094234203,0){0,0,0.14032754,0,0,0.16815028,0,0,0.035308585,0,0,0.168393048,0,0,0.201780336,0,0,0.04237030200000001,0,0,0.21049131,0,0,0.25222542,0,0,0.05296287750000001,0,0,0.28065508,0,0,0.33630056,0,0,0.07061717000000001};
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment