package Savage.Biologics.Whales;

import org.web3d.x3d.jsail.Core.*;
import org.web3d.x3d.jsail.fields.*;
import org.web3d.x3d.jsail.Geometry3D.*;
import org.web3d.x3d.jsail.Grouping.*;
import org.web3d.x3d.jsail.Navigation.*;
import org.web3d.x3d.jsail.Rendering.*;
import org.web3d.x3d.jsail.Shape.*;
import org.web3d.x3d.jsail.Texturing.*;

// Javadoc metadata annotations follow, see below for X3DJSAIL Java source code.
/**
 * <p> Humpback whale, approximately 14 meters long. </p>
 <p> Related links: Catalog page <a href="../../../../Biologics/Whales/HumpbackWhaleIndex.html" target="_blank">HumpbackWhale</a>,  source <a href="../../../../Biologics/Whales/HumpbackWhale.java">HumpbackWhale.java</a>, <a href="https://www.web3d.org/x3d/content/examples/X3dResources.html" target="_blank">X3D Resources</a>, <a href="https://www.web3d.org/x3d/content/examples/X3dSceneAuthoringHints.html" target="_blank">X3D Scene Authoring Hints</a>, and <a href="https://www.web3d.org/x3d/content/X3dTooltips.html" target="_blank">X3D Tooltips</a>. </p>
	<table style="color:black; border:0px solid; border-spacing:10px 0px;">
        <caption>Scene Meta Information</caption>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center; padding:10px 0px;"><i>meta tags</i></td>
			<td style="text-align:left;   padding:10px 0px;">&nbsp; Document Metadata </td>
		</tr>

		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> title </i> </td>
			<td> <a href="../../../../Biologics/Whales/HumpbackWhale.x3d">HumpbackWhale.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> identifier </i> </td>
			<td> <a href="https://www.web3d.org/x3d/content/examples/Savage/Biologics/Whales/HumpbackWhale.x3d" target="_blank">https://www.web3d.org/x3d/content/examples/Savage/Biologics/Whales/HumpbackWhale.x3d</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> created </i> </td>
			<td> 26 November 2006 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> modified </i> </td>
			<td> 20 October 2019 </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> description </i> </td>
			<td> Humpback whale, approximately 14 meters long. </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> creator </i> </td>
			<td> ENS Stephanie Thompson </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> Image </i> </td>
			<td> <a href="../../../../Biologics/Whales/Humpback-Whale.gif">Humpback-Whale.gif</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> Image </i> </td>
			<td> <a href="http://inkart.net/art/wildlife_art/humpback_whale/Humpback-Whale.gif" target="_blank">http://inkart.net/art/wildlife_art/humpback_whale/Humpback-Whale.gif</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> FluxStudio <a href="http://www.mediamachines.com" target="_blank">http://www.mediamachines.com</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> generator </i> </td>
			<td> X3D-Edit 3.2, <a href="https://www.web3d.org/x3d/tools/X3D-Edit" target="_blank">https://www.web3d.org/x3d/tools/X3D-Edit</a> </td>
		</tr>
		<tr>
			<td style="text-align:right; vertical-align: text-top;"> <i> license </i> </td>
			<td> <a href="../../../../Biologics/Whales/../../license.html">../../license.html</a> </td>
		</tr>
		<tr style="background-color:silver; border-color:silver;">
			<td style="text-align:center;" colspan="2">  &nbsp; </td>
		</tr>
	</table>

	<p>
		This program uses the
		<a href="https://www.web3d.org/specifications/java/X3DJSAIL.html" target="_blank">X3D Java Scene Access Interface Library (X3DJSAIL)</a>.
		It has been produced using the 
		<a href="https://www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">X3dToJava.xslt</a>
		stylesheet
	       (<a href="https://sourceforge.net/p/x3d/code/HEAD/tree/www.web3d.org/x3d/stylesheets/X3dToJava.xslt" target="_blank">version control</a>)
                which is used to create Java source code from an original <code>.x3d</code> model.
	</p>

	* @author ENS Stephanie Thompson
 */

public class HumpbackWhale
{
	/** Default constructor to create this object. */
	public HumpbackWhale ()
	{
	  initialize();
	}

	/** Create and initialize the X3D model for this object. */
	public final void initialize()
	{
            try { // catch-all
  x3dModel = new X3D().setProfile(X3D.PROFILE_INTERCHANGE).setVersion(X3D.VERSION_3_1)
  .setHead(new head()
    .addMeta(new meta().setName(meta.NAME_TITLE      ).setContent("HumpbackWhale.x3d"))
    .addMeta(new meta().setName(meta.NAME_IDENTIFIER ).setContent("https://www.web3d.org/x3d/content/examples/Savage/Biologics/Whales/HumpbackWhale.x3d"))
    .addMeta(new meta().setName(meta.NAME_CREATED    ).setContent("26 November 2006"))
    .addMeta(new meta().setName(meta.NAME_MODIFIED   ).setContent("20 October 2019"))
    .addMeta(new meta().setName(meta.NAME_DESCRIPTION).setContent("Humpback whale, approximately 14 meters long."))
    .addMeta(new meta().setName(meta.NAME_CREATOR    ).setContent("ENS Stephanie Thompson"))
    .addMeta(new meta().setName(meta.NAME_IMAGE      ).setContent("Humpback-Whale.gif"))
    .addMeta(new meta().setName(meta.NAME_IMAGE      ).setContent("http://inkart.net/art/wildlife_art/humpback_whale/Humpback-Whale.gif"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("FluxStudio http://www.mediamachines.com"))
    .addMeta(new meta().setName(meta.NAME_GENERATOR  ).setContent("X3D-Edit 3.2, https://www.web3d.org/x3d/tools/X3D-Edit"))
    .addMeta(new meta().setName(meta.NAME_LICENSE    ).setContent("../../license.html")))
  .setScene(new Scene()
    .addChild(new WorldInfo().setInfo(new String[] {"This Web3D World was created with Flux Studio, a Web3D authoring tool","www.mediamachines.com"}).setTitle("whale3"))
    .addChild(new Group("HumpbackWhale")
      .addChild(new Group("Viewpoints")
        .addChild(new Transform().setTranslation(5.0,0.0,-30.0)
          .addChild(new Viewpoint().setDescription("right forward quarter of whale").setOrientation(0.0,1.0,0.0,2.6)))
        .addChild(new Transform().setTranslation(20.0,0.0,-20.0)
          .addChild(new Viewpoint().setDescription("side of whale").setOrientation(0.0,1.0,0.0,1.7)))
        .addChild(new Transform().setTranslation(15.0,0.0,-5.0)
          .addChild(new Viewpoint().setDescription("right rear quarter of whale").setOrientation(0.0,1.0,0.0,.9)))
        .addChild(new Transform().setTranslation(5.0,0.0,0.0)
          .addChild(new Viewpoint().setDescription("behind whale flukes, right side").setOrientation(0.0,1.0,0.0,.5))))
      .addChild(new Transform()
        .addChild(new Shape()
          .setAppearance(new Appearance()
            .setMaterial(new Material("default").setAmbientIntensity(1).setDiffuseColor(1.0,1.0,1.0).setShininess(1).setSpecularColor(1.0,1.0,1.0)))
          .setGeometry(new IndexedFaceSet().setCreaseAngle(3.14).setCoordIndex(getIndexedFaceSet_6_25_coordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_25_point())))))
      .addChild(new Transform()
        .addChild(new Shape()
          .setAppearance(new Appearance()
            .setMaterial(new Material().setUSE("default")))
          .setGeometry(new IndexedFaceSet().setCreaseAngle(3.14).setCoordIndex(getIndexedFaceSet_6_31_coordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_31_point())))))
      .addChild(new Transform()
        .addChild(new Shape()
          .setAppearance(new Appearance()
            .setMaterial(new Material("eyeball").setDiffuseColor(0.0,0.0,0.0)))
          .setGeometry(new IndexedFaceSet().setCreaseAngle(3.14).setCoordIndex(getIndexedFaceSet_6_37_coordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_37_point())))))
      .addChild(new Transform()
        .addChild(new Shape()
          .setAppearance(new Appearance()
            .setMaterial(new Material().setUSE("eyeball")))
          .setGeometry(new IndexedFaceSet().setCreaseAngle(3.14).setCoordIndex(getIndexedFaceSet_6_43_coordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_43_point())))))
      .addChild(new Transform("whalebody")
        .addChild(new Shape()
          .setAppearance(new Appearance()
            .setTexture(new ImageTexture().setUrl(new String[] {"WhaleSkin.jpg","https://www.web3d.org/x3d/content/examples/Savage/Biologics/Whales/WhaleSkin.jpg"}))
            .setTextureTransform(new TextureTransform().setScale(4744.58,366.314))
            .setMaterial(new Material().setShininess(.2)))
          .setGeometry(new IndexedFaceSet().setCreaseAngle(3.14).setCoordIndex(getIndexedFaceSet_6_51_coordIndex()).setTexCoordIndex(getIndexedFaceSet_6_51_texCoordIndex())
            .setCoord(new Coordinate().setPoint(getCoordinate_7_51_point()))
            .setTexCoord(new TextureCoordinate().setPoint(getTextureCoordinate_7_52_point())))))));
            }
            catch (Exception ex)
            {       
                System.err.println ("*** Further hints on X3DJSAIL errors and exceptions at");
                System.err.println ("*** https://www.web3d.org/specifications/java/X3DJSAIL.html");
                throw (ex);
            }
	}
	// end of initialize() method

		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_6_25_coordIndex_1()
		{
			int[] value = {0,16,32,-1,0,32,17,-1,0,17,52,-1,0,52,34,-1,0,34,51,-1,0,51,16,-1,1,16,51,-1,1,51,35,-1,1,18,32,-1,1,32,16,-1,1,35,55,-1,1,55,18,-1,2,18,55,-1,2,55,36,-1,2,19,32,-1,2,32,18,-1,2,36,57,-1,2,57,19,-1,3,19,57,-1,3,57,37,-1,3,20,32,-1,3,32,19,-1,3,37,59,-1,3,59,20,-1,4,20,59,-1,4,59,38,-1,4,21,32,-1,4,32,20,-1,4,38,61,-1,4,61,21,-1,5,21,61,-1,5,61,39,-1,5,22,32,-1,5,32,21,-1,5,39,63,-1,5,63,22,-1,6,22,63,-1,6,63,40,-1,6,23,32,-1,6,32,22,-1,6,40,65,-1,6,65,23,-1,7,23,65,-1,7,65,41,-1,7,24,32,-1,7,32,23,-1,7,41,67,-1,7,67,24,-1,8,24,67,-1,8,67,42,-1,8,25,32,-1,8,32,24,-1,8,42,69,-1,8,69,25,-1,9,25,69,-1,9,69,43,-1,9,26,32,-1,9,32,25,-1,9,43,71,-1,9,71,26,-1,10,26,71,-1,10,71,44,-1,10,27,32,-1,10,32,26,-1,10,44,73,-1,10,73,27,-1,11,27,73,-1,11,73,45,-1,11,28,32,-1,11,32,27,-1,11,45,75,-1,11,75,28,-1,12,28,75,-1,12,75,46,-1,12,29,32,-1,12,32,28,-1,12,46,77,-1,12,77,29,-1,13,29,77,-1,13,77,47,-1,13,30,32,-1,13,32,29,-1,13,47,79,-1,13,79,30,-1,14,30,79,-1,14,79,48,-1,14,31,32,-1,14,32,30,-1,14,48,81,-1,14,81,31,-1,15,17,32,-1,15,32,31,-1,15,31,81,-1,15,81,49,-1,15,49,52,-1,15,52,17,-1,33,50,84,-1,33,84,53,-1,33,53,89,-1,33,89,80,-1,33,54,86,-1,33,86,50,-1,33,56,87,-1,33,87,54,-1,33,58,85,-1,33,85,56,-1,33,60,92,-1,33,92,58,-1,33,62,91,-1,33,91,60,-1,33,64,95,-1,33,95,62,-1,33,66,97,-1,33,97,64,-1,33,68,94,-1,33,94,66,-1,33,70,83,-1,33,83,68,-1,33,72,82,-1,33,82,70,-1,33,74,93,-1,33,93,72,-1,33,76,88,-1,33,88,74,-1,33,78,96,-1,33,96,76,-1,33,80,90,-1,33,90,78,-1,34,52,53,-1,34,53,84,-1,34,84,50,-1,34,50,51,-1,35,51,50,-1,35,50,86,-1,35,86,54,-1,35,54,55,-1,36,55,54,-1,36,54,87,-1,36,87,56,-1,36,56,57,-1,37,57,56,-1,37,56,85,-1,37,85,58,-1,37,58,59,-1,38,59,58,-1,38,58,92,-1,38,92,60,-1,38,60,61,-1,39,61,60,-1,39,60,91,-1,39,91,62,-1,39,62,63,-1,40,63,62,-1,40,62,95,-1,40,95,64,-1,40,64,65,-1,41,65,64,-1,41,64,97,-1,41,97,66,-1,41,66,67,-1,42,67,66,-1,42,66,94,-1,42,94,68,-1,42,68,69,-1,43,69,68,-1,43,68,83,-1,43,83,70,-1,43,70,71,-1,44,71,70,-1,44,70,82,-1,44,82,72,-1,44,72,73,-1,45,73,72,-1,45,72,93,-1,45,93,74,-1,45,74,75,-1,46,75,74,-1,46,74,88,-1,46,88,76,-1,46,76,77,-1,47,77,76,-1,47,76,96,-1,47,96,78,-1,47,78,79,-1,48,79,78,-1,48,78,90,-1,48,90,80,-1,48,80,81,-1,49,81,80,-1,49,80,89,-1,49,89,53,-1,49,53,52,-1};
			return value;
		}



		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_6_31_coordIndex_1()
		{
			int[] value = {0,16,32,-1,0,32,17,-1,0,17,52,-1,0,52,34,-1,0,34,51,-1,0,51,16,-1,1,16,51,-1,1,51,35,-1,1,18,32,-1,1,32,16,-1,1,35,55,-1,1,55,18,-1,2,18,55,-1,2,55,36,-1,2,19,32,-1,2,32,18,-1,2,36,57,-1,2,57,19,-1,3,19,57,-1,3,57,37,-1,3,20,32,-1,3,32,19,-1,3,37,59,-1,3,59,20,-1,4,20,59,-1,4,59,38,-1,4,21,32,-1,4,32,20,-1,4,38,61,-1,4,61,21,-1,5,21,61,-1,5,61,39,-1,5,22,32,-1,5,32,21,-1,5,39,63,-1,5,63,22,-1,6,22,63,-1,6,63,40,-1,6,23,32,-1,6,32,22,-1,6,40,65,-1,6,65,23,-1,7,23,65,-1,7,65,41,-1,7,24,32,-1,7,32,23,-1,7,41,67,-1,7,67,24,-1,8,24,67,-1,8,67,42,-1,8,25,32,-1,8,32,24,-1,8,42,69,-1,8,69,25,-1,9,25,69,-1,9,69,43,-1,9,26,32,-1,9,32,25,-1,9,43,71,-1,9,71,26,-1,10,26,71,-1,10,71,44,-1,10,27,32,-1,10,32,26,-1,10,44,73,-1,10,73,27,-1,11,27,73,-1,11,73,45,-1,11,28,32,-1,11,32,27,-1,11,45,75,-1,11,75,28,-1,12,28,75,-1,12,75,46,-1,12,29,32,-1,12,32,28,-1,12,46,77,-1,12,77,29,-1,13,29,77,-1,13,77,47,-1,13,30,32,-1,13,32,29,-1,13,47,79,-1,13,79,30,-1,14,30,79,-1,14,79,48,-1,14,31,32,-1,14,32,30,-1,14,48,81,-1,14,81,31,-1,15,17,32,-1,15,32,31,-1,15,31,81,-1,15,81,49,-1,15,49,52,-1,15,52,17,-1,33,50,84,-1,33,84,53,-1,33,53,89,-1,33,89,80,-1,33,54,86,-1,33,86,50,-1,33,56,87,-1,33,87,54,-1,33,58,85,-1,33,85,56,-1,33,60,92,-1,33,92,58,-1,33,62,91,-1,33,91,60,-1,33,64,95,-1,33,95,62,-1,33,66,97,-1,33,97,64,-1,33,68,94,-1,33,94,66,-1,33,70,83,-1,33,83,68,-1,33,72,82,-1,33,82,70,-1,33,74,93,-1,33,93,72,-1,33,76,88,-1,33,88,74,-1,33,78,96,-1,33,96,76,-1,33,80,90,-1,33,90,78,-1,34,52,53,-1,34,53,84,-1,34,84,50,-1,34,50,51,-1,35,51,50,-1,35,50,86,-1,35,86,54,-1,35,54,55,-1,36,55,54,-1,36,54,87,-1,36,87,56,-1,36,56,57,-1,37,57,56,-1,37,56,85,-1,37,85,58,-1,37,58,59,-1,38,59,58,-1,38,58,92,-1,38,92,60,-1,38,60,61,-1,39,61,60,-1,39,60,91,-1,39,91,62,-1,39,62,63,-1,40,63,62,-1,40,62,95,-1,40,95,64,-1,40,64,65,-1,41,65,64,-1,41,64,97,-1,41,97,66,-1,41,66,67,-1,42,67,66,-1,42,66,94,-1,42,94,68,-1,42,68,69,-1,43,69,68,-1,43,68,83,-1,43,83,70,-1,43,70,71,-1,44,71,70,-1,44,70,82,-1,44,82,72,-1,44,72,73,-1,45,73,72,-1,45,72,93,-1,45,93,74,-1,45,74,75,-1,46,75,74,-1,46,74,88,-1,46,88,76,-1,46,76,77,-1,47,77,76,-1,47,76,96,-1,47,96,78,-1,47,78,79,-1,48,79,78,-1,48,78,90,-1,48,90,80,-1,48,80,81,-1,49,81,80,-1,49,80,89,-1,49,89,53,-1,49,53,52,-1};
			return value;
		}



		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_6_37_coordIndex_1()
		{
			int[] value = {0,114,386,-1,0,386,116,-1,0,115,369,-1,0,369,117,-1,0,116,401,-1,0,401,115,-1,0,117,354,-1,0,354,114,-1,1,114,354,-1,1,354,120,-1,1,118,387,-1,1,387,119,-1,1,119,386,-1,1,386,114,-1,1,120,355,-1,1,355,118,-1,2,118,355,-1,2,355,123,-1,2,121,388,-1,2,388,122,-1,2,122,387,-1,2,387,118,-1,2,123,356,-1,2,356,121,-1,3,121,356,-1,3,356,126,-1,3,124,389,-1,3,389,125,-1,3,125,388,-1,3,388,121,-1,3,126,357,-1,3,357,124,-1,4,124,357,-1,4,357,129,-1,4,127,390,-1,4,390,128,-1,4,128,389,-1,4,389,124,-1,4,129,358,-1,4,358,127,-1,5,127,358,-1,5,358,132,-1,5,130,391,-1,5,391,131,-1,5,131,390,-1,5,390,127,-1,5,132,359,-1,5,359,130,-1,6,130,359,-1,6,359,135,-1,6,133,392,-1,6,392,134,-1,6,134,391,-1,6,391,130,-1,6,135,360,-1,6,360,133,-1,7,133,360,-1,7,360,138,-1,7,136,393,-1,7,393,137,-1,7,137,392,-1,7,392,133,-1,7,138,361,-1,7,361,136,-1,8,136,361,-1,8,361,141,-1,8,139,394,-1,8,394,140,-1,8,140,393,-1,8,393,136,-1,8,141,362,-1,8,362,139,-1,9,139,362,-1,9,362,144,-1,9,142,395,-1,9,395,143,-1,9,143,394,-1,9,394,139,-1,9,144,363,-1,9,363,142,-1,10,142,363,-1,10,363,147,-1,10,145,396,-1,10,396,146,-1,10,146,395,-1,10,395,142,-1,10,147,364,-1,10,364,145,-1,11,145,364,-1,11,364,150,-1,11,148,397,-1,11,397,149,-1,11,149,396,-1,11,396,145,-1,11,150,365,-1,11,365,148,-1,12,148,365,-1,12,365,153,-1,12,151,398,-1,12,398,152,-1,12,152,397,-1,12,397,148,-1,12,153,366,-1,12,366,151,-1,13,151,366,-1,13,366,156,-1,13,154,399,-1,13,399,155,-1,13,155,398,-1,13,398,151,-1,13,156,367,-1,13,367,154,-1,14,154,367,-1,14,367,159,-1,14,157,400,-1,14,400,158,-1,14,158,399,-1,14,399,154,-1,14,159,368,-1,14,368,157,-1,15,115,401,-1,15,401,160,-1,15,157,368,-1,15,368,161,-1,15,160,400,-1,15,400,157,-1,15,161,369,-1,15,369,115,-1,16,116,386,-1,16,386,162,-1,16,162,402,-1,16,402,164,-1,16,163,401,-1,16,401,116,-1,16,164,417,-1,16,417,163,-1,17,119,387,-1,17,387,165,-1,17,162,386,-1,17,386,119,-1,17,165,403,-1,17,403,166,-1,17,166,402,-1,17,402,162,-1,18,122,388,-1,18,388,167,-1,18,165,387,-1,18,387,122,-1,18,167,404,-1,18,404,168,-1,18,168,403,-1,18,403,165,-1,19,125,389,-1,19,389,169,-1,19,167,388,-1,19,388,125,-1,19,169,405,-1,19,405,170,-1,19,170,404,-1,19,404,167,-1,20,128,390,-1,20,390,171,-1,20,169,389,-1,20,389,128,-1,20,171,406,-1,20,406,172,-1,20,172,405,-1,20,405,169,-1,21,131,391,-1,21,391,173,-1,21,171,390,-1,21,390,131,-1,21,173,407,-1,21,407,174,-1,21,174,406,-1,21,406,171,-1,22,134,392,-1,22,392,175,-1,22,173,391,-1,22,391,134,-1,22,175,408,-1,22,408,176,-1,22,176,407,-1,22,407,173,-1,23,137,393,-1,23,393,177,-1,23,175,392,-1,23,392,137,-1,23,177,409,-1,23,409,178,-1,23,178,408,-1,23,408,175,-1,24,140,394,-1,24,394,179,-1,24,177,393,-1,24,393,140,-1,24,179,410,-1,24,410,180,-1,24,180,409,-1,24,409,177,-1,25,143,395,-1,25,395,181,-1,25,179,394,-1,25,394,143,-1,25,181,411,-1,25,411,182,-1,25,182,410,-1,25,410,179,-1,26,146,396,-1,26,396,183,-1,26,181,395,-1,26,395,146,-1,26,183,412,-1,26,412,184,-1,26,184,411,-1,26,411,181,-1,27,149,397,-1,27,397,185,-1,27,183,396,-1,27,396,149,-1,27,185,413,-1,27,413,186,-1,27,186,412,-1,27,412,183,-1,28,152,398,-1,28,398,187,-1,28,185,397,-1,28,397,152,-1,28,187,414,-1,28,414,188,-1,28,188,413,-1,28,413,185,-1,29,155,399,-1,29,399,189,-1,29,187,398,-1,29,398,155,-1,29,189,415,-1,29,415,190,-1,29,190,414,-1,29,414,187,-1,30,158,400,-1,30,400,191,-1,30,189,399,-1,30,399,158,-1,30,191,416,-1,30,416,192,-1,30,192,415,-1,30,415,189,-1,31,160,401,-1,31,401,163,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_37_coordIndex_2()
		{
			int[] value = {31,163,417,-1,31,417,193,-1,31,191,400,-1,31,400,160,-1,31,193,416,-1,31,416,191,-1,32,164,402,-1,32,402,194,-1,32,194,418,-1,32,418,196,-1,32,195,417,-1,32,417,164,-1,32,196,433,-1,32,433,195,-1,33,166,403,-1,33,403,197,-1,33,194,402,-1,33,402,166,-1,33,197,419,-1,33,419,198,-1,33,198,418,-1,33,418,194,-1,34,168,404,-1,34,404,199,-1,34,197,403,-1,34,403,168,-1,34,199,420,-1,34,420,200,-1,34,200,419,-1,34,419,197,-1,35,170,405,-1,35,405,201,-1,35,199,404,-1,35,404,170,-1,35,201,421,-1,35,421,202,-1,35,202,420,-1,35,420,199,-1,36,172,406,-1,36,406,203,-1,36,201,405,-1,36,405,172,-1,36,203,422,-1,36,422,204,-1,36,204,421,-1,36,421,201,-1,37,174,407,-1,37,407,205,-1,37,203,406,-1,37,406,174,-1,37,205,423,-1,37,423,206,-1,37,206,422,-1,37,422,203,-1,38,176,408,-1,38,408,207,-1,38,205,407,-1,38,407,176,-1,38,207,424,-1,38,424,208,-1,38,208,423,-1,38,423,205,-1,39,178,409,-1,39,409,209,-1,39,207,408,-1,39,408,178,-1,39,209,425,-1,39,425,210,-1,39,210,424,-1,39,424,207,-1,40,180,410,-1,40,410,211,-1,40,209,409,-1,40,409,180,-1,40,211,426,-1,40,426,212,-1,40,212,425,-1,40,425,209,-1,41,182,411,-1,41,411,213,-1,41,211,410,-1,41,410,182,-1,41,213,427,-1,41,427,214,-1,41,214,426,-1,41,426,211,-1,42,184,412,-1,42,412,215,-1,42,213,411,-1,42,411,184,-1,42,215,428,-1,42,428,216,-1,42,216,427,-1,42,427,213,-1,43,186,413,-1,43,413,217,-1,43,215,412,-1,43,412,186,-1,43,217,429,-1,43,429,218,-1,43,218,428,-1,43,428,215,-1,44,188,414,-1,44,414,219,-1,44,217,413,-1,44,413,188,-1,44,219,430,-1,44,430,220,-1,44,220,429,-1,44,429,217,-1,45,190,415,-1,45,415,221,-1,45,219,414,-1,45,414,190,-1,45,221,431,-1,45,431,222,-1,45,222,430,-1,45,430,219,-1,46,192,416,-1,46,416,223,-1,46,221,415,-1,46,415,192,-1,46,223,432,-1,46,432,224,-1,46,224,431,-1,46,431,221,-1,47,193,417,-1,47,417,195,-1,47,195,433,-1,47,433,225,-1,47,223,416,-1,47,416,193,-1,47,225,432,-1,47,432,223,-1,48,196,418,-1,48,418,226,-1,48,226,434,-1,48,434,228,-1,48,227,433,-1,48,433,196,-1,48,228,449,-1,48,449,227,-1,49,198,419,-1,49,419,229,-1,49,226,418,-1,49,418,198,-1,49,229,435,-1,49,435,230,-1,49,230,434,-1,49,434,226,-1,50,200,420,-1,50,420,231,-1,50,229,419,-1,50,419,200,-1,50,231,436,-1,50,436,232,-1,50,232,435,-1,50,435,229,-1,51,202,421,-1,51,421,233,-1,51,231,420,-1,51,420,202,-1,51,233,437,-1,51,437,234,-1,51,234,436,-1,51,436,231,-1,52,204,422,-1,52,422,235,-1,52,233,421,-1,52,421,204,-1,52,235,438,-1,52,438,236,-1,52,236,437,-1,52,437,233,-1,53,206,423,-1,53,423,237,-1,53,235,422,-1,53,422,206,-1,53,237,439,-1,53,439,238,-1,53,238,438,-1,53,438,235,-1,54,208,424,-1,54,424,239,-1,54,237,423,-1,54,423,208,-1,54,239,440,-1,54,440,240,-1,54,240,439,-1,54,439,237,-1,55,210,425,-1,55,425,241,-1,55,239,424,-1,55,424,210,-1,55,241,441,-1,55,441,242,-1,55,242,440,-1,55,440,239,-1,56,212,426,-1,56,426,243,-1,56,241,425,-1,56,425,212,-1,56,243,442,-1,56,442,244,-1,56,244,441,-1,56,441,241,-1,57,214,427,-1,57,427,245,-1,57,243,426,-1,57,426,214,-1,57,245,443,-1,57,443,246,-1,57,246,442,-1,57,442,243,-1,58,216,428,-1,58,428,247,-1,58,245,427,-1,58,427,216,-1,58,247,444,-1,58,444,248,-1,58,248,443,-1,58,443,245,-1,59,218,429,-1,59,429,249,-1,59,247,428,-1,59,428,218,-1,59,249,445,-1,59,445,250,-1,59,250,444,-1,59,444,247,-1,60,220,430,-1,60,430,251,-1,60,249,429,-1,60,429,220,-1,60,251,446,-1,60,446,252,-1,60,252,445,-1,60,445,249,-1,61,222,431,-1,61,431,253,-1,61,251,430,-1,61,430,222,-1,61,253,447,-1,61,447,254,-1,61,254,446,-1,61,446,251,-1,62,224,432,-1,62,432,255,-1,62,253,431,-1,62,431,224,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_37_coordIndex_3()
		{
			int[] value = {62,255,448,-1,62,448,256,-1,62,256,447,-1,62,447,253,-1,63,225,433,-1,63,433,227,-1,63,227,449,-1,63,449,257,-1,63,255,432,-1,63,432,225,-1,63,257,448,-1,63,448,255,-1,64,228,434,-1,64,434,258,-1,64,258,450,-1,64,450,260,-1,64,259,449,-1,64,449,228,-1,64,260,465,-1,64,465,259,-1,65,230,435,-1,65,435,261,-1,65,258,434,-1,65,434,230,-1,65,261,451,-1,65,451,262,-1,65,262,450,-1,65,450,258,-1,66,232,436,-1,66,436,263,-1,66,261,435,-1,66,435,232,-1,66,263,452,-1,66,452,264,-1,66,264,451,-1,66,451,261,-1,67,234,437,-1,67,437,265,-1,67,263,436,-1,67,436,234,-1,67,265,453,-1,67,453,266,-1,67,266,452,-1,67,452,263,-1,68,236,438,-1,68,438,267,-1,68,265,437,-1,68,437,236,-1,68,267,454,-1,68,454,268,-1,68,268,453,-1,68,453,265,-1,69,238,439,-1,69,439,269,-1,69,267,438,-1,69,438,238,-1,69,269,455,-1,69,455,270,-1,69,270,454,-1,69,454,267,-1,70,240,440,-1,70,440,271,-1,70,269,439,-1,70,439,240,-1,70,271,456,-1,70,456,272,-1,70,272,455,-1,70,455,269,-1,71,242,441,-1,71,441,273,-1,71,271,440,-1,71,440,242,-1,71,273,457,-1,71,457,274,-1,71,274,456,-1,71,456,271,-1,72,244,442,-1,72,442,275,-1,72,273,441,-1,72,441,244,-1,72,275,458,-1,72,458,276,-1,72,276,457,-1,72,457,273,-1,73,246,443,-1,73,443,277,-1,73,275,442,-1,73,442,246,-1,73,277,459,-1,73,459,278,-1,73,278,458,-1,73,458,275,-1,74,248,444,-1,74,444,279,-1,74,277,443,-1,74,443,248,-1,74,279,460,-1,74,460,280,-1,74,280,459,-1,74,459,277,-1,75,250,445,-1,75,445,281,-1,75,279,444,-1,75,444,250,-1,75,281,461,-1,75,461,282,-1,75,282,460,-1,75,460,279,-1,76,252,446,-1,76,446,283,-1,76,281,445,-1,76,445,252,-1,76,283,462,-1,76,462,284,-1,76,284,461,-1,76,461,281,-1,77,254,447,-1,77,447,285,-1,77,283,446,-1,77,446,254,-1,77,285,463,-1,77,463,286,-1,77,286,462,-1,77,462,283,-1,78,256,448,-1,78,448,287,-1,78,285,447,-1,78,447,256,-1,78,287,464,-1,78,464,288,-1,78,288,463,-1,78,463,285,-1,79,257,449,-1,79,449,259,-1,79,259,465,-1,79,465,289,-1,79,287,448,-1,79,448,257,-1,79,289,464,-1,79,464,287,-1,80,260,450,-1,80,450,290,-1,80,290,466,-1,80,466,292,-1,80,291,465,-1,80,465,260,-1,80,292,481,-1,80,481,291,-1,81,262,451,-1,81,451,293,-1,81,290,450,-1,81,450,262,-1,81,293,467,-1,81,467,294,-1,81,294,466,-1,81,466,290,-1,82,264,452,-1,82,452,295,-1,82,293,451,-1,82,451,264,-1,82,295,468,-1,82,468,296,-1,82,296,467,-1,82,467,293,-1,83,266,453,-1,83,453,297,-1,83,295,452,-1,83,452,266,-1,83,297,469,-1,83,469,298,-1,83,298,468,-1,83,468,295,-1,84,268,454,-1,84,454,299,-1,84,297,453,-1,84,453,268,-1,84,299,470,-1,84,470,300,-1,84,300,469,-1,84,469,297,-1,85,270,455,-1,85,455,301,-1,85,299,454,-1,85,454,270,-1,85,301,471,-1,85,471,302,-1,85,302,470,-1,85,470,299,-1,86,272,456,-1,86,456,303,-1,86,301,455,-1,86,455,272,-1,86,303,472,-1,86,472,304,-1,86,304,471,-1,86,471,301,-1,87,274,457,-1,87,457,305,-1,87,303,456,-1,87,456,274,-1,87,305,473,-1,87,473,306,-1,87,306,472,-1,87,472,303,-1,88,276,458,-1,88,458,307,-1,88,305,457,-1,88,457,276,-1,88,307,474,-1,88,474,308,-1,88,308,473,-1,88,473,305,-1,89,278,459,-1,89,459,309,-1,89,307,458,-1,89,458,278,-1,89,309,475,-1,89,475,310,-1,89,310,474,-1,89,474,307,-1,90,280,460,-1,90,460,311,-1,90,309,459,-1,90,459,280,-1,90,311,476,-1,90,476,312,-1,90,312,475,-1,90,475,309,-1,91,282,461,-1,91,461,313,-1,91,311,460,-1,91,460,282,-1,91,313,477,-1,91,477,314,-1,91,314,476,-1,91,476,311,-1,92,284,462,-1,92,462,315,-1,92,313,461,-1,92,461,284,-1,92,315,478,-1,92,478,316,-1,92,316,477,-1,92,477,313,-1,93,286,463,-1,93,463,317,-1,93,315,462,-1,93,462,286,-1,93,317,479,-1,93,479,318,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_37_coordIndex_4()
		{
			int[] value = {93,318,478,-1,93,478,315,-1,94,288,464,-1,94,464,319,-1,94,317,463,-1,94,463,288,-1,94,319,480,-1,94,480,320,-1,94,320,479,-1,94,479,317,-1,95,289,465,-1,95,465,291,-1,95,291,481,-1,95,481,321,-1,95,319,464,-1,95,464,289,-1,95,321,480,-1,95,480,319,-1,96,292,466,-1,96,466,322,-1,96,322,370,-1,96,370,324,-1,96,323,481,-1,96,481,292,-1,96,324,385,-1,96,385,323,-1,97,294,467,-1,97,467,325,-1,97,322,466,-1,97,466,294,-1,97,325,371,-1,97,371,326,-1,97,326,370,-1,97,370,322,-1,98,296,468,-1,98,468,327,-1,98,325,467,-1,98,467,296,-1,98,327,372,-1,98,372,328,-1,98,328,371,-1,98,371,325,-1,99,298,469,-1,99,469,329,-1,99,327,468,-1,99,468,298,-1,99,329,373,-1,99,373,330,-1,99,330,372,-1,99,372,327,-1,100,300,470,-1,100,470,331,-1,100,329,469,-1,100,469,300,-1,100,331,374,-1,100,374,332,-1,100,332,373,-1,100,373,329,-1,101,302,471,-1,101,471,333,-1,101,331,470,-1,101,470,302,-1,101,333,375,-1,101,375,334,-1,101,334,374,-1,101,374,331,-1,102,304,472,-1,102,472,335,-1,102,333,471,-1,102,471,304,-1,102,335,376,-1,102,376,336,-1,102,336,375,-1,102,375,333,-1,103,306,473,-1,103,473,337,-1,103,335,472,-1,103,472,306,-1,103,337,377,-1,103,377,338,-1,103,338,376,-1,103,376,335,-1,104,308,474,-1,104,474,339,-1,104,337,473,-1,104,473,308,-1,104,339,378,-1,104,378,340,-1,104,340,377,-1,104,377,337,-1,105,310,475,-1,105,475,341,-1,105,339,474,-1,105,474,310,-1,105,341,379,-1,105,379,342,-1,105,342,378,-1,105,378,339,-1,106,312,476,-1,106,476,343,-1,106,341,475,-1,106,475,312,-1,106,343,380,-1,106,380,344,-1,106,344,379,-1,106,379,341,-1,107,314,477,-1,107,477,345,-1,107,343,476,-1,107,476,314,-1,107,345,381,-1,107,381,346,-1,107,346,380,-1,107,380,343,-1,108,316,478,-1,108,478,347,-1,108,345,477,-1,108,477,316,-1,108,347,382,-1,108,382,348,-1,108,348,381,-1,108,381,345,-1,109,318,479,-1,109,479,349,-1,109,347,478,-1,109,478,318,-1,109,349,383,-1,109,383,350,-1,109,350,382,-1,109,382,347,-1,110,320,480,-1,110,480,351,-1,110,349,479,-1,110,479,320,-1,110,351,384,-1,110,384,352,-1,110,352,383,-1,110,383,349,-1,111,321,481,-1,111,481,323,-1,111,323,385,-1,111,385,353,-1,111,351,480,-1,111,480,321,-1,111,353,384,-1,111,384,351,-1,112,117,369,-1,112,369,161,-1,112,120,354,-1,112,354,117,-1,112,123,355,-1,112,355,120,-1,112,126,356,-1,112,356,123,-1,112,129,357,-1,112,357,126,-1,112,132,358,-1,112,358,129,-1,112,135,359,-1,112,359,132,-1,112,138,360,-1,112,360,135,-1,112,141,361,-1,112,361,138,-1,112,144,362,-1,112,362,141,-1,112,147,363,-1,112,363,144,-1,112,150,364,-1,112,364,147,-1,112,153,365,-1,112,365,150,-1,112,156,366,-1,112,366,153,-1,112,159,367,-1,112,367,156,-1,112,161,368,-1,112,368,159,-1,113,324,370,-1,113,370,326,-1,113,326,371,-1,113,371,328,-1,113,328,372,-1,113,372,330,-1,113,330,373,-1,113,373,332,-1,113,332,374,-1,113,374,334,-1,113,334,375,-1,113,375,336,-1,113,336,376,-1,113,376,338,-1,113,338,377,-1,113,377,340,-1,113,340,378,-1,113,378,342,-1,113,342,379,-1,113,379,344,-1,113,344,380,-1,113,380,346,-1,113,346,381,-1,113,381,348,-1,113,348,382,-1,113,382,350,-1,113,350,383,-1,113,383,352,-1,113,352,384,-1,113,384,353,-1,113,353,385,-1,113,385,324,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_37_point_1()
		{
			double[] value = {-.99032,-.02024,-8.40078,-.99282,-.02024,-8.38818,-.99996,-.02024,-8.3775,-1.01065,-.02024,-8.37036,-1.02325,-.02024,-8.36785,-1.03586,-.02024,-8.37036,-1.04654,-.02024,-8.3775,-1.05368,-.02024,-8.38818,-1.05619,-.02024,-8.40078,-1.05368,-.02024,-8.41339,-1.04654,-.02024,-8.42407,-1.03586,-.02024,-8.43121,-1.02325,-.02024,-8.43372,-1.01065,-.02024,-8.43121,-.99996,-.02024,-8.42407,-.99282,-.02024,-8.41339,-.96364,-.03873,-8.40078,-.96818,-.03873,-8.37797,-.9811,-.03873,-8.35863,-1.00044,-.03873,-8.34571,-1.02325,-.03873,-8.34117,-1.04607,-.03873,-8.34571,-1.06541,-.03873,-8.35863,-1.07833,-.03873,-8.37797,-1.08287,-.03873,-8.40078,-1.07833,-.03873,-8.4236,-1.06541,-.03873,-8.44294,-1.04607,-.03873,-8.45586,-1.02325,-.03873,-8.4604,-1.00044,-.03873,-8.45586,-.9811,-.03873,-8.44294,-.96818,-.03873,-8.4236,-.94536,-.06661,-8.40078,-.95129,-.06661,-8.37098,-.96818,-.06661,-8.34571,-.99345,-.06661,-8.32882,-1.02325,-.06661,-8.32289,-1.05306,-.06661,-8.32882,-1.07833,-.06661,-8.34571,-1.09522,-.06661,-8.37098,-1.10114,-.06661,-8.40078,-1.09522,-.06661,-8.43059,-1.07833,-.06661,-8.45586,-1.05306,-.06661,-8.47275,-1.02325,-.06661,-8.47868,-.99345,-.06661,-8.47275,-.96818,-.06661,-8.45586,-.95129,-.06661,-8.43059,-.93894,-.0995,-8.40078,-.94536,-.0995,-8.36852,-.96364,-.0995,-8.34117,-.99099,-.0995,-8.32289,-1.02325,-.0995,-8.31648,-1.05552,-.0995,-8.32289,-1.08287,-.0995,-8.34117,-1.10114,-.0995,-8.36852,-1.10756,-.0995,-8.40078,-1.10114,-.0995,-8.43305,-1.08287,-.0995,-8.4604,-1.05552,-.0995,-8.47868,-1.02325,-.0995,-8.48509,-.99099,-.0995,-8.47868,-.96364,-.0995,-8.4604,-.94536,-.0995,-8.43305,-.94536,-.13239,-8.40078,-.95129,-.13239,-8.37098,-.96818,-.13239,-8.34571,-.99345,-.13239,-8.32882,-1.02325,-.13239,-8.32289,-1.05306,-.13239,-8.32882,-1.07833,-.13239,-8.34571,-1.09522,-.13239,-8.37098,-1.10114,-.13239,-8.40078,-1.09522,-.13239,-8.43059,-1.07833,-.13239,-8.45586,-1.05306,-.13239,-8.47275,-1.02325,-.13239,-8.47868,-.99345,-.13239,-8.47275,-.96818,-.13239,-8.45586,-.95129,-.13239,-8.43059,-.96364,-.16027,-8.40078,-.96818,-.16027,-8.37797,-.9811,-.16027,-8.35863,-1.00044,-.16027,-8.34571,-1.02325,-.16027,-8.34117,-1.04607,-.16027,-8.34571,-1.06541,-.16027,-8.35863,-1.07833,-.16027,-8.37797,-1.08287,-.16027,-8.40078,-1.07833,-.16027,-8.4236,-1.06541,-.16027,-8.44294,-1.04607,-.16027,-8.45586,-1.02325,-.16027,-8.4604,-1.00044,-.16027,-8.45586,-.9811,-.16027,-8.44294,-.96818,-.16027,-8.4236,-.99032,-.17876,-8.40078,-.99282,-.17876,-8.38818,-.99996,-.17876,-8.3775,-1.01065,-.17876,-8.37036};
			return value;
		}
		private double[] getCoordinate_7_37_point_2()
		{
			double[] value = {-1.02325,-.17876,-8.36785,-1.03586,-.17876,-8.37036,-1.04654,-.17876,-8.3775,-1.05368,-.17876,-8.38818,-1.05619,-.17876,-8.40078,-1.05368,-.17876,-8.41339,-1.04654,-.17876,-8.42407,-1.03586,-.17876,-8.43121,-1.02325,-.17876,-8.43372,-1.01065,-.17876,-8.43121,-.99996,-.17876,-8.42407,-.99282,-.17876,-8.41339,-1.02325,-.01258,-8.40078,-1.02325,-.18642,-8.40078,-.99027,-.02037,-8.39422,-.99027,-.02037,-8.40735,-.97642,-.02805,-8.40078,-1.00412,-.01578,-8.40078,-.99529,-.02037,-8.3821,-.97999,-.02805,-8.38286,-1.00558,-.01578,-8.39346,-1.00457,-.02037,-8.37282,-.99014,-.02805,-8.36767,-1.00972,-.01578,-8.38726,-1.01669,-.02037,-8.3678,-1.00533,-.02805,-8.35752,-1.01593,-.01578,-8.38311,-1.02981,-.02037,-8.3678,-1.02325,-.02805,-8.35395,-1.02325,-.01578,-8.38165,-1.04194,-.02037,-8.37282,-1.04117,-.02805,-8.35752,-1.03057,-.01578,-8.38311,-1.05121,-.02037,-8.3821,-1.05637,-.02805,-8.36767,-1.03678,-.01578,-8.38726,-1.05623,-.02037,-8.39422,-1.06652,-.02805,-8.38286,-1.04093,-.01578,-8.39346,-1.05623,-.02037,-8.40735,-1.07008,-.02805,-8.40078,-1.04239,-.01578,-8.40078,-1.05121,-.02037,-8.41947,-1.06652,-.02805,-8.41871,-1.04093,-.01578,-8.40811,-1.04194,-.02037,-8.42875,-1.05637,-.02805,-8.4339,-1.03678,-.01578,-8.41431,-1.02981,-.02037,-8.43377,-1.04117,-.02805,-8.44405,-1.03057,-.01578,-8.41846,-1.01669,-.02037,-8.43377,-1.02325,-.02805,-8.44762,-1.02325,-.01578,-8.41992,-1.00457,-.02037,-8.42875,-1.00533,-.02805,-8.44405,-1.01593,-.01578,-8.41846,-.99529,-.02037,-8.41947,-.99014,-.02805,-8.4339,-1.00972,-.01578,-8.41431,-.97999,-.02805,-8.41871,-1.00558,-.01578,-8.40811,-.96479,-.03873,-8.38916,-.96479,-.03873,-8.41241,-.95317,-.05176,-8.40078,-.97369,-.03873,-8.36767,-.9585,-.05176,-8.37396,-.99014,-.03873,-8.35123,-.97369,-.05176,-8.35123,-1.01162,-.03873,-8.34233,-.99643,-.05176,-8.33603,-1.03488,-.03873,-8.34233,-1.02325,-.05176,-8.3307,-1.05637,-.03873,-8.35123,-1.05007,-.05176,-8.33603,-1.07281,-.03873,-8.36767,-1.07281,-.05176,-8.35123,-1.08171,-.03873,-8.38916,-1.088,-.05176,-8.37396,-1.08171,-.03873,-8.41241,-1.09334,-.05176,-8.40078,-1.07281,-.03873,-8.4339,-1.088,-.05176,-8.42761,-1.05637,-.03873,-8.45034,-1.07281,-.05176,-8.45034,-1.03488,-.03873,-8.45924,-1.05007,-.05176,-8.46554,-1.01162,-.03873,-8.45924,-1.02325,-.05176,-8.47087,-.99014,-.03873,-8.45034,-.99643,-.05176,-8.46554,-.97369,-.03873,-8.4339,-.97369,-.05176,-8.45034,-.9585,-.05176,-8.42761,-.94687,-.06661,-8.38559,-.94687,-.06661,-8.41598,-.94058,-.08273,-8.40078,-.9585,-.06661,-8.35752,-.94687,-.08273,-8.36915,-.97999,-.06661,-8.33603};
			return value;
		}
		private double[] getCoordinate_7_37_point_3()
		{
			double[] value = {-.96479,-.08273,-8.34233,-1.00806,-.06661,-8.3244,-.99162,-.08273,-8.3244,-1.03845,-.06661,-8.3244,-1.02325,-.08273,-8.31811,-1.06652,-.06661,-8.33603,-1.05489,-.08273,-8.3244,-1.088,-.06661,-8.35752,-1.08171,-.08273,-8.34233,-1.09963,-.06661,-8.38559,-1.09963,-.08273,-8.36915,-1.09963,-.06661,-8.41598,-1.10593,-.08273,-8.40078,-1.088,-.06661,-8.44405,-1.09963,-.08273,-8.43242,-1.06652,-.06661,-8.46554,-1.08171,-.08273,-8.45924,-1.03845,-.06661,-8.47717,-1.05489,-.08273,-8.47717,-1.00806,-.06661,-8.47717,-1.02325,-.08273,-8.48346,-.97999,-.06661,-8.46554,-.99162,-.08273,-8.47717,-.9585,-.06661,-8.44405,-.96479,-.08273,-8.45924,-.94687,-.08273,-8.43242,-.94058,-.0995,-8.38434,-.94058,-.0995,-8.41723,-.94058,-.11626,-8.40078,-.95317,-.0995,-8.35395,-.94687,-.11626,-8.36915,-.97642,-.0995,-8.3307,-.96479,-.11626,-8.34233,-1.00681,-.0995,-8.31811,-.99162,-.11626,-8.3244,-1.0397,-.0995,-8.31811,-1.02325,-.11626,-8.31811,-1.07008,-.0995,-8.3307,-1.05489,-.11626,-8.3244,-1.09334,-.0995,-8.35395,-1.08171,-.11626,-8.34233,-1.10593,-.0995,-8.38434,-1.09963,-.11626,-8.36915,-1.10593,-.0995,-8.41723,-1.10593,-.11626,-8.40078,-1.09334,-.0995,-8.44762,-1.09963,-.11626,-8.43242,-1.07008,-.0995,-8.47087,-1.08171,-.11626,-8.45924,-1.0397,-.0995,-8.48346,-1.05489,-.11626,-8.47717,-1.00681,-.0995,-8.48346,-1.02325,-.11626,-8.48346,-.97642,-.0995,-8.47087,-.99162,-.11626,-8.47717,-.95317,-.0995,-8.44762,-.96479,-.11626,-8.45924,-.94687,-.11626,-8.43242,-.94687,-.13239,-8.38559,-.94687,-.13239,-8.41598,-.95317,-.14724,-8.40078,-.9585,-.13239,-8.35752,-.9585,-.14724,-8.37396,-.97999,-.13239,-8.33603,-.97369,-.14724,-8.35123,-1.00806,-.13239,-8.3244,-.99643,-.14724,-8.33603,-1.03845,-.13239,-8.3244,-1.02325,-.14724,-8.3307,-1.06652,-.13239,-8.33603,-1.05007,-.14724,-8.33603,-1.088,-.13239,-8.35752,-1.07281,-.14724,-8.35123,-1.09963,-.13239,-8.38559,-1.088,-.14724,-8.37396,-1.09963,-.13239,-8.41598,-1.09334,-.14724,-8.40078,-1.088,-.13239,-8.44405,-1.088,-.14724,-8.42761,-1.06652,-.13239,-8.46554,-1.07281,-.14724,-8.45034,-1.03845,-.13239,-8.47717,-1.05007,-.14724,-8.46554,-1.00806,-.13239,-8.47717,-1.02325,-.14724,-8.47087,-.97999,-.13239,-8.46554,-.99643,-.14724,-8.46554,-.9585,-.13239,-8.44405,-.97369,-.14724,-8.45034,-.9585,-.14724,-8.42761,-.96479,-.16027,-8.38916,-.96479,-.16027,-8.41241,-.97642,-.17095,-8.40078,-.97369,-.16027,-8.36767,-.97999,-.17095,-8.38286,-.99014,-.16027,-8.35123,-.99014,-.17095,-8.36767,-1.01162,-.16027,-8.34233,-1.00533,-.17095,-8.35752,-1.03488,-.16027,-8.34233};
			return value;
		}
		private double[] getCoordinate_7_37_point_4()
		{
			double[] value = {-1.02325,-.17095,-8.35395,-1.05637,-.16027,-8.35123,-1.04117,-.17095,-8.35752,-1.07281,-.16027,-8.36767,-1.05637,-.17095,-8.36767,-1.08171,-.16027,-8.38916,-1.06652,-.17095,-8.38286,-1.08171,-.16027,-8.41241,-1.07008,-.17095,-8.40078,-1.07281,-.16027,-8.4339,-1.06652,-.17095,-8.41871,-1.05637,-.16027,-8.45034,-1.05637,-.17095,-8.4339,-1.03488,-.16027,-8.45924,-1.04117,-.17095,-8.44405,-1.01162,-.16027,-8.45924,-1.02325,-.17095,-8.44762,-.99014,-.16027,-8.45034,-1.00533,-.17095,-8.44405,-.97369,-.16027,-8.4339,-.99014,-.17095,-8.4339,-.97999,-.17095,-8.41871,-.99027,-.17862,-8.39422,-.99027,-.17862,-8.40735,-1.00412,-.18322,-8.40078,-.99529,-.17862,-8.3821,-1.00558,-.18322,-8.39346,-1.00457,-.17862,-8.37282,-1.00972,-.18322,-8.38726,-1.01669,-.17862,-8.3678,-1.01593,-.18322,-8.38311,-1.02981,-.17862,-8.3678,-1.02325,-.18322,-8.38165,-1.04194,-.17862,-8.37282,-1.03057,-.18322,-8.38311,-1.05121,-.17862,-8.3821,-1.03678,-.18322,-8.38726,-1.05623,-.17862,-8.39422,-1.04093,-.18322,-8.39346,-1.05623,-.17862,-8.40735,-1.04239,-.18322,-8.40078,-1.05121,-.17862,-8.41947,-1.04093,-.18322,-8.40811,-1.04194,-.17862,-8.42875,-1.03678,-.18322,-8.41431,-1.02981,-.17862,-8.43377,-1.03057,-.18322,-8.41846,-1.01669,-.17862,-8.43377,-1.02325,-.18322,-8.41992,-1.00457,-.17862,-8.42875,-1.01593,-.18322,-8.41846,-.99529,-.17862,-8.41947,-1.00972,-.18322,-8.41431,-1.00558,-.18322,-8.40811,-1.00175,-.01633,-8.39651,-1.00502,-.01633,-8.38861,-1.01107,-.01633,-8.38256,-1.01898,-.01633,-8.37928,-1.02753,-.01633,-8.37928,-1.03543,-.01633,-8.38256,-1.04148,-.01633,-8.38861,-1.04475,-.01633,-8.39651,-1.04475,-.01633,-8.40506,-1.04148,-.01633,-8.41296,-1.03543,-.01633,-8.41901,-1.02753,-.01633,-8.42229,-1.01898,-.01633,-8.42229,-1.01107,-.01633,-8.41901,-1.00502,-.01633,-8.41296,-1.00175,-.01633,-8.40506,-1.00175,-.18266,-8.39651,-1.00502,-.18266,-8.38861,-1.01107,-.18266,-8.38256,-1.01898,-.18266,-8.37928,-1.02753,-.18266,-8.37928,-1.03543,-.18266,-8.38256,-1.04148,-.18266,-8.38861,-1.04475,-.18266,-8.39651,-1.04475,-.18266,-8.40506,-1.04148,-.18266,-8.41296,-1.03543,-.18266,-8.41901,-1.02753,-.18266,-8.42229,-1.01898,-.18266,-8.42229,-1.01107,-.18266,-8.41901,-1.00502,-.18266,-8.41296,-1.00175,-.18266,-8.40506,-.97733,-.02805,-8.39165,-.98432,-.02805,-8.37477,-.99724,-.02805,-8.36185,-1.01412,-.02805,-8.35486,-1.03239,-.02805,-8.35486,-1.04927,-.02805,-8.36185,-1.06218,-.02805,-8.37477,-1.06918,-.02805,-8.39165,-1.06918,-.02805,-8.40992,-1.06218,-.02805,-8.4268,-1.04927,-.02805,-8.43972,-1.03239,-.02805,-8.44671,-1.01412,-.02805,-8.44671,-.99724,-.02805,-8.43972};
			return value;
		}
		private double[] getCoordinate_7_37_point_5()
		{
			double[] value = {-.98432,-.02805,-8.4268,-.97733,-.02805,-8.40992,-.95452,-.05176,-8.38711,-.96499,-.05176,-8.36185,-.98432,-.05176,-8.34252,-1.00958,-.05176,-8.33206,-1.03692,-.05176,-8.33206,-1.06218,-.05176,-8.34252,-1.08152,-.05176,-8.36185,-1.09198,-.05176,-8.38711,-1.09198,-.05176,-8.41446,-1.08152,-.05176,-8.43972,-1.06218,-.05176,-8.45905,-1.03692,-.05176,-8.46951,-1.00958,-.05176,-8.46951,-.98432,-.05176,-8.45905,-.96499,-.05176,-8.43972,-.95452,-.05176,-8.41446,-.94218,-.08273,-8.38466,-.95452,-.08273,-8.35486,-.97733,-.08273,-8.33206,-1.00713,-.08273,-8.31971,-1.03938,-.08273,-8.31971,-1.06918,-.08273,-8.33206,-1.09198,-.08273,-8.35486,-1.10432,-.08273,-8.38466,-1.10432,-.08273,-8.41691,-1.09198,-.08273,-8.44671,-1.06918,-.08273,-8.46951,-1.03938,-.08273,-8.48185,-1.00713,-.08273,-8.48185,-.97733,-.08273,-8.46951,-.95452,-.08273,-8.44671,-.94218,-.08273,-8.41691,-.94218,-.11626,-8.38466,-.95452,-.11626,-8.35486,-.97733,-.11626,-8.33206,-1.00713,-.11626,-8.31971,-1.03938,-.11626,-8.31971,-1.06918,-.11626,-8.33206,-1.09198,-.11626,-8.35486,-1.10432,-.11626,-8.38466,-1.10432,-.11626,-8.41691,-1.09198,-.11626,-8.44671,-1.06918,-.11626,-8.46951,-1.03938,-.11626,-8.48185,-1.00713,-.11626,-8.48185,-.97733,-.11626,-8.46951,-.95452,-.11626,-8.44671,-.94218,-.11626,-8.41691,-.95452,-.14724,-8.38711,-.96499,-.14724,-8.36185,-.98432,-.14724,-8.34252,-1.00958,-.14724,-8.33206,-1.03692,-.14724,-8.33206,-1.06218,-.14724,-8.34252,-1.08152,-.14724,-8.36185,-1.09198,-.14724,-8.38711,-1.09198,-.14724,-8.41446,-1.08152,-.14724,-8.43972,-1.06218,-.14724,-8.45905,-1.03692,-.14724,-8.46951,-1.00958,-.14724,-8.46951,-.98432,-.14724,-8.45905,-.96499,-.14724,-8.43972,-.95452,-.14724,-8.41446,-.97733,-.17095,-8.39165,-.98432,-.17095,-8.37477,-.99724,-.17095,-8.36185,-1.01412,-.17095,-8.35486,-1.03239,-.17095,-8.35486,-1.04927,-.17095,-8.36185,-1.06218,-.17095,-8.37477,-1.06918,-.17095,-8.39165,-1.06918,-.17095,-8.40992,-1.06218,-.17095,-8.4268,-1.04927,-.17095,-8.43972,-1.03239,-.17095,-8.44671,-1.01412,-.17095,-8.44671,-.99724,-.17095,-8.43972,-.98432,-.17095,-8.4268,-.97733,-.17095,-8.40992};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_6_43_coordIndex_1()
		{
			int[] value = {0,114,386,-1,0,386,116,-1,0,115,369,-1,0,369,117,-1,0,116,401,-1,0,401,115,-1,0,117,354,-1,0,354,114,-1,1,114,354,-1,1,354,120,-1,1,118,387,-1,1,387,119,-1,1,119,386,-1,1,386,114,-1,1,120,355,-1,1,355,118,-1,2,118,355,-1,2,355,123,-1,2,121,388,-1,2,388,122,-1,2,122,387,-1,2,387,118,-1,2,123,356,-1,2,356,121,-1,3,121,356,-1,3,356,126,-1,3,124,389,-1,3,389,125,-1,3,125,388,-1,3,388,121,-1,3,126,357,-1,3,357,124,-1,4,124,357,-1,4,357,129,-1,4,127,390,-1,4,390,128,-1,4,128,389,-1,4,389,124,-1,4,129,358,-1,4,358,127,-1,5,127,358,-1,5,358,132,-1,5,130,391,-1,5,391,131,-1,5,131,390,-1,5,390,127,-1,5,132,359,-1,5,359,130,-1,6,130,359,-1,6,359,135,-1,6,133,392,-1,6,392,134,-1,6,134,391,-1,6,391,130,-1,6,135,360,-1,6,360,133,-1,7,133,360,-1,7,360,138,-1,7,136,393,-1,7,393,137,-1,7,137,392,-1,7,392,133,-1,7,138,361,-1,7,361,136,-1,8,136,361,-1,8,361,141,-1,8,139,394,-1,8,394,140,-1,8,140,393,-1,8,393,136,-1,8,141,362,-1,8,362,139,-1,9,139,362,-1,9,362,144,-1,9,142,395,-1,9,395,143,-1,9,143,394,-1,9,394,139,-1,9,144,363,-1,9,363,142,-1,10,142,363,-1,10,363,147,-1,10,145,396,-1,10,396,146,-1,10,146,395,-1,10,395,142,-1,10,147,364,-1,10,364,145,-1,11,145,364,-1,11,364,150,-1,11,148,397,-1,11,397,149,-1,11,149,396,-1,11,396,145,-1,11,150,365,-1,11,365,148,-1,12,148,365,-1,12,365,153,-1,12,151,398,-1,12,398,152,-1,12,152,397,-1,12,397,148,-1,12,153,366,-1,12,366,151,-1,13,151,366,-1,13,366,156,-1,13,154,399,-1,13,399,155,-1,13,155,398,-1,13,398,151,-1,13,156,367,-1,13,367,154,-1,14,154,367,-1,14,367,159,-1,14,157,400,-1,14,400,158,-1,14,158,399,-1,14,399,154,-1,14,159,368,-1,14,368,157,-1,15,115,401,-1,15,401,160,-1,15,157,368,-1,15,368,161,-1,15,160,400,-1,15,400,157,-1,15,161,369,-1,15,369,115,-1,16,116,386,-1,16,386,162,-1,16,162,402,-1,16,402,164,-1,16,163,401,-1,16,401,116,-1,16,164,417,-1,16,417,163,-1,17,119,387,-1,17,387,165,-1,17,162,386,-1,17,386,119,-1,17,165,403,-1,17,403,166,-1,17,166,402,-1,17,402,162,-1,18,122,388,-1,18,388,167,-1,18,165,387,-1,18,387,122,-1,18,167,404,-1,18,404,168,-1,18,168,403,-1,18,403,165,-1,19,125,389,-1,19,389,169,-1,19,167,388,-1,19,388,125,-1,19,169,405,-1,19,405,170,-1,19,170,404,-1,19,404,167,-1,20,128,390,-1,20,390,171,-1,20,169,389,-1,20,389,128,-1,20,171,406,-1,20,406,172,-1,20,172,405,-1,20,405,169,-1,21,131,391,-1,21,391,173,-1,21,171,390,-1,21,390,131,-1,21,173,407,-1,21,407,174,-1,21,174,406,-1,21,406,171,-1,22,134,392,-1,22,392,175,-1,22,173,391,-1,22,391,134,-1,22,175,408,-1,22,408,176,-1,22,176,407,-1,22,407,173,-1,23,137,393,-1,23,393,177,-1,23,175,392,-1,23,392,137,-1,23,177,409,-1,23,409,178,-1,23,178,408,-1,23,408,175,-1,24,140,394,-1,24,394,179,-1,24,177,393,-1,24,393,140,-1,24,179,410,-1,24,410,180,-1,24,180,409,-1,24,409,177,-1,25,143,395,-1,25,395,181,-1,25,179,394,-1,25,394,143,-1,25,181,411,-1,25,411,182,-1,25,182,410,-1,25,410,179,-1,26,146,396,-1,26,396,183,-1,26,181,395,-1,26,395,146,-1,26,183,412,-1,26,412,184,-1,26,184,411,-1,26,411,181,-1,27,149,397,-1,27,397,185,-1,27,183,396,-1,27,396,149,-1,27,185,413,-1,27,413,186,-1,27,186,412,-1,27,412,183,-1,28,152,398,-1,28,398,187,-1,28,185,397,-1,28,397,152,-1,28,187,414,-1,28,414,188,-1,28,188,413,-1,28,413,185,-1,29,155,399,-1,29,399,189,-1,29,187,398,-1,29,398,155,-1,29,189,415,-1,29,415,190,-1,29,190,414,-1,29,414,187,-1,30,158,400,-1,30,400,191,-1,30,189,399,-1,30,399,158,-1,30,191,416,-1,30,416,192,-1,30,192,415,-1,30,415,189,-1,31,160,401,-1,31,401,163,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_43_coordIndex_2()
		{
			int[] value = {31,163,417,-1,31,417,193,-1,31,191,400,-1,31,400,160,-1,31,193,416,-1,31,416,191,-1,32,164,402,-1,32,402,194,-1,32,194,418,-1,32,418,196,-1,32,195,417,-1,32,417,164,-1,32,196,433,-1,32,433,195,-1,33,166,403,-1,33,403,197,-1,33,194,402,-1,33,402,166,-1,33,197,419,-1,33,419,198,-1,33,198,418,-1,33,418,194,-1,34,168,404,-1,34,404,199,-1,34,197,403,-1,34,403,168,-1,34,199,420,-1,34,420,200,-1,34,200,419,-1,34,419,197,-1,35,170,405,-1,35,405,201,-1,35,199,404,-1,35,404,170,-1,35,201,421,-1,35,421,202,-1,35,202,420,-1,35,420,199,-1,36,172,406,-1,36,406,203,-1,36,201,405,-1,36,405,172,-1,36,203,422,-1,36,422,204,-1,36,204,421,-1,36,421,201,-1,37,174,407,-1,37,407,205,-1,37,203,406,-1,37,406,174,-1,37,205,423,-1,37,423,206,-1,37,206,422,-1,37,422,203,-1,38,176,408,-1,38,408,207,-1,38,205,407,-1,38,407,176,-1,38,207,424,-1,38,424,208,-1,38,208,423,-1,38,423,205,-1,39,178,409,-1,39,409,209,-1,39,207,408,-1,39,408,178,-1,39,209,425,-1,39,425,210,-1,39,210,424,-1,39,424,207,-1,40,180,410,-1,40,410,211,-1,40,209,409,-1,40,409,180,-1,40,211,426,-1,40,426,212,-1,40,212,425,-1,40,425,209,-1,41,182,411,-1,41,411,213,-1,41,211,410,-1,41,410,182,-1,41,213,427,-1,41,427,214,-1,41,214,426,-1,41,426,211,-1,42,184,412,-1,42,412,215,-1,42,213,411,-1,42,411,184,-1,42,215,428,-1,42,428,216,-1,42,216,427,-1,42,427,213,-1,43,186,413,-1,43,413,217,-1,43,215,412,-1,43,412,186,-1,43,217,429,-1,43,429,218,-1,43,218,428,-1,43,428,215,-1,44,188,414,-1,44,414,219,-1,44,217,413,-1,44,413,188,-1,44,219,430,-1,44,430,220,-1,44,220,429,-1,44,429,217,-1,45,190,415,-1,45,415,221,-1,45,219,414,-1,45,414,190,-1,45,221,431,-1,45,431,222,-1,45,222,430,-1,45,430,219,-1,46,192,416,-1,46,416,223,-1,46,221,415,-1,46,415,192,-1,46,223,432,-1,46,432,224,-1,46,224,431,-1,46,431,221,-1,47,193,417,-1,47,417,195,-1,47,195,433,-1,47,433,225,-1,47,223,416,-1,47,416,193,-1,47,225,432,-1,47,432,223,-1,48,196,418,-1,48,418,226,-1,48,226,434,-1,48,434,228,-1,48,227,433,-1,48,433,196,-1,48,228,449,-1,48,449,227,-1,49,198,419,-1,49,419,229,-1,49,226,418,-1,49,418,198,-1,49,229,435,-1,49,435,230,-1,49,230,434,-1,49,434,226,-1,50,200,420,-1,50,420,231,-1,50,229,419,-1,50,419,200,-1,50,231,436,-1,50,436,232,-1,50,232,435,-1,50,435,229,-1,51,202,421,-1,51,421,233,-1,51,231,420,-1,51,420,202,-1,51,233,437,-1,51,437,234,-1,51,234,436,-1,51,436,231,-1,52,204,422,-1,52,422,235,-1,52,233,421,-1,52,421,204,-1,52,235,438,-1,52,438,236,-1,52,236,437,-1,52,437,233,-1,53,206,423,-1,53,423,237,-1,53,235,422,-1,53,422,206,-1,53,237,439,-1,53,439,238,-1,53,238,438,-1,53,438,235,-1,54,208,424,-1,54,424,239,-1,54,237,423,-1,54,423,208,-1,54,239,440,-1,54,440,240,-1,54,240,439,-1,54,439,237,-1,55,210,425,-1,55,425,241,-1,55,239,424,-1,55,424,210,-1,55,241,441,-1,55,441,242,-1,55,242,440,-1,55,440,239,-1,56,212,426,-1,56,426,243,-1,56,241,425,-1,56,425,212,-1,56,243,442,-1,56,442,244,-1,56,244,441,-1,56,441,241,-1,57,214,427,-1,57,427,245,-1,57,243,426,-1,57,426,214,-1,57,245,443,-1,57,443,246,-1,57,246,442,-1,57,442,243,-1,58,216,428,-1,58,428,247,-1,58,245,427,-1,58,427,216,-1,58,247,444,-1,58,444,248,-1,58,248,443,-1,58,443,245,-1,59,218,429,-1,59,429,249,-1,59,247,428,-1,59,428,218,-1,59,249,445,-1,59,445,250,-1,59,250,444,-1,59,444,247,-1,60,220,430,-1,60,430,251,-1,60,249,429,-1,60,429,220,-1,60,251,446,-1,60,446,252,-1,60,252,445,-1,60,445,249,-1,61,222,431,-1,61,431,253,-1,61,251,430,-1,61,430,222,-1,61,253,447,-1,61,447,254,-1,61,254,446,-1,61,446,251,-1,62,224,432,-1,62,432,255,-1,62,253,431,-1,62,431,224,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_43_coordIndex_3()
		{
			int[] value = {62,255,448,-1,62,448,256,-1,62,256,447,-1,62,447,253,-1,63,225,433,-1,63,433,227,-1,63,227,449,-1,63,449,257,-1,63,255,432,-1,63,432,225,-1,63,257,448,-1,63,448,255,-1,64,228,434,-1,64,434,258,-1,64,258,450,-1,64,450,260,-1,64,259,449,-1,64,449,228,-1,64,260,465,-1,64,465,259,-1,65,230,435,-1,65,435,261,-1,65,258,434,-1,65,434,230,-1,65,261,451,-1,65,451,262,-1,65,262,450,-1,65,450,258,-1,66,232,436,-1,66,436,263,-1,66,261,435,-1,66,435,232,-1,66,263,452,-1,66,452,264,-1,66,264,451,-1,66,451,261,-1,67,234,437,-1,67,437,265,-1,67,263,436,-1,67,436,234,-1,67,265,453,-1,67,453,266,-1,67,266,452,-1,67,452,263,-1,68,236,438,-1,68,438,267,-1,68,265,437,-1,68,437,236,-1,68,267,454,-1,68,454,268,-1,68,268,453,-1,68,453,265,-1,69,238,439,-1,69,439,269,-1,69,267,438,-1,69,438,238,-1,69,269,455,-1,69,455,270,-1,69,270,454,-1,69,454,267,-1,70,240,440,-1,70,440,271,-1,70,269,439,-1,70,439,240,-1,70,271,456,-1,70,456,272,-1,70,272,455,-1,70,455,269,-1,71,242,441,-1,71,441,273,-1,71,271,440,-1,71,440,242,-1,71,273,457,-1,71,457,274,-1,71,274,456,-1,71,456,271,-1,72,244,442,-1,72,442,275,-1,72,273,441,-1,72,441,244,-1,72,275,458,-1,72,458,276,-1,72,276,457,-1,72,457,273,-1,73,246,443,-1,73,443,277,-1,73,275,442,-1,73,442,246,-1,73,277,459,-1,73,459,278,-1,73,278,458,-1,73,458,275,-1,74,248,444,-1,74,444,279,-1,74,277,443,-1,74,443,248,-1,74,279,460,-1,74,460,280,-1,74,280,459,-1,74,459,277,-1,75,250,445,-1,75,445,281,-1,75,279,444,-1,75,444,250,-1,75,281,461,-1,75,461,282,-1,75,282,460,-1,75,460,279,-1,76,252,446,-1,76,446,283,-1,76,281,445,-1,76,445,252,-1,76,283,462,-1,76,462,284,-1,76,284,461,-1,76,461,281,-1,77,254,447,-1,77,447,285,-1,77,283,446,-1,77,446,254,-1,77,285,463,-1,77,463,286,-1,77,286,462,-1,77,462,283,-1,78,256,448,-1,78,448,287,-1,78,285,447,-1,78,447,256,-1,78,287,464,-1,78,464,288,-1,78,288,463,-1,78,463,285,-1,79,257,449,-1,79,449,259,-1,79,259,465,-1,79,465,289,-1,79,287,448,-1,79,448,257,-1,79,289,464,-1,79,464,287,-1,80,260,450,-1,80,450,290,-1,80,290,466,-1,80,466,292,-1,80,291,465,-1,80,465,260,-1,80,292,481,-1,80,481,291,-1,81,262,451,-1,81,451,293,-1,81,290,450,-1,81,450,262,-1,81,293,467,-1,81,467,294,-1,81,294,466,-1,81,466,290,-1,82,264,452,-1,82,452,295,-1,82,293,451,-1,82,451,264,-1,82,295,468,-1,82,468,296,-1,82,296,467,-1,82,467,293,-1,83,266,453,-1,83,453,297,-1,83,295,452,-1,83,452,266,-1,83,297,469,-1,83,469,298,-1,83,298,468,-1,83,468,295,-1,84,268,454,-1,84,454,299,-1,84,297,453,-1,84,453,268,-1,84,299,470,-1,84,470,300,-1,84,300,469,-1,84,469,297,-1,85,270,455,-1,85,455,301,-1,85,299,454,-1,85,454,270,-1,85,301,471,-1,85,471,302,-1,85,302,470,-1,85,470,299,-1,86,272,456,-1,86,456,303,-1,86,301,455,-1,86,455,272,-1,86,303,472,-1,86,472,304,-1,86,304,471,-1,86,471,301,-1,87,274,457,-1,87,457,305,-1,87,303,456,-1,87,456,274,-1,87,305,473,-1,87,473,306,-1,87,306,472,-1,87,472,303,-1,88,276,458,-1,88,458,307,-1,88,305,457,-1,88,457,276,-1,88,307,474,-1,88,474,308,-1,88,308,473,-1,88,473,305,-1,89,278,459,-1,89,459,309,-1,89,307,458,-1,89,458,278,-1,89,309,475,-1,89,475,310,-1,89,310,474,-1,89,474,307,-1,90,280,460,-1,90,460,311,-1,90,309,459,-1,90,459,280,-1,90,311,476,-1,90,476,312,-1,90,312,475,-1,90,475,309,-1,91,282,461,-1,91,461,313,-1,91,311,460,-1,91,460,282,-1,91,313,477,-1,91,477,314,-1,91,314,476,-1,91,476,311,-1,92,284,462,-1,92,462,315,-1,92,313,461,-1,92,461,284,-1,92,315,478,-1,92,478,316,-1,92,316,477,-1,92,477,313,-1,93,286,463,-1,93,463,317,-1,93,315,462,-1,93,462,286,-1,93,317,479,-1,93,479,318,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_43_coordIndex_4()
		{
			int[] value = {93,318,478,-1,93,478,315,-1,94,288,464,-1,94,464,319,-1,94,317,463,-1,94,463,288,-1,94,319,480,-1,94,480,320,-1,94,320,479,-1,94,479,317,-1,95,289,465,-1,95,465,291,-1,95,291,481,-1,95,481,321,-1,95,319,464,-1,95,464,289,-1,95,321,480,-1,95,480,319,-1,96,292,466,-1,96,466,322,-1,96,322,370,-1,96,370,324,-1,96,323,481,-1,96,481,292,-1,96,324,385,-1,96,385,323,-1,97,294,467,-1,97,467,325,-1,97,322,466,-1,97,466,294,-1,97,325,371,-1,97,371,326,-1,97,326,370,-1,97,370,322,-1,98,296,468,-1,98,468,327,-1,98,325,467,-1,98,467,296,-1,98,327,372,-1,98,372,328,-1,98,328,371,-1,98,371,325,-1,99,298,469,-1,99,469,329,-1,99,327,468,-1,99,468,298,-1,99,329,373,-1,99,373,330,-1,99,330,372,-1,99,372,327,-1,100,300,470,-1,100,470,331,-1,100,329,469,-1,100,469,300,-1,100,331,374,-1,100,374,332,-1,100,332,373,-1,100,373,329,-1,101,302,471,-1,101,471,333,-1,101,331,470,-1,101,470,302,-1,101,333,375,-1,101,375,334,-1,101,334,374,-1,101,374,331,-1,102,304,472,-1,102,472,335,-1,102,333,471,-1,102,471,304,-1,102,335,376,-1,102,376,336,-1,102,336,375,-1,102,375,333,-1,103,306,473,-1,103,473,337,-1,103,335,472,-1,103,472,306,-1,103,337,377,-1,103,377,338,-1,103,338,376,-1,103,376,335,-1,104,308,474,-1,104,474,339,-1,104,337,473,-1,104,473,308,-1,104,339,378,-1,104,378,340,-1,104,340,377,-1,104,377,337,-1,105,310,475,-1,105,475,341,-1,105,339,474,-1,105,474,310,-1,105,341,379,-1,105,379,342,-1,105,342,378,-1,105,378,339,-1,106,312,476,-1,106,476,343,-1,106,341,475,-1,106,475,312,-1,106,343,380,-1,106,380,344,-1,106,344,379,-1,106,379,341,-1,107,314,477,-1,107,477,345,-1,107,343,476,-1,107,476,314,-1,107,345,381,-1,107,381,346,-1,107,346,380,-1,107,380,343,-1,108,316,478,-1,108,478,347,-1,108,345,477,-1,108,477,316,-1,108,347,382,-1,108,382,348,-1,108,348,381,-1,108,381,345,-1,109,318,479,-1,109,479,349,-1,109,347,478,-1,109,478,318,-1,109,349,383,-1,109,383,350,-1,109,350,382,-1,109,382,347,-1,110,320,480,-1,110,480,351,-1,110,349,479,-1,110,479,320,-1,110,351,384,-1,110,384,352,-1,110,352,383,-1,110,383,349,-1,111,321,481,-1,111,481,323,-1,111,323,385,-1,111,385,353,-1,111,351,480,-1,111,480,321,-1,111,353,384,-1,111,384,351,-1,112,117,369,-1,112,369,161,-1,112,120,354,-1,112,354,117,-1,112,123,355,-1,112,355,120,-1,112,126,356,-1,112,356,123,-1,112,129,357,-1,112,357,126,-1,112,132,358,-1,112,358,129,-1,112,135,359,-1,112,359,132,-1,112,138,360,-1,112,360,135,-1,112,141,361,-1,112,361,138,-1,112,144,362,-1,112,362,141,-1,112,147,363,-1,112,363,144,-1,112,150,364,-1,112,364,147,-1,112,153,365,-1,112,365,150,-1,112,156,366,-1,112,366,153,-1,112,159,367,-1,112,367,156,-1,112,161,368,-1,112,368,159,-1,113,324,370,-1,113,370,326,-1,113,326,371,-1,113,371,328,-1,113,328,372,-1,113,372,330,-1,113,330,373,-1,113,373,332,-1,113,332,374,-1,113,374,334,-1,113,334,375,-1,113,375,336,-1,113,336,376,-1,113,376,338,-1,113,338,377,-1,113,377,340,-1,113,340,378,-1,113,378,342,-1,113,342,379,-1,113,379,344,-1,113,344,380,-1,113,380,346,-1,113,346,381,-1,113,381,348,-1,113,348,382,-1,113,382,350,-1,113,350,383,-1,113,383,352,-1,113,352,384,-1,113,384,353,-1,113,353,385,-1,113,385,324,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_43_point_1()
		{
			double[] value = {1.04827,-.02024,-8.40078,1.04577,-.02024,-8.38818,1.03863,-.02024,-8.3775,1.02794,-.02024,-8.37036,1.01534,-.02024,-8.36785,1.00273,-.02024,-8.37036,.99205,-.02024,-8.3775,.98491,-.02024,-8.38818,.9824,-.02024,-8.40078,.98491,-.02024,-8.41339,.99205,-.02024,-8.42407,1.00273,-.02024,-8.43121,1.01534,-.02024,-8.43372,1.02794,-.02024,-8.43121,1.03863,-.02024,-8.42407,1.04577,-.02024,-8.41339,1.07495,-.03873,-8.40078,1.07042,-.03873,-8.37797,1.05749,-.03873,-8.35863,1.03815,-.03873,-8.34571,1.01534,-.03873,-8.34117,.99252,-.03873,-8.34571,.97318,-.03873,-8.35863,.96026,-.03873,-8.37797,.95572,-.03873,-8.40078,.96026,-.03873,-8.4236,.97318,-.03873,-8.44294,.99252,-.03873,-8.45586,1.01534,-.03873,-8.4604,1.03815,-.03873,-8.45586,1.05749,-.03873,-8.44294,1.07042,-.03873,-8.4236,1.09323,-.06661,-8.40078,1.0873,-.06661,-8.37098,1.07042,-.06661,-8.34571,1.04515,-.06661,-8.32882,1.01534,-.06661,-8.32289,.98553,-.06661,-8.32882,.96026,-.06661,-8.34571,.94338,-.06661,-8.37098,.93745,-.06661,-8.40078,.94338,-.06661,-8.43059,.96026,-.06661,-8.45586,.98553,-.06661,-8.47275,1.01534,-.06661,-8.47868,1.04515,-.06661,-8.47275,1.07042,-.06661,-8.45586,1.0873,-.06661,-8.43059,1.09965,-.0995,-8.40078,1.09323,-.0995,-8.36852,1.07495,-.0995,-8.34117,1.0476,-.0995,-8.32289,1.01534,-.0995,-8.31648,.98307,-.0995,-8.32289,.95572,-.0995,-8.34117,.93745,-.0995,-8.36852,.93103,-.0995,-8.40078,.93745,-.0995,-8.43305,.95572,-.0995,-8.4604,.98307,-.0995,-8.47868,1.01534,-.0995,-8.48509,1.0476,-.0995,-8.47868,1.07495,-.0995,-8.4604,1.09323,-.0995,-8.43305,1.09323,-.13239,-8.40078,1.0873,-.13239,-8.37098,1.07042,-.13239,-8.34571,1.04515,-.13239,-8.32882,1.01534,-.13239,-8.32289,.98553,-.13239,-8.32882,.96026,-.13239,-8.34571,.94338,-.13239,-8.37098,.93745,-.13239,-8.40078,.94338,-.13239,-8.43059,.96026,-.13239,-8.45586,.98553,-.13239,-8.47275,1.01534,-.13239,-8.47868,1.04515,-.13239,-8.47275,1.07042,-.13239,-8.45586,1.0873,-.13239,-8.43059,1.07495,-.16027,-8.40078,1.07042,-.16027,-8.37797,1.05749,-.16027,-8.35863,1.03815,-.16027,-8.34571,1.01534,-.16027,-8.34117,.99252,-.16027,-8.34571,.97318,-.16027,-8.35863,.96026,-.16027,-8.37797,.95572,-.16027,-8.40078,.96026,-.16027,-8.4236,.97318,-.16027,-8.44294,.99252,-.16027,-8.45586,1.01534,-.16027,-8.4604,1.03815,-.16027,-8.45586,1.05749,-.16027,-8.44294,1.07042,-.16027,-8.4236,1.04827,-.17876,-8.40078,1.04577,-.17876,-8.38818,1.03863,-.17876,-8.3775,1.02794,-.17876,-8.37036};
			return value;
		}
		private double[] getCoordinate_7_43_point_2()
		{
			double[] value = {1.01534,-.17876,-8.36785,1.00273,-.17876,-8.37036,.99205,-.17876,-8.3775,.98491,-.17876,-8.38818,.9824,-.17876,-8.40078,.98491,-.17876,-8.41339,.99205,-.17876,-8.42407,1.00273,-.17876,-8.43121,1.01534,-.17876,-8.43372,1.02794,-.17876,-8.43121,1.03863,-.17876,-8.42407,1.04577,-.17876,-8.41339,1.01534,-.01258,-8.40078,1.01534,-.18642,-8.40078,1.04832,-.02037,-8.39422,1.04832,-.02037,-8.40735,1.06217,-.02805,-8.40078,1.03447,-.01578,-8.40078,1.0433,-.02037,-8.3821,1.0586,-.02805,-8.38286,1.03301,-.01578,-8.39346,1.03402,-.02037,-8.37282,1.04845,-.02805,-8.36767,1.02887,-.01578,-8.38726,1.0219,-.02037,-8.3678,1.03326,-.02805,-8.35752,1.02266,-.01578,-8.38311,1.00878,-.02037,-8.3678,1.01534,-.02805,-8.35395,1.01534,-.01578,-8.38165,.99665,-.02037,-8.37282,.99742,-.02805,-8.35752,1.00802,-.01578,-8.38311,.98738,-.02037,-8.3821,.98222,-.02805,-8.36767,1.00181,-.01578,-8.38726,.98236,-.02037,-8.39422,.97207,-.02805,-8.38286,.99766,-.01578,-8.39346,.98236,-.02037,-8.40735,.96851,-.02805,-8.40078,.99621,-.01578,-8.40078,.98738,-.02037,-8.41947,.97207,-.02805,-8.41871,.99766,-.01578,-8.40811,.99665,-.02037,-8.42875,.98222,-.02805,-8.4339,1.00181,-.01578,-8.41431,1.00878,-.02037,-8.43377,.99742,-.02805,-8.44405,1.00802,-.01578,-8.41846,1.0219,-.02037,-8.43377,1.01534,-.02805,-8.44762,1.01534,-.01578,-8.41992,1.03402,-.02037,-8.42875,1.03326,-.02805,-8.44405,1.02266,-.01578,-8.41846,1.0433,-.02037,-8.41947,1.04845,-.02805,-8.4339,1.02887,-.01578,-8.41431,1.0586,-.02805,-8.41871,1.03301,-.01578,-8.40811,1.0738,-.03873,-8.38916,1.0738,-.03873,-8.41241,1.08543,-.05176,-8.40078,1.0649,-.03873,-8.36767,1.08009,-.05176,-8.37396,1.04845,-.03873,-8.35123,1.0649,-.05176,-8.35123,1.02697,-.03873,-8.34233,1.04216,-.05176,-8.33603,1.00371,-.03873,-8.34233,1.01534,-.05176,-8.3307,.98222,-.03873,-8.35123,.98852,-.05176,-8.33603,.96578,-.03873,-8.36767,.96578,-.05176,-8.35123,.95688,-.03873,-8.38916,.95059,-.05176,-8.37396,.95688,-.03873,-8.41241,.94525,-.05176,-8.40078,.96578,-.03873,-8.4339,.95059,-.05176,-8.42761,.98222,-.03873,-8.45034,.96578,-.05176,-8.45034,1.00371,-.03873,-8.45924,.98852,-.05176,-8.46554,1.02697,-.03873,-8.45924,1.01534,-.05176,-8.47087,1.04845,-.03873,-8.45034,1.04216,-.05176,-8.46554,1.0649,-.03873,-8.4339,1.0649,-.05176,-8.45034,1.08009,-.05176,-8.42761,1.09172,-.06661,-8.38559,1.09172,-.06661,-8.41598,1.09801,-.08273,-8.40078,1.08009,-.06661,-8.35752,1.09172,-.08273,-8.36915,1.0586,-.06661,-8.33603};
			return value;
		}
		private double[] getCoordinate_7_43_point_3()
		{
			double[] value = {1.0738,-.08273,-8.34233,1.03053,-.06661,-8.3244,1.04698,-.08273,-8.3244,1.00014,-.06661,-8.3244,1.01534,-.08273,-8.31811,.97207,-.06661,-8.33603,.9837,-.08273,-8.3244,.95059,-.06661,-8.35752,.95688,-.08273,-8.34233,.93896,-.06661,-8.38559,.93896,-.08273,-8.36915,.93896,-.06661,-8.41598,.93266,-.08273,-8.40078,.95059,-.06661,-8.44405,.93896,-.08273,-8.43242,.97207,-.06661,-8.46554,.95688,-.08273,-8.45924,1.00014,-.06661,-8.47717,.9837,-.08273,-8.47717,1.03053,-.06661,-8.47717,1.01534,-.08273,-8.48346,1.0586,-.06661,-8.46554,1.04698,-.08273,-8.47717,1.08009,-.06661,-8.44405,1.0738,-.08273,-8.45924,1.09172,-.08273,-8.43242,1.09801,-.0995,-8.38434,1.09801,-.0995,-8.41723,1.09801,-.11626,-8.40078,1.08543,-.0995,-8.35395,1.09172,-.11626,-8.36915,1.06217,-.0995,-8.3307,1.0738,-.11626,-8.34233,1.03178,-.0995,-8.31811,1.04698,-.11626,-8.3244,.99889,-.0995,-8.31811,1.01534,-.11626,-8.31811,.96851,-.0995,-8.3307,.9837,-.11626,-8.3244,.94525,-.0995,-8.35395,.95688,-.11626,-8.34233,.93266,-.0995,-8.38434,.93896,-.11626,-8.36915,.93266,-.0995,-8.41723,.93266,-.11626,-8.40078,.94525,-.0995,-8.44762,.93896,-.11626,-8.43242,.96851,-.0995,-8.47087,.95688,-.11626,-8.45924,.99889,-.0995,-8.48346,.9837,-.11626,-8.47717,1.03178,-.0995,-8.48346,1.01534,-.11626,-8.48346,1.06217,-.0995,-8.47087,1.04698,-.11626,-8.47717,1.08543,-.0995,-8.44762,1.0738,-.11626,-8.45924,1.09172,-.11626,-8.43242,1.09172,-.13239,-8.38559,1.09172,-.13239,-8.41598,1.08543,-.14724,-8.40078,1.08009,-.13239,-8.35752,1.08009,-.14724,-8.37396,1.0586,-.13239,-8.33603,1.0649,-.14724,-8.35123,1.03053,-.13239,-8.3244,1.04216,-.14724,-8.33603,1.00014,-.13239,-8.3244,1.01534,-.14724,-8.3307,.97207,-.13239,-8.33603,.98852,-.14724,-8.33603,.95059,-.13239,-8.35752,.96578,-.14724,-8.35123,.93896,-.13239,-8.38559,.95059,-.14724,-8.37396,.93896,-.13239,-8.41598,.94525,-.14724,-8.40078,.95059,-.13239,-8.44405,.95059,-.14724,-8.42761,.97207,-.13239,-8.46554,.96578,-.14724,-8.45034,1.00014,-.13239,-8.47717,.98852,-.14724,-8.46554,1.03053,-.13239,-8.47717,1.01534,-.14724,-8.47087,1.0586,-.13239,-8.46554,1.04216,-.14724,-8.46554,1.08009,-.13239,-8.44405,1.0649,-.14724,-8.45034,1.08009,-.14724,-8.42761,1.0738,-.16027,-8.38916,1.0738,-.16027,-8.41241,1.06217,-.17095,-8.40078,1.0649,-.16027,-8.36767,1.0586,-.17095,-8.38286,1.04845,-.16027,-8.35123,1.04845,-.17095,-8.36767,1.02697,-.16027,-8.34233,1.03326,-.17095,-8.35752,1.00371,-.16027,-8.34233};
			return value;
		}
		private double[] getCoordinate_7_43_point_4()
		{
			double[] value = {1.01534,-.17095,-8.35395,.98222,-.16027,-8.35123,.99742,-.17095,-8.35752,.96578,-.16027,-8.36767,.98222,-.17095,-8.36767,.95688,-.16027,-8.38916,.97207,-.17095,-8.38286,.95688,-.16027,-8.41241,.96851,-.17095,-8.40078,.96578,-.16027,-8.4339,.97207,-.17095,-8.41871,.98222,-.16027,-8.45034,.98222,-.17095,-8.4339,1.00371,-.16027,-8.45924,.99742,-.17095,-8.44405,1.02697,-.16027,-8.45924,1.01534,-.17095,-8.44762,1.04845,-.16027,-8.45034,1.03326,-.17095,-8.44405,1.0649,-.16027,-8.4339,1.04845,-.17095,-8.4339,1.0586,-.17095,-8.41871,1.04832,-.17862,-8.39422,1.04832,-.17862,-8.40735,1.03447,-.18322,-8.40078,1.0433,-.17862,-8.3821,1.03301,-.18322,-8.39346,1.03402,-.17862,-8.37282,1.02887,-.18322,-8.38726,1.0219,-.17862,-8.3678,1.02266,-.18322,-8.38311,1.00878,-.17862,-8.3678,1.01534,-.18322,-8.38165,.99665,-.17862,-8.37282,1.00802,-.18322,-8.38311,.98738,-.17862,-8.3821,1.00181,-.18322,-8.38726,.98236,-.17862,-8.39422,.99766,-.18322,-8.39346,.98236,-.17862,-8.40735,.99621,-.18322,-8.40078,.98738,-.17862,-8.41947,.99766,-.18322,-8.40811,.99665,-.17862,-8.42875,1.00181,-.18322,-8.41431,1.00878,-.17862,-8.43377,1.00802,-.18322,-8.41846,1.0219,-.17862,-8.43377,1.01534,-.18322,-8.41992,1.03402,-.17862,-8.42875,1.02266,-.18322,-8.41846,1.0433,-.17862,-8.41947,1.02887,-.18322,-8.41431,1.03301,-.18322,-8.40811,1.03684,-.01633,-8.39651,1.03357,-.01633,-8.38861,1.02752,-.01633,-8.38256,1.01961,-.01633,-8.37928,1.01106,-.01633,-8.37928,1.00316,-.01633,-8.38256,.99711,-.01633,-8.38861,.99384,-.01633,-8.39651,.99384,-.01633,-8.40506,.99711,-.01633,-8.41296,1.00316,-.01633,-8.41901,1.01106,-.01633,-8.42229,1.01961,-.01633,-8.42229,1.02752,-.01633,-8.41901,1.03357,-.01633,-8.41296,1.03684,-.01633,-8.40506,1.03684,-.18266,-8.39651,1.03357,-.18266,-8.38861,1.02752,-.18266,-8.38256,1.01961,-.18266,-8.37928,1.01106,-.18266,-8.37928,1.00316,-.18266,-8.38256,.99711,-.18266,-8.38861,.99384,-.18266,-8.39651,.99384,-.18266,-8.40506,.99711,-.18266,-8.41296,1.00316,-.18266,-8.41901,1.01106,-.18266,-8.42229,1.01961,-.18266,-8.42229,1.02752,-.18266,-8.41901,1.03357,-.18266,-8.41296,1.03684,-.18266,-8.40506,1.06126,-.02805,-8.39165,1.05427,-.02805,-8.37477,1.04135,-.02805,-8.36185,1.02447,-.02805,-8.35486,1.0062,-.02805,-8.35486,.98933,-.02805,-8.36185,.97641,-.02805,-8.37477,.96942,-.02805,-8.39165,.96942,-.02805,-8.40992,.97641,-.02805,-8.4268,.98933,-.02805,-8.43972,1.0062,-.02805,-8.44671,1.02447,-.02805,-8.44671,1.04135,-.02805,-8.43972};
			return value;
		}
		private double[] getCoordinate_7_43_point_5()
		{
			double[] value = {1.05427,-.02805,-8.4268,1.06126,-.02805,-8.40992,1.08407,-.05176,-8.38711,1.0736,-.05176,-8.36185,1.05427,-.05176,-8.34252,1.02901,-.05176,-8.33206,1.00167,-.05176,-8.33206,.97641,-.05176,-8.34252,.95707,-.05176,-8.36185,.94661,-.05176,-8.38711,.94661,-.05176,-8.41446,.95707,-.05176,-8.43972,.97641,-.05176,-8.45905,1.00167,-.05176,-8.46951,1.02901,-.05176,-8.46951,1.05427,-.05176,-8.45905,1.0736,-.05176,-8.43972,1.08407,-.05176,-8.41446,1.09641,-.08273,-8.38466,1.08407,-.08273,-8.35486,1.06126,-.08273,-8.33206,1.03146,-.08273,-8.31971,.99921,-.08273,-8.31971,.96942,-.08273,-8.33206,.94661,-.08273,-8.35486,.93427,-.08273,-8.38466,.93427,-.08273,-8.41691,.94661,-.08273,-8.44671,.96942,-.08273,-8.46951,.99921,-.08273,-8.48185,1.03146,-.08273,-8.48185,1.06126,-.08273,-8.46951,1.08407,-.08273,-8.44671,1.09641,-.08273,-8.41691,1.09641,-.11626,-8.38466,1.08407,-.11626,-8.35486,1.06126,-.11626,-8.33206,1.03146,-.11626,-8.31971,.99921,-.11626,-8.31971,.96942,-.11626,-8.33206,.94661,-.11626,-8.35486,.93427,-.11626,-8.38466,.93427,-.11626,-8.41691,.94661,-.11626,-8.44671,.96942,-.11626,-8.46951,.99921,-.11626,-8.48185,1.03146,-.11626,-8.48185,1.06126,-.11626,-8.46951,1.08407,-.11626,-8.44671,1.09641,-.11626,-8.41691,1.08407,-.14724,-8.38711,1.0736,-.14724,-8.36185,1.05427,-.14724,-8.34252,1.02901,-.14724,-8.33206,1.00167,-.14724,-8.33206,.97641,-.14724,-8.34252,.95707,-.14724,-8.36185,.94661,-.14724,-8.38711,.94661,-.14724,-8.41446,.95707,-.14724,-8.43972,.97641,-.14724,-8.45905,1.00167,-.14724,-8.46951,1.02901,-.14724,-8.46951,1.05427,-.14724,-8.45905,1.0736,-.14724,-8.43972,1.08407,-.14724,-8.41446,1.06126,-.17095,-8.39165,1.05427,-.17095,-8.37477,1.04135,-.17095,-8.36185,1.02447,-.17095,-8.35486,1.0062,-.17095,-8.35486,.98933,-.17095,-8.36185,.97641,-.17095,-8.37477,.96942,-.17095,-8.39165,.96942,-.17095,-8.40992,.97641,-.17095,-8.4268,.98933,-.17095,-8.43972,1.0062,-.17095,-8.44671,1.02447,-.17095,-8.44671,1.04135,-.17095,-8.43972,1.05427,-.17095,-8.4268,1.06126,-.17095,-8.40992};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_6_51_coordIndex_1()
		{
			int[] value = {0,78,461,-1,0,461,344,-1,0,344,804,-1,0,800,776,-1,0,776,848,-1,0,848,78,-1,0,804,800,-1,1,90,851,-1,1,851,778,-1,1,778,807,-1,1,351,446,-1,1,446,90,-1,1,807,819,-1,1,819,351,-1,2,3,99,-1,2,99,96,-1,2,96,93,-1,2,93,1459,-1,2,1459,1460,-1,2,363,367,-1,2,367,3,-1,2,1460,1461,-1,2,1461,1478,-1,2,1478,1481,-1,2,1481,363,-1,3,4,102,-1,3,102,99,-1,3,367,371,-1,3,371,4,-1,4,55,102,-1,4,371,553,-1,4,553,55,-1,5,6,366,-1,5,366,572,-1,5,18,283,-1,5,283,191,-1,5,191,194,-1,5,194,6,-1,5,572,567,-1,5,567,18,-1,6,7,370,-1,6,370,366,-1,6,194,197,-1,6,197,7,-1,7,8,373,-1,7,373,370,-1,7,197,200,-1,7,200,8,-1,8,58,556,-1,8,556,373,-1,8,200,257,-1,8,257,58,-1,9,10,274,-1,9,274,271,-1,9,20,575,-1,9,575,564,-1,9,271,203,-1,9,203,20,-1,9,564,352,-1,9,352,10,-1,10,11,277,-1,10,277,274,-1,10,352,356,-1,10,356,11,-1,11,12,280,-1,11,280,277,-1,11,356,360,-1,11,360,12,-1,12,61,337,-1,12,337,280,-1,12,360,506,-1,12,506,61,-1,13,14,359,-1,13,359,355,-1,13,94,97,-1,13,97,14,-1,13,355,1476,-1,13,1476,1477,-1,13,1477,1462,-1,13,1462,1463,-1,13,1463,1464,-1,13,1464,91,-1,13,91,94,-1,14,15,362,-1,14,362,359,-1,14,97,100,-1,14,100,15,-1,15,64,509,-1,15,509,362,-1,15,100,64,-1,16,25,410,-1,16,410,381,-1,16,106,922,-1,16,922,25,-1,16,381,1488,-1,16,1488,1489,-1,16,1489,1466,-1,16,1466,1467,-1,16,1467,1468,-1,16,1468,103,-1,16,103,106,-1,17,18,567,-1,17,567,378,-1,17,29,146,-1,17,146,286,-1,17,286,283,-1,17,283,18,-1,17,378,413,-1,17,413,29,-1,19,20,203,-1,19,203,206,-1,19,33,394,-1,19,394,377,-1,19,206,154,-1,19,154,33,-1,19,377,575,-1,19,575,20,-1,21,37,920,-1,21,920,108,-1,21,108,105,-1,21,105,1471,-1,21,1471,1472,-1,21,374,397,-1,21,397,37,-1,21,1472,1473,-1,21,1473,1482,-1,21,1482,1485,-1,21,1485,374,-1,22,23,916,-1,22,916,913,-1,22,398,402,-1,22,402,23,-1,22,913,908,-1,22,908,1660,-1,22,1660,1661,-1,22,1661,1662,-1,22,1662,1663,-1,22,1663,1666,-1,22,1666,26,-1,22,26,401,-1,22,401,400,-1,22,400,399,-1,22,399,398,-1,23,24,919,-1,23,919,916,-1,23,402,406,-1,23,406,24,-1,24,406,639,-1,24,639,576,-1,24,576,932,-1,24,932,919,-1,25,579,636,-1,25,636,410,-1,25,922,923,-1,25,923,579,-1,26,27,405,-1,26,405,401,-1,26,143,113,-1,26,113,752,-1,26,752,27,-1,26,1666,1665,-1,26,1665,156,-1,26,156,143,-1,129,684,28,-1,129,28,409,-1,129,409,27,-1,129,27,111,-1,129,111,670,-1,129,670,109,-1,129,109,666,-1,27,409,405,-1,111,27,652,-1,27,752,736,-1,27,736,652,-1,28,580,651,-1,28,651,409,-1,28,654,114,-1,28,114,604,-1,28,604,580,-1,28,684,726,-1,28,726,654,-1,29,413,648,-1,29,648,583,-1,29,583,607,-1,29,607,146,-1,30,31,758,-1,30,758,116,-1,30,116,151,-1,30,151,161,-1,30,161,1668,-1,30,1668,1669,-1,30,382,386,-1,30,386,31,-1,30,1669,1670,-1,30,1670,1671,-1,30,1671,1674,-1,30,1674,34,-1,30,34,385,-1,30,385,384,-1,30,384,383,-1,30,383,382,-1,130,667,110,-1,130,110,671,-1,130,671,112,-1,130,112,31,-1,130,31,390,-1,130,390,32,-1,130,32,685,-1,390,31,386,-1,31,112,653,-1,31,653,727,-1,31,727,758,-1,32,390,623,-1,32,623,584,-1,32,584,619,-1,32,619,118,-1,32,118,674,-1,32,674,746,-1,32,746,685,-1,33,154,616,-1,33,616,587,-1,33,587,620,-1,33,620,394,-1,34,35,389,-1,34,389,385,-1,34,911,914,-1,34,914,35,-1,34,1674,1673,-1,34,1673,910,-1,34,910,911,-1,35,36,393,-1,35,393,389,-1,35,914,917,-1,35,917,36,-1,36,588,635,-1,36,635,393,-1,36,917,934,-1,36,934,588,-1,37,397,632,-1,37,632,591,-1,37,591,925,-1,37,925,920,-1,38,57,560,-1,38,560,445,-1,38,67,892,-1,38,892,844,-1,38,445,541,-1,38,541,67,-1,38,844,896,-1,38,896,57,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_2()
		{
			int[] value = {39,69,549,-1,39,549,441,-1,39,70,880,-1,39,880,840,-1,39,441,529,-1,39,529,70,-1,39,840,884,-1,39,884,69,-1,40,72,537,-1,40,537,437,-1,40,73,868,-1,40,868,836,-1,40,437,517,-1,40,517,73,-1,40,836,872,-1,40,872,72,-1,41,75,525,-1,41,525,433,-1,41,76,856,-1,41,856,832,-1,41,433,469,-1,41,469,76,-1,41,832,860,-1,41,860,75,-1,42,66,899,-1,42,899,847,-1,42,79,497,-1,42,497,426,-1,42,426,516,-1,42,516,66,-1,42,847,895,-1,42,895,79,-1,43,81,887,-1,43,887,843,-1,43,82,485,-1,43,485,422,-1,43,422,505,-1,43,505,81,-1,43,843,883,-1,43,883,82,-1,44,84,875,-1,44,875,839,-1,44,85,473,-1,44,473,418,-1,44,418,493,-1,44,493,84,-1,44,839,871,-1,44,871,85,-1,45,87,863,-1,45,863,835,-1,45,88,454,-1,45,454,414,-1,45,414,481,-1,45,481,87,-1,45,835,859,-1,45,859,88,-1,46,144,145,-1,46,145,115,-1,46,115,753,-1,46,677,728,-1,46,728,756,-1,46,753,747,-1,46,747,677,-1,46,756,113,-1,46,113,143,-1,46,143,144,-1,47,150,151,-1,47,151,116,-1,47,116,754,-1,47,678,725,-1,47,725,759,-1,47,754,751,-1,47,751,678,-1,47,759,125,-1,47,125,149,-1,47,149,150,-1,48,600,604,-1,48,604,114,-1,48,114,672,-1,48,655,117,-1,48,117,596,-1,48,596,600,-1,48,657,724,-1,48,724,655,-1,48,672,750,-1,48,750,657,-1,49,615,611,-1,49,611,126,-1,49,126,681,-1,49,656,118,-1,49,118,619,-1,49,619,615,-1,49,658,722,-1,49,722,656,-1,49,681,737,-1,49,737,658,-1,50,659,731,-1,50,731,680,-1,50,675,734,-1,50,734,686,-1,50,680,740,-1,50,740,675,-1,50,686,744,-1,50,744,659,-1,51,660,735,-1,51,735,687,-1,51,661,741,-1,51,741,660,-1,51,676,721,-1,51,721,661,-1,51,687,738,-1,51,738,676,-1,52,760,775,-1,52,775,762,-1,52,761,772,-1,52,772,760,-1,52,762,774,-1,52,774,763,-1,52,763,773,-1,52,773,761,-1,141,149,125,-1,141,125,755,-1,141,755,53,-1,53,683,723,-1,53,723,757,-1,53,755,749,-1,53,749,683,-1,145,141,53,-1,145,53,757,-1,145,757,115,-1,54,595,596,-1,54,596,117,-1,54,117,673,-1,54,663,126,-1,54,126,611,-1,54,611,595,-1,54,673,748,-1,54,748,682,-1,54,682,729,-1,54,729,663,-1,55,56,904,-1,55,553,557,-1,55,557,56,-1,55,904,102,-1,56,57,896,-1,56,896,900,-1,56,557,560,-1,56,560,57,-1,56,900,904,-1,58,59,1275,-1,58,1275,1274,-1,58,1274,1188,-1,58,1188,556,-1,58,257,260,-1,58,260,59,-1,59,60,1405,-1,59,1405,1275,-1,59,260,263,-1,59,263,60,-1,60,263,298,-1,60,298,1195,-1,60,1195,1196,-1,60,1196,1189,-1,1189,1196,1405,-1,1189,1405,60,-1,61,62,340,-1,61,340,337,-1,61,506,1268,-1,61,1268,1269,-1,61,1269,62,-1,62,63,343,-1,62,343,340,-1,62,1269,1323,-1,62,1323,63,-1,63,1203,1204,-1,63,1204,218,-1,63,218,343,-1,63,1323,1203,-1,64,65,512,-1,64,512,509,-1,64,100,907,-1,64,907,65,-1,65,66,516,-1,65,516,512,-1,65,903,899,-1,65,899,66,-1,65,907,903,-1,67,68,888,-1,67,888,892,-1,67,541,545,-1,67,545,68,-1,68,69,884,-1,68,884,888,-1,68,545,549,-1,68,549,69,-1,70,71,876,-1,70,876,880,-1,70,529,533,-1,70,533,71,-1,71,72,872,-1,71,872,876,-1,71,533,537,-1,71,537,72,-1,73,74,864,-1,73,864,868,-1,73,517,521,-1,73,521,74,-1,74,75,860,-1,74,860,864,-1,74,521,525,-1,74,525,75,-1,76,77,852,-1,76,852,856,-1,76,469,465,-1,76,465,77,-1,77,78,848,-1,77,848,852,-1,77,465,461,-1,77,461,78,-1,79,80,501,-1,79,501,497,-1,79,895,891,-1,79,891,80,-1,80,81,505,-1,80,505,501,-1,80,891,887,-1,80,887,81,-1,82,83,489,-1,82,489,485,-1,82,883,879,-1,82,879,83,-1,83,84,493,-1,83,493,489,-1,83,879,875,-1,83,875,84,-1,85,86,477,-1,85,477,473,-1,85,871,867,-1,85,867,86,-1,86,87,481,-1,86,481,477,-1,86,867,863,-1,86,863,87,-1,88,89,450,-1,88,450,454,-1,88,859,855,-1,88,855,89,-1,89,90,446,-1,89,446,450,-1,89,855,851,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_3()
		{
			int[] value = {89,851,90,-1,91,92,95,-1,91,95,94,-1,91,105,104,-1,91,104,92,-1,91,1464,1465,-1,91,1465,1470,-1,91,1470,1471,-1,91,1471,105,-1,92,93,96,-1,92,96,95,-1,92,104,103,-1,92,103,93,-1,93,103,1468,-1,93,1468,1469,-1,93,1469,1458,-1,93,1458,1459,-1,94,95,98,-1,94,98,97,-1,95,96,99,-1,95,99,98,-1,97,98,101,-1,97,101,100,-1,98,99,102,-1,98,102,101,-1,100,101,906,-1,100,906,907,-1,101,102,904,-1,101,904,905,-1,101,905,906,-1,103,104,107,-1,103,107,106,-1,104,105,108,-1,104,108,107,-1,106,107,921,-1,106,921,922,-1,107,108,920,-1,107,920,921,-1,109,668,742,-1,109,742,666,-1,109,670,720,-1,109,720,668,-1,110,667,730,-1,110,730,669,-1,110,669,743,-1,110,743,671,-1,111,652,736,-1,111,736,704,-1,111,704,720,-1,111,720,670,-1,112,671,743,-1,112,743,711,-1,112,711,727,-1,112,727,653,-1,113,696,736,-1,113,736,752,-1,113,756,728,-1,113,728,696,-1,114,654,726,-1,114,726,694,-1,114,694,750,-1,114,750,672,-1,115,691,747,-1,115,747,753,-1,115,757,723,-1,115,723,691,-1,116,695,751,-1,116,751,754,-1,116,758,727,-1,116,727,695,-1,117,655,724,-1,117,724,692,-1,117,692,748,-1,117,748,673,-1,118,656,722,-1,118,722,690,-1,118,690,746,-1,118,746,674,-1,119,657,750,-1,119,750,718,-1,119,675,740,-1,119,740,708,-1,119,708,724,-1,119,724,657,-1,119,718,734,-1,119,734,675,-1,120,658,737,-1,120,737,705,-1,120,676,738,-1,120,738,706,-1,120,705,721,-1,120,721,676,-1,120,706,722,-1,120,722,658,-1,121,659,744,-1,121,744,712,-1,121,677,747,-1,121,747,715,-1,121,712,728,-1,121,728,677,-1,121,715,731,-1,121,731,659,-1,122,660,741,-1,122,741,709,-1,122,678,751,-1,122,751,719,-1,122,709,725,-1,122,725,678,-1,122,719,735,-1,122,735,660,-1,123,661,721,-1,123,721,689,-1,123,679,771,-1,123,771,733,-1,123,733,701,-1,123,689,745,-1,123,745,770,-1,123,770,679,-1,123,701,741,-1,123,741,661,-1,124,662,768,-1,124,768,732,-1,124,732,700,-1,124,680,731,-1,124,731,699,-1,124,699,739,-1,124,739,769,-1,124,769,662,-1,124,700,740,-1,124,740,680,-1,125,693,749,-1,125,749,755,-1,125,759,725,-1,125,725,693,-1,126,663,729,-1,126,729,697,-1,126,697,737,-1,126,737,681,-1,127,664,766,-1,127,766,745,-1,127,745,713,-1,127,682,748,-1,127,748,716,-1,127,713,729,-1,127,729,682,-1,127,716,732,-1,127,732,767,-1,127,767,664,-1,128,665,765,-1,128,765,739,-1,128,739,707,-1,128,683,749,-1,128,749,717,-1,128,707,723,-1,128,723,683,-1,128,717,733,-1,128,733,764,-1,128,764,665,-1,129,666,742,-1,129,742,710,-1,129,710,726,-1,129,726,684,-1,130,685,746,-1,130,746,714,-1,130,714,730,-1,130,730,667,-1,131,668,720,-1,131,720,688,-1,131,686,734,-1,131,734,702,-1,131,688,744,-1,131,744,686,-1,131,702,742,-1,131,742,668,-1,132,669,730,-1,132,730,698,-1,132,687,735,-1,132,735,703,-1,132,698,738,-1,132,738,687,-1,132,703,743,-1,132,743,669,-1,133,688,720,-1,133,720,704,-1,133,696,728,-1,133,728,712,-1,133,704,736,-1,133,736,696,-1,133,712,744,-1,133,744,688,-1,134,689,721,-1,134,721,705,-1,134,697,729,-1,134,729,713,-1,134,705,737,-1,134,737,697,-1,134,713,745,-1,134,745,689,-1,135,690,722,-1,135,722,706,-1,135,698,730,-1,135,730,714,-1,135,706,738,-1,135,738,698,-1,135,714,746,-1,135,746,690,-1,136,691,723,-1,136,723,707,-1,136,699,731,-1,136,731,715,-1,136,707,739,-1,136,739,699,-1,136,715,747,-1,136,747,691,-1,137,692,724,-1,137,724,708,-1,137,700,732,-1,137,732,716,-1,137,708,740,-1,137,740,700,-1,137,716,748,-1,137,748,692,-1,138,693,725,-1,138,725,709,-1,138,701,733,-1,138,733,717,-1,138,709,741,-1,138,741,701,-1,138,717,749,-1,138,749,693,-1,139,694,726,-1,139,726,710,-1,139,702,734,-1,139,734,718,-1,139,710,742,-1,139,742,702,-1,139,718,750,-1,139,750,694,-1,140,695,727,-1,140,727,711,-1,140,703,735,-1,140,735,719,-1,140,711,743,-1,140,743,703,-1,140,719,751,-1,140,751,695,-1,141,145,158,-1,141,158,155,-1,141,155,159,-1,141,159,149,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_4()
		{
			int[] value = {142,148,599,-1,142,599,592,-1,142,152,208,-1,142,208,168,-1,142,168,284,-1,142,284,148,-1,142,592,608,-1,142,608,152,-1,143,156,157,-1,143,157,144,-1,144,157,158,-1,144,158,145,-1,146,147,285,-1,146,285,286,-1,146,607,603,-1,146,603,147,-1,147,148,284,-1,147,284,285,-1,147,603,599,-1,147,599,148,-1,149,159,160,-1,149,160,150,-1,150,160,161,-1,150,161,151,-1,152,153,207,-1,152,207,208,-1,152,608,612,-1,152,612,153,-1,153,154,206,-1,153,206,207,-1,153,612,616,-1,153,616,154,-1,155,158,157,-1,155,157,1837,-1,155,1837,1839,-1,155,1839,1841,-1,155,1841,160,-1,155,160,159,-1,156,1665,1664,-1,156,1664,1675,-1,156,1675,1837,-1,156,1837,157,-1,160,1841,1681,-1,160,1681,1667,-1,160,1667,1668,-1,160,1668,161,-1,162,173,223,-1,162,223,266,-1,162,190,299,-1,162,299,173,-1,162,266,822,-1,162,797,829,-1,162,798,830,-1,162,799,831,-1,162,822,797,-1,162,829,798,-1,162,830,799,-1,162,831,190,-1,163,164,196,-1,163,196,193,-1,163,167,205,-1,163,205,269,-1,163,193,281,-1,163,281,167,-1,163,269,272,-1,163,272,164,-1,164,165,199,-1,164,199,196,-1,164,272,275,-1,164,275,165,-1,165,166,202,-1,165,202,199,-1,165,275,278,-1,165,278,166,-1,166,185,259,-1,166,259,202,-1,166,278,335,-1,166,335,185,-1,167,168,208,-1,167,208,205,-1,167,281,284,-1,167,284,168,-1,169,175,305,-1,169,305,287,-1,169,178,314,-1,169,314,211,-1,169,211,229,-1,169,229,175,-1,169,287,238,-1,169,238,178,-1,170,176,232,-1,170,232,290,-1,170,181,323,-1,170,323,214,-1,170,214,308,-1,170,308,176,-1,170,290,247,-1,170,247,181,-1,171,179,241,-1,171,241,293,-1,171,184,332,-1,171,332,217,-1,171,217,317,-1,171,317,179,-1,171,293,256,-1,171,256,184,-1,172,182,250,-1,172,250,296,-1,172,187,341,-1,172,341,220,-1,172,220,326,-1,172,326,182,-1,172,296,265,-1,172,265,187,-1,173,174,226,-1,173,226,223,-1,173,299,302,-1,173,302,174,-1,174,175,229,-1,174,229,226,-1,174,302,305,-1,174,305,175,-1,176,177,235,-1,176,235,232,-1,176,308,311,-1,176,311,177,-1,177,178,238,-1,177,238,235,-1,177,311,314,-1,177,314,178,-1,179,180,244,-1,179,244,241,-1,179,317,320,-1,179,320,180,-1,180,181,247,-1,180,247,244,-1,180,320,323,-1,180,323,181,-1,182,183,253,-1,182,253,250,-1,182,326,329,-1,182,329,183,-1,183,184,256,-1,183,256,253,-1,183,329,332,-1,183,332,184,-1,185,186,262,-1,185,262,259,-1,185,335,338,-1,185,338,186,-1,186,187,265,-1,186,265,262,-1,186,338,341,-1,186,341,187,-1,188,189,828,-1,188,828,825,-1,188,301,300,-1,188,300,189,-1,188,825,1140,-1,188,1140,938,-1,188,938,1005,-1,188,1005,301,-1,189,190,831,-1,189,831,828,-1,189,300,299,-1,189,299,190,-1,191,192,195,-1,191,195,194,-1,191,283,282,-1,191,282,192,-1,192,193,196,-1,192,196,195,-1,192,282,281,-1,192,281,193,-1,194,195,198,-1,194,198,197,-1,195,196,199,-1,195,199,198,-1,197,198,201,-1,197,201,200,-1,198,199,202,-1,198,202,201,-1,200,201,258,-1,200,258,257,-1,201,202,259,-1,201,259,258,-1,203,204,207,-1,203,207,206,-1,203,271,270,-1,203,270,204,-1,204,205,208,-1,204,208,207,-1,204,270,269,-1,204,269,205,-1,209,210,315,-1,209,315,316,-1,209,227,228,-1,209,228,210,-1,209,316,1253,-1,209,1253,1211,-1,209,1211,1255,-1,209,1255,959,-1,209,959,960,-1,209,960,961,-1,209,961,962,-1,209,962,227,-1,210,211,314,-1,210,314,315,-1,210,228,229,-1,210,229,211,-1,1209,1249,1175,-1,1209,1175,212,-1,1209,212,1173,-1,1175,1249,310,-1,324,325,1176,-1,324,1176,212,-1,324,212,1174,-1,324,1174,213,-1,213,1174,212,-1,213,212,1175,-1,213,1175,310,-1,213,310,309,-1,1176,325,1247,-1,1176,1247,1209,-1,1176,1209,1173,-1,1176,1173,212,-1,213,214,323,-1,213,323,324,-1,213,309,308,-1,213,308,214,-1,215,216,333,-1,215,333,334,-1,215,319,318,-1,215,318,216,-1,215,334,1241,-1,215,1241,1207,-1,215,1207,1243,-1,215,1243,319,-1,216,217,332,-1,216,332,333,-1,216,318,317,-1,216,317,217,-1,218,219,342,-1,218,342,343,-1,218,328,327,-1,218,327,219,-1,218,1204,1237,-1,218,1237,328,-1,219,220,341,-1,219,341,342,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_5()
		{
			int[] value = {219,327,326,-1,219,326,220,-1,221,222,225,-1,221,225,224,-1,221,224,958,-1,221,958,954,-1,221,268,267,-1,221,267,222,-1,221,954,1001,-1,221,1001,268,-1,222,223,226,-1,222,226,225,-1,222,267,266,-1,222,266,223,-1,224,225,228,-1,224,228,227,-1,224,227,962,-1,224,962,958,-1,225,226,229,-1,225,229,228,-1,230,231,234,-1,230,234,233,-1,230,233,1226,-1,230,1226,1224,-1,230,292,291,-1,230,291,231,-1,230,1224,1199,-1,230,1199,292,-1,231,232,235,-1,231,235,234,-1,231,291,290,-1,231,290,232,-1,233,234,237,-1,233,237,236,-1,233,236,1228,-1,233,1228,1226,-1,234,235,238,-1,234,238,237,-1,236,237,288,-1,236,288,289,-1,236,289,1201,-1,236,1201,1228,-1,237,238,287,-1,237,287,288,-1,239,240,243,-1,239,243,242,-1,239,242,1220,-1,239,1220,1218,-1,239,295,294,-1,239,294,240,-1,239,1218,1197,-1,239,1197,295,-1,240,241,244,-1,240,244,243,-1,240,294,293,-1,240,293,241,-1,242,243,246,-1,242,246,245,-1,242,245,1222,-1,242,1222,1220,-1,243,244,247,-1,243,247,246,-1,245,246,291,-1,245,291,292,-1,245,292,1199,-1,245,1199,1222,-1,246,247,290,-1,246,290,291,-1,248,249,252,-1,248,252,251,-1,248,251,1214,-1,248,1214,1212,-1,248,298,297,-1,248,297,249,-1,248,1212,1195,-1,248,1195,298,-1,249,250,253,-1,249,253,252,-1,249,297,296,-1,249,296,250,-1,251,252,255,-1,251,255,254,-1,251,254,1216,-1,251,1216,1214,-1,252,253,256,-1,252,256,255,-1,254,255,294,-1,254,294,295,-1,254,295,1197,-1,254,1197,1216,-1,255,256,293,-1,255,293,294,-1,257,258,261,-1,257,261,260,-1,258,259,262,-1,258,262,261,-1,260,261,264,-1,260,264,263,-1,261,262,265,-1,261,265,264,-1,263,264,297,-1,263,297,298,-1,264,265,296,-1,264,296,297,-1,266,267,821,-1,266,821,822,-1,267,268,820,-1,267,820,821,-1,268,1001,1125,-1,268,1125,820,-1,269,270,273,-1,269,273,272,-1,270,271,274,-1,270,274,273,-1,272,273,276,-1,272,276,275,-1,273,274,277,-1,273,277,276,-1,275,276,279,-1,275,279,278,-1,276,277,280,-1,276,280,279,-1,278,279,336,-1,278,336,335,-1,279,280,337,-1,279,337,336,-1,281,282,285,-1,281,285,284,-1,282,283,286,-1,282,286,285,-1,287,305,306,-1,287,306,288,-1,288,306,307,-1,288,307,289,-1,289,307,1013,-1,289,1013,1014,-1,289,1014,1015,-1,289,1015,1016,-1,289,1016,1230,-1,289,1230,1201,-1,299,300,303,-1,299,303,302,-1,300,301,304,-1,300,304,303,-1,301,1005,1009,-1,301,1009,304,-1,302,303,306,-1,302,306,305,-1,303,304,307,-1,303,307,306,-1,304,1009,1013,-1,304,1013,307,-1,308,309,312,-1,308,312,311,-1,309,310,313,-1,309,313,312,-1,310,1249,1251,-1,310,1251,313,-1,311,312,315,-1,311,315,314,-1,312,313,316,-1,312,316,315,-1,313,1251,1253,-1,313,1253,316,-1,317,318,321,-1,317,321,320,-1,318,319,322,-1,318,322,321,-1,319,1243,1245,-1,319,1245,322,-1,320,321,324,-1,320,324,323,-1,321,322,325,-1,321,325,324,-1,322,1245,1247,-1,322,1247,325,-1,326,327,330,-1,326,330,329,-1,327,328,331,-1,327,331,330,-1,328,1237,1239,-1,328,1239,331,-1,329,330,333,-1,329,333,332,-1,330,331,334,-1,330,334,333,-1,331,1239,1241,-1,331,1241,334,-1,335,336,339,-1,335,339,338,-1,336,337,340,-1,336,340,339,-1,338,339,342,-1,338,342,341,-1,339,340,343,-1,339,343,342,-1,344,345,803,-1,344,803,804,-1,344,461,460,-1,344,460,345,-1,345,346,802,-1,345,802,803,-1,345,460,459,-1,345,459,346,-1,346,347,801,-1,346,801,802,-1,346,459,458,-1,346,458,347,-1,347,458,965,-1,347,965,1144,-1,347,1144,1165,-1,347,1165,801,-1,348,349,813,-1,348,813,810,-1,348,449,448,-1,348,448,349,-1,348,810,1158,-1,348,1158,1143,-1,348,1143,1057,-1,348,1057,449,-1,349,350,816,-1,349,816,813,-1,349,448,447,-1,349,447,350,-1,350,351,819,-1,350,819,816,-1,350,447,446,-1,350,446,351,-1,352,353,357,-1,352,357,1425,-1,352,1425,1426,-1,352,1426,1170,-1,352,1170,1169,-1,352,1169,1168,-1,352,1168,356,-1,352,564,565,-1,352,565,353,-1,353,354,358,-1,353,358,1019,-1,353,1019,1018,-1,353,1018,1017,-1,353,1017,1331,-1,353,1331,1332,-1,353,1332,357,-1,353,565,566,-1,353,566,354,-1,354,355,359,-1,354,359,358,-1,354,566,1475,-1,354,1475,1476,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_6()
		{
			int[] value = {354,1476,355,-1,360,356,1020,-1,1020,356,1168,-1,1020,1168,1021,-1,1021,1168,1169,-1,1021,1169,1170,-1,357,1022,1424,-1,357,1424,1425,-1,357,1263,1262,-1,357,1262,1022,-1,357,1332,1263,-1,358,359,362,-1,358,362,361,-1,358,361,1026,-1,358,1026,1019,-1,360,1020,1066,-1,360,1066,506,-1,361,362,509,-1,361,509,508,-1,361,508,507,-1,361,507,1261,-1,361,1261,1260,-1,361,1260,1023,-1,361,1023,1024,-1,361,1024,1025,-1,361,1025,1026,-1,363,364,368,-1,363,368,367,-1,363,1481,1480,-1,363,1480,570,-1,363,570,364,-1,364,365,369,-1,364,369,1338,-1,364,1338,1337,-1,364,1337,1029,-1,364,1029,1028,-1,364,1028,1027,-1,364,1027,368,-1,364,570,571,-1,364,571,365,-1,365,366,370,-1,365,370,1187,-1,365,1187,1186,-1,365,1186,1185,-1,365,1185,1438,-1,365,1438,1437,-1,365,1437,369,-1,365,571,572,-1,365,572,366,-1,367,368,372,-1,367,372,371,-1,368,1027,1030,-1,368,1030,372,-1,369,1034,1266,-1,369,1266,1267,-1,369,1267,1338,-1,369,1437,1436,-1,369,1436,1034,-1,1438,1185,1339,-1,1339,1185,1186,-1,1339,1186,1035,-1,1035,1186,1187,-1,1035,1187,1036,-1,1036,1187,370,-1,1036,370,373,-1,371,372,554,-1,371,554,553,-1,372,1030,1031,-1,372,1031,1032,-1,372,1032,1033,-1,372,1033,1264,-1,372,1264,1265,-1,372,1265,555,-1,372,555,554,-1,373,556,1103,-1,373,1103,1036,-1,374,375,396,-1,374,396,397,-1,374,1485,1484,-1,374,1484,573,-1,374,573,375,-1,375,376,395,-1,375,395,396,-1,375,573,574,-1,375,574,376,-1,376,377,394,-1,376,394,395,-1,376,574,575,-1,376,575,377,-1,378,379,412,-1,378,412,413,-1,378,567,568,-1,378,568,379,-1,379,380,411,-1,379,411,412,-1,379,568,569,-1,379,569,380,-1,380,381,410,-1,380,410,411,-1,380,569,1487,-1,380,1487,1488,-1,380,1488,381,-1,382,383,387,-1,382,387,386,-1,383,384,388,-1,383,388,387,-1,384,385,389,-1,384,389,388,-1,386,387,391,-1,386,391,390,-1,387,388,392,-1,387,392,391,-1,388,389,393,-1,388,393,392,-1,390,391,627,-1,390,627,623,-1,391,392,631,-1,391,631,627,-1,392,393,635,-1,392,635,631,-1,394,620,624,-1,394,624,395,-1,395,624,628,-1,395,628,396,-1,396,628,632,-1,396,632,397,-1,398,399,403,-1,398,403,402,-1,399,400,404,-1,399,404,403,-1,400,401,405,-1,400,405,404,-1,402,403,407,-1,402,407,406,-1,403,404,408,-1,403,408,407,-1,404,405,409,-1,404,409,408,-1,406,407,643,-1,406,643,639,-1,407,408,647,-1,407,647,643,-1,408,409,651,-1,408,651,647,-1,410,636,640,-1,410,640,411,-1,411,640,644,-1,411,644,412,-1,412,644,648,-1,412,648,413,-1,414,415,480,-1,414,480,481,-1,414,454,455,-1,414,455,415,-1,415,416,479,-1,415,479,480,-1,415,455,456,-1,415,456,416,-1,416,417,478,-1,416,478,479,-1,416,456,457,-1,416,457,417,-1,417,457,1063,-1,417,1063,1037,-1,417,1037,980,-1,417,980,478,-1,418,419,492,-1,418,492,493,-1,418,473,472,-1,418,472,419,-1,419,420,491,-1,419,491,492,-1,419,472,471,-1,419,471,420,-1,420,421,490,-1,420,490,491,-1,420,471,470,-1,420,470,421,-1,421,470,974,-1,421,974,1040,-1,421,1040,989,-1,421,989,490,-1,422,423,504,-1,422,504,505,-1,422,485,484,-1,422,484,423,-1,423,424,503,-1,423,503,504,-1,423,484,483,-1,423,483,424,-1,424,425,502,-1,424,502,503,-1,424,483,482,-1,424,482,425,-1,425,482,983,-1,425,983,1043,-1,425,1043,998,-1,425,998,502,-1,426,427,515,-1,426,515,516,-1,426,497,496,-1,426,496,427,-1,427,428,514,-1,427,514,515,-1,427,496,495,-1,427,495,428,-1,428,495,494,-1,428,494,429,-1,428,429,1049,-1,428,1049,1048,-1,428,1048,1047,-1,428,1047,1046,-1,428,1046,1074,-1,428,1074,514,-1,429,494,992,-1,429,992,1050,-1,429,513,1071,-1,429,1071,1049,-1,429,1050,1327,-1,429,1327,1328,-1,429,1328,513,-1,430,431,527,-1,430,527,528,-1,430,466,467,-1,430,467,431,-1,430,528,1081,-1,430,1081,941,-1,430,941,971,-1,430,971,466,-1,431,432,526,-1,431,526,527,-1,431,467,468,-1,431,468,432,-1,432,433,525,-1,432,525,526,-1,432,468,469,-1,432,469,433,-1,434,435,539,-1,434,539,540,-1,434,520,519,-1,434,519,435,-1,434,540,1090,-1,434,1090,944,-1,434,944,1075,-1,434,1075,520,-1,435,436,538,-1,435,538,539,-1,435,519,518,-1,435,518,436,-1,436,437,537,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_7()
		{
			int[] value = {436,537,538,-1,436,518,517,-1,436,517,437,-1,438,439,551,-1,438,551,552,-1,438,532,531,-1,438,531,439,-1,438,552,1099,-1,438,1099,947,-1,438,947,1084,-1,438,1084,532,-1,439,440,550,-1,439,550,551,-1,439,531,530,-1,439,530,440,-1,440,441,549,-1,440,549,550,-1,440,530,529,-1,440,529,441,-1,442,544,543,-1,442,543,443,-1,442,443,1056,-1,442,1056,1055,-1,442,1055,1054,-1,442,1054,1053,-1,442,563,1400,-1,442,1400,1399,-1,442,1399,950,-1,442,950,1093,-1,442,1093,544,-1,442,1053,1110,-1,442,1110,563,-1,443,444,561,-1,443,561,562,-1,443,543,542,-1,443,542,444,-1,443,562,1107,-1,443,1107,1056,-1,444,445,560,-1,444,560,561,-1,444,542,541,-1,444,541,445,-1,446,447,451,-1,446,451,450,-1,447,448,452,-1,447,452,451,-1,448,449,453,-1,448,453,452,-1,449,1057,1060,-1,449,1060,453,-1,450,451,455,-1,450,455,454,-1,451,452,456,-1,451,456,455,-1,452,453,457,-1,452,457,456,-1,453,1060,1063,-1,453,1063,457,-1,458,459,463,-1,458,463,462,-1,458,462,968,-1,458,968,965,-1,459,460,464,-1,459,464,463,-1,460,461,465,-1,460,465,464,-1,462,463,467,-1,462,467,466,-1,462,466,971,-1,462,971,968,-1,463,464,468,-1,463,468,467,-1,464,465,469,-1,464,469,468,-1,470,471,475,-1,470,475,474,-1,470,474,977,-1,470,977,974,-1,471,472,476,-1,471,476,475,-1,472,473,477,-1,472,477,476,-1,474,475,479,-1,474,479,478,-1,474,478,980,-1,474,980,977,-1,475,476,480,-1,475,480,479,-1,476,477,481,-1,476,481,480,-1,482,483,487,-1,482,487,486,-1,482,486,986,-1,482,986,983,-1,483,484,488,-1,483,488,487,-1,484,485,489,-1,484,489,488,-1,486,487,491,-1,486,491,490,-1,486,490,989,-1,486,989,986,-1,487,488,492,-1,487,492,491,-1,488,489,493,-1,488,493,492,-1,494,495,499,-1,494,499,498,-1,494,498,995,-1,494,995,992,-1,495,496,500,-1,495,500,499,-1,496,497,501,-1,496,501,500,-1,498,499,503,-1,498,503,502,-1,498,502,998,-1,498,998,995,-1,499,500,504,-1,499,504,503,-1,500,501,505,-1,500,505,504,-1,506,1066,1432,-1,506,1432,1268,-1,507,508,511,-1,507,511,510,-1,507,510,1070,-1,507,1070,1361,-1,507,1361,1362,-1,507,1362,1261,-1,508,509,512,-1,508,512,511,-1,510,511,515,-1,510,515,514,-1,510,514,1074,-1,510,1074,1070,-1,511,512,516,-1,511,516,515,-1,513,1328,1453,-1,513,1453,1433,-1,513,1433,1071,-1,517,518,522,-1,517,522,521,-1,518,519,523,-1,518,523,522,-1,519,520,524,-1,519,524,523,-1,520,1075,1078,-1,520,1078,524,-1,521,522,526,-1,521,526,525,-1,522,523,527,-1,522,527,526,-1,523,524,528,-1,523,528,527,-1,524,1078,1081,-1,524,1081,528,-1,529,530,534,-1,529,534,533,-1,530,531,535,-1,530,535,534,-1,531,532,536,-1,531,536,535,-1,532,1084,1087,-1,532,1087,536,-1,533,534,538,-1,533,538,537,-1,534,535,539,-1,534,539,538,-1,535,536,540,-1,535,540,539,-1,536,1087,1090,-1,536,1090,540,-1,541,542,546,-1,541,546,545,-1,542,543,547,-1,542,547,546,-1,543,544,548,-1,543,548,547,-1,544,1093,1096,-1,544,1096,548,-1,545,546,550,-1,545,550,549,-1,546,547,551,-1,546,551,550,-1,547,548,552,-1,547,552,551,-1,548,1096,1099,-1,548,1099,552,-1,553,554,558,-1,553,558,557,-1,554,555,559,-1,554,559,558,-1,555,1265,1389,-1,555,1389,1390,-1,555,1390,1104,-1,555,1104,559,-1,1441,1103,556,-1,1441,556,1188,-1,1441,1188,1274,-1,557,558,561,-1,557,561,560,-1,558,559,562,-1,558,562,561,-1,559,1104,1107,-1,559,1107,562,-1,563,1110,1445,-1,563,1445,1448,-1,563,1448,1400,-1,564,575,574,-1,564,574,565,-1,565,574,573,-1,565,573,566,-1,566,573,1484,-1,566,1484,1483,-1,566,1483,1474,-1,566,1474,1475,-1,567,572,571,-1,567,571,568,-1,568,571,570,-1,568,570,569,-1,569,570,1480,-1,569,1480,1479,-1,569,1479,1486,-1,569,1486,1487,-1,576,577,929,-1,576,929,932,-1,576,639,638,-1,576,638,577,-1,577,578,926,-1,577,926,929,-1,577,638,637,-1,577,637,578,-1,578,579,923,-1,578,923,926,-1,578,637,636,-1,578,636,579,-1,580,581,650,-1,580,650,651,-1,580,604,605,-1,580,605,581,-1,581,582,649,-1,581,649,650,-1,581,605,606,-1,581,606,582,-1,582,583,648,-1,582,648,649,-1,582,606,607,-1,582,607,583,-1,584,585,618,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_8()
		{
			int[] value = {584,618,619,-1,584,623,622,-1,584,622,585,-1,585,586,617,-1,585,617,618,-1,585,622,621,-1,585,621,586,-1,586,587,616,-1,586,616,617,-1,586,621,620,-1,586,620,587,-1,588,589,634,-1,588,634,635,-1,588,934,931,-1,588,931,589,-1,589,590,633,-1,589,633,634,-1,589,931,928,-1,589,928,590,-1,590,591,632,-1,590,632,633,-1,590,928,925,-1,590,925,591,-1,592,593,609,-1,592,609,608,-1,592,599,598,-1,592,598,593,-1,593,594,610,-1,593,610,609,-1,593,598,597,-1,593,597,594,-1,594,595,611,-1,594,611,610,-1,594,597,596,-1,594,596,595,-1,596,597,601,-1,596,601,600,-1,597,598,602,-1,597,602,601,-1,598,599,603,-1,598,603,602,-1,600,601,605,-1,600,605,604,-1,601,602,606,-1,601,606,605,-1,602,603,607,-1,602,607,606,-1,608,609,613,-1,608,613,612,-1,609,610,614,-1,609,614,613,-1,610,611,615,-1,610,615,614,-1,612,613,617,-1,612,617,616,-1,613,614,618,-1,613,618,617,-1,614,615,619,-1,614,619,618,-1,620,621,625,-1,620,625,624,-1,621,622,626,-1,621,626,625,-1,622,623,627,-1,622,627,626,-1,624,625,629,-1,624,629,628,-1,625,626,630,-1,625,630,629,-1,626,627,631,-1,626,631,630,-1,628,629,633,-1,628,633,632,-1,629,630,634,-1,629,634,633,-1,630,631,635,-1,630,635,634,-1,636,637,641,-1,636,641,640,-1,637,638,642,-1,637,642,641,-1,638,639,643,-1,638,643,642,-1,640,641,645,-1,640,645,644,-1,641,642,646,-1,641,646,645,-1,642,643,647,-1,642,647,646,-1,644,645,649,-1,644,649,648,-1,645,646,650,-1,645,650,649,-1,646,647,651,-1,646,651,650,-1,662,760,772,-1,662,772,768,-1,662,769,775,-1,662,775,760,-1,664,761,773,-1,664,773,766,-1,664,767,772,-1,664,772,761,-1,665,762,775,-1,665,775,765,-1,665,764,774,-1,665,774,762,-1,679,763,774,-1,679,774,771,-1,679,770,773,-1,679,773,763,-1,732,768,772,-1,732,772,767,-1,733,771,774,-1,733,774,764,-1,739,765,775,-1,739,775,769,-1,745,766,773,-1,745,773,770,-1,776,788,817,-1,776,817,805,-1,776,800,804,-1,776,804,788,-1,776,805,849,-1,776,849,848,-1,777,789,818,-1,777,818,806,-1,777,805,817,-1,777,817,789,-1,777,806,850,-1,777,850,849,-1,777,849,805,-1,778,790,819,-1,778,819,807,-1,778,806,818,-1,778,818,790,-1,778,851,850,-1,778,850,806,-1,779,782,802,-1,779,802,801,-1,779,801,1165,-1,779,1165,1155,-1,779,808,811,-1,779,811,782,-1,779,1155,1162,-1,779,1162,808,-1,780,783,811,-1,780,811,808,-1,780,808,1162,-1,780,1162,1152,-1,780,809,812,-1,780,812,783,-1,780,1152,1159,-1,780,1159,809,-1,781,784,812,-1,781,812,809,-1,781,809,1159,-1,781,1159,1149,-1,781,810,813,-1,781,813,784,-1,781,1149,1158,-1,781,1158,810,-1,782,785,803,-1,782,803,802,-1,782,811,785,-1,783,786,814,-1,783,814,811,-1,783,812,815,-1,783,815,786,-1,784,787,812,-1,784,813,816,-1,784,816,787,-1,785,788,804,-1,785,804,803,-1,785,811,814,-1,785,814,817,-1,785,817,788,-1,786,789,817,-1,786,817,814,-1,786,815,818,-1,786,818,789,-1,787,790,818,-1,787,818,815,-1,787,815,812,-1,787,816,819,-1,787,819,790,-1,791,794,821,-1,791,821,820,-1,791,820,1125,-1,791,1125,1113,-1,791,823,794,-1,791,1113,1132,-1,791,1132,823,-1,792,795,826,-1,792,826,823,-1,792,823,1132,-1,792,1132,1117,-1,792,824,827,-1,792,827,795,-1,792,1117,1136,-1,792,1136,824,-1,793,796,824,-1,793,824,1136,-1,793,1136,1121,-1,793,825,828,-1,793,828,796,-1,793,1121,1140,-1,793,1140,825,-1,794,797,822,-1,794,822,821,-1,794,823,826,-1,794,826,829,-1,794,829,797,-1,795,798,829,-1,795,829,826,-1,795,827,830,-1,795,830,798,-1,796,799,830,-1,796,830,827,-1,796,827,824,-1,796,828,831,-1,796,831,799,-1,832,833,861,-1,832,861,860,-1,832,856,857,-1,832,857,833,-1,833,834,862,-1,833,862,861,-1,833,857,858,-1,833,858,834,-1,834,835,863,-1,834,863,862,-1,834,858,859,-1,834,859,835,-1,836,837,873,-1,836,873,872,-1,836,868,869,-1,836,869,837,-1,837,838,874,-1,837,874,873,-1,837,869,870,-1,837,870,838,-1,838,839,875,-1,838,875,874,-1,838,870,871,-1,838,871,839,-1,840,841,885,-1,840,885,884,-1,840,880,881,-1,840,881,841,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_9()
		{
			int[] value = {841,842,886,-1,841,886,885,-1,841,881,882,-1,841,882,842,-1,842,843,887,-1,842,887,886,-1,842,882,883,-1,842,883,843,-1,844,845,897,-1,844,897,896,-1,844,892,893,-1,844,893,845,-1,845,846,898,-1,845,898,897,-1,845,893,894,-1,845,894,846,-1,846,847,899,-1,846,899,898,-1,846,894,895,-1,846,895,847,-1,848,849,853,-1,848,853,852,-1,849,850,854,-1,849,854,853,-1,850,851,855,-1,850,855,854,-1,852,853,857,-1,852,857,856,-1,853,854,858,-1,853,858,857,-1,854,855,859,-1,854,859,858,-1,860,861,865,-1,860,865,864,-1,861,862,866,-1,861,866,865,-1,862,863,867,-1,862,867,866,-1,864,865,869,-1,864,869,868,-1,865,866,870,-1,865,870,869,-1,866,867,871,-1,866,871,870,-1,872,873,877,-1,872,877,876,-1,873,874,878,-1,873,878,877,-1,874,875,879,-1,874,879,878,-1,876,877,881,-1,876,881,880,-1,877,878,882,-1,877,882,881,-1,878,879,883,-1,878,883,882,-1,884,885,889,-1,884,889,888,-1,885,886,890,-1,885,890,889,-1,886,887,891,-1,886,891,890,-1,888,889,893,-1,888,893,892,-1,889,890,894,-1,889,894,893,-1,890,891,895,-1,890,895,894,-1,896,897,901,-1,896,901,900,-1,897,898,902,-1,897,902,901,-1,898,899,903,-1,898,903,902,-1,900,901,905,-1,900,905,904,-1,901,902,906,-1,901,906,905,-1,902,903,907,-1,902,907,906,-1,908,909,910,-1,908,910,1673,-1,908,1673,1672,-1,908,1672,1679,-1,908,1679,1851,-1,908,1851,1852,-1,908,1852,1853,-1,908,1853,1677,-1,908,1677,1659,-1,908,1659,1660,-1,908,913,912,-1,908,912,909,-1,909,912,911,-1,909,911,910,-1,911,912,915,-1,911,915,914,-1,912,913,916,-1,912,916,915,-1,914,915,918,-1,914,918,917,-1,915,916,919,-1,915,919,918,-1,917,918,933,-1,917,933,934,-1,918,919,932,-1,918,932,933,-1,920,925,924,-1,920,924,921,-1,921,924,923,-1,921,923,922,-1,923,924,927,-1,923,927,926,-1,924,925,928,-1,924,928,927,-1,926,927,930,-1,926,930,929,-1,927,928,931,-1,927,931,930,-1,929,930,933,-1,929,933,932,-1,930,931,934,-1,930,934,933,-1,935,936,1138,-1,935,1138,1137,-1,935,1008,1007,-1,935,1007,936,-1,935,1137,1282,-1,935,1282,1190,-1,935,1190,1234,-1,935,1234,1008,-1,936,937,1139,-1,936,1139,1138,-1,936,1007,1006,-1,936,1006,937,-1,937,938,1140,-1,937,1140,1139,-1,937,1006,1005,-1,937,1005,938,-1,939,969,1303,-1,939,1303,1291,-1,939,1083,1229,-1,939,1229,1202,-1,939,1202,1231,-1,939,1231,969,-1,939,1291,1374,-1,939,1374,1083,-1,940,941,1081,-1,940,1081,1082,-1,940,970,971,-1,940,971,941,-1,940,1082,1373,-1,940,1373,1290,-1,940,1290,1304,-1,940,1304,970,-1,942,1077,1369,-1,942,1369,1293,-1,942,1092,1223,-1,942,1223,1200,-1,942,1200,1225,-1,942,1225,1077,-1,942,1293,1380,-1,942,1380,1092,-1,943,944,1090,-1,943,1090,1091,-1,943,1076,1075,-1,943,1075,944,-1,943,1091,1379,-1,943,1379,1292,-1,943,1292,1370,-1,943,1370,1076,-1,945,1086,1375,-1,945,1375,1295,-1,945,1101,1217,-1,945,1217,1198,-1,945,1198,1219,-1,945,1219,1086,-1,945,1295,1386,-1,945,1386,1101,-1,946,947,1099,-1,946,1099,1100,-1,946,1085,1084,-1,946,1084,947,-1,946,1100,1385,-1,946,1385,1294,-1,946,1294,1376,-1,946,1376,1085,-1,948,1095,1381,-1,948,1381,1297,-1,948,1112,1403,-1,948,1403,1402,-1,948,1194,1213,-1,948,1213,1095,-1,948,1297,1298,-1,948,1298,1112,-1,948,1402,1194,-1,949,950,1399,-1,949,1399,1451,-1,949,1094,1093,-1,949,1093,950,-1,949,1296,1382,-1,949,1382,1094,-1,949,1451,1296,-1,951,952,956,-1,951,956,955,-1,951,955,1257,-1,951,1257,1259,-1,951,1004,1003,-1,951,1003,952,-1,951,1259,1192,-1,951,1192,1004,-1,952,953,957,-1,952,957,956,-1,952,1003,1002,-1,952,1002,953,-1,953,954,958,-1,953,958,957,-1,953,1002,1001,-1,953,1001,954,-1,955,956,960,-1,955,960,959,-1,955,959,1255,-1,955,1255,1257,-1,956,957,961,-1,956,961,960,-1,957,958,962,-1,957,962,961,-1,963,966,1233,-1,963,1233,1235,-1,963,1146,1408,-1,963,1408,1299,-1,963,1235,1191,-1,963,1191,1146,-1,963,1299,1301,-1,963,1301,966,-1,964,965,968,-1,964,968,967,-1,964,967,1302,-1,964,1302,1300,-1,964,1145,1144,-1,964,1144,965,-1,964,1300,1409,-1,964,1409,1145,-1,966,969,1231,-1,966,1231,1233,-1,966,1301,1303,-1,966,1303,969,-1,967,968,971,-1,967,971,970,-1,967,970,1304,-1,967,1304,1302,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_10()
		{
			int[] value = {972,975,1250,-1,972,1250,1248,-1,972,1179,1042,-1,972,1042,1177,-1,972,1177,1344,-1,972,1344,1305,-1,1248,1208,1178,-1,1248,1178,1042,-1,1248,1042,1179,-1,1248,1179,972,-1,972,1305,1307,-1,972,1307,975,-1,973,974,977,-1,973,977,976,-1,973,976,1308,-1,973,1308,1306,-1,973,1041,1040,-1,973,1040,974,-1,973,1306,1345,-1,973,1345,1041,-1,975,978,1252,-1,975,1252,1250,-1,975,1307,1309,-1,975,1309,978,-1,976,977,980,-1,976,980,979,-1,976,979,1310,-1,976,1310,1308,-1,978,1039,1210,-1,978,1210,1252,-1,978,1309,1342,-1,978,1342,1039,-1,979,980,1037,-1,979,1037,1038,-1,979,1038,1343,-1,979,1343,1310,-1,981,984,1244,-1,981,1244,1242,-1,981,1045,1346,-1,981,1346,1311,-1,981,1242,1206,-1,981,1206,1045,-1,981,1311,1313,-1,981,1313,984,-1,982,983,986,-1,982,986,985,-1,982,985,1314,-1,982,1314,1312,-1,982,1044,1043,-1,982,1043,983,-1,982,1312,1347,-1,982,1347,1044,-1,984,987,1246,-1,984,1246,1244,-1,984,1313,1315,-1,984,1315,987,-1,985,986,989,-1,985,989,988,-1,985,988,1316,-1,985,1316,1314,-1,1178,1208,1246,-1,1178,1246,987,-1,1178,987,1180,-1,1178,1180,1042,-1,987,1315,1177,-1,987,1177,1042,-1,987,1042,1180,-1,1177,1315,1344,-1,988,989,1040,-1,988,1040,1041,-1,988,1041,1345,-1,988,1345,1316,-1,990,993,1238,-1,990,1238,1236,-1,990,1052,1349,-1,990,1349,1317,-1,990,1236,1205,-1,990,1205,1052,-1,990,1317,1319,-1,990,1319,993,-1,991,992,995,-1,991,995,994,-1,991,994,1320,-1,991,1320,1318,-1,991,1051,1050,-1,991,1050,992,-1,991,1318,1348,-1,991,1348,1051,-1,993,996,1240,-1,993,1240,1238,-1,993,1319,1321,-1,993,1321,996,-1,994,995,998,-1,994,998,997,-1,994,997,1322,-1,994,1322,1320,-1,996,1045,1206,-1,996,1206,1240,-1,996,1321,1346,-1,996,1346,1045,-1,997,998,1043,-1,997,1043,1044,-1,997,1044,1347,-1,997,1347,1322,-1,999,1000,1457,-1,999,1457,1350,-1,999,1052,1326,-1,999,1326,1325,-1,1172,1454,1455,-1,1172,1455,1000,-1,1172,1000,999,-1,999,1325,1324,-1,999,1324,1172,-1,999,1350,1349,-1,999,1349,1052,-1,1000,1329,1457,-1,1000,1455,1329,-1,1001,1002,1126,-1,1001,1126,1125,-1,1002,1003,1127,-1,1002,1127,1126,-1,1003,1004,1128,-1,1003,1128,1127,-1,1004,1192,1288,-1,1004,1288,1128,-1,1005,1006,1010,-1,1005,1010,1009,-1,1006,1007,1011,-1,1006,1011,1010,-1,1007,1008,1012,-1,1007,1012,1011,-1,1008,1234,1232,-1,1008,1232,1012,-1,1009,1010,1014,-1,1009,1014,1013,-1,1010,1011,1015,-1,1010,1015,1014,-1,1011,1012,1016,-1,1011,1016,1015,-1,1012,1232,1230,-1,1012,1230,1016,-1,1017,1018,1025,-1,1017,1025,1024,-1,1017,1024,1023,-1,1017,1023,1330,-1,1017,1330,1331,-1,1018,1019,1026,-1,1018,1026,1025,-1,1020,1021,1181,-1,1020,1181,1360,-1,1020,1360,1359,-1,1020,1359,1066,-1,1021,1170,1426,-1,1021,1426,1335,-1,1021,1335,1360,-1,1021,1360,1181,-1,1022,1067,1333,-1,1022,1333,1334,-1,1022,1262,1363,-1,1022,1334,1424,-1,1022,1363,1364,-1,1022,1364,1067,-1,1023,1260,1330,-1,1027,1028,1031,-1,1027,1031,1030,-1,1028,1029,1032,-1,1028,1032,1031,-1,1029,1337,1336,-1,1029,1336,1033,-1,1029,1033,1032,-1,1033,1336,1264,-1,1034,1102,1387,-1,1034,1387,1388,-1,1034,1340,1341,-1,1034,1341,1102,-1,1034,1388,1266,-1,1034,1436,1340,-1,1035,1036,1103,-1,1035,1103,1394,-1,1035,1394,1393,-1,1035,1393,1339,-1,1037,1063,1064,-1,1037,1064,1038,-1,1038,1064,1356,-1,1038,1356,1343,-1,1039,1065,1254,-1,1039,1254,1210,-1,1039,1342,1355,-1,1039,1355,1065,-1,1046,1047,1073,-1,1046,1073,1074,-1,1047,1048,1072,-1,1047,1072,1073,-1,1048,1049,1071,-1,1048,1071,1072,-1,1050,1051,1456,-1,1050,1456,1327,-1,1051,1348,1456,-1,1052,1205,1326,-1,1053,1054,1109,-1,1053,1109,1110,-1,1054,1055,1108,-1,1054,1108,1109,-1,1055,1056,1107,-1,1055,1107,1108,-1,1057,1058,1061,-1,1057,1061,1060,-1,1057,1143,1142,-1,1057,1142,1058,-1,1058,1142,1406,-1,1058,1406,1352,-1,1058,1352,1354,-1,1058,1354,1061,-1,1059,1062,1353,-1,1059,1353,1351,-1,1059,1141,1193,-1,1059,1193,1258,-1,1059,1258,1256,-1,1059,1256,1062,-1,1059,1351,1407,-1,1059,1407,1141,-1,1060,1061,1064,-1,1060,1064,1063,-1,1061,1354,1356,-1,1061,1356,1064,-1,1062,1065,1355,-1,1062,1355,1353,-1,1062,1256,1254,-1,1062,1254,1065,-1,1066,1359,1432,-1,1067,1171,1358,-1,1067,1358,1357,-1,1067,1357,1333,-1,1067,1364,1428,-1,1067,1428,1427,-1,1067,1427,1171,-1,1068,1171,1367,-1,1068,1367,1368,-1,1068,1172,1270,-1,1068,1270,1271,-1,1068,1271,1431,-1,1068,1368,1434,-1,1068,1431,1430,-1,1068,1430,1171,-1,1068,1434,1435,-1,1068,1435,1172,-1,1069,1070,1074,-1,1069,1074,1073,-1,1069,1073,1072,-1,1069,1072,1182,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_11()
		{
			int[] value = {1069,1182,1365,-1,1069,1365,1366,-1,1069,1366,1429,-1,1069,1429,1361,-1,1069,1361,1070,-1,1071,1433,1365,-1,1071,1365,1182,-1,1071,1182,1072,-1,1075,1076,1079,-1,1075,1079,1078,-1,1076,1370,1372,-1,1076,1372,1079,-1,1077,1080,1371,-1,1077,1371,1369,-1,1077,1225,1227,-1,1077,1227,1080,-1,1078,1079,1082,-1,1078,1082,1081,-1,1079,1372,1373,-1,1079,1373,1082,-1,1080,1083,1374,-1,1080,1374,1371,-1,1080,1227,1229,-1,1080,1229,1083,-1,1084,1085,1088,-1,1084,1088,1087,-1,1085,1376,1378,-1,1085,1378,1088,-1,1086,1089,1377,-1,1086,1377,1375,-1,1086,1219,1221,-1,1086,1221,1089,-1,1087,1088,1091,-1,1087,1091,1090,-1,1088,1378,1379,-1,1088,1379,1091,-1,1089,1092,1380,-1,1089,1380,1377,-1,1089,1221,1223,-1,1089,1223,1092,-1,1093,1094,1097,-1,1093,1097,1096,-1,1094,1382,1384,-1,1094,1384,1097,-1,1095,1098,1383,-1,1095,1383,1381,-1,1095,1213,1215,-1,1095,1215,1098,-1,1096,1097,1100,-1,1096,1100,1099,-1,1097,1384,1385,-1,1097,1385,1100,-1,1098,1101,1386,-1,1098,1386,1383,-1,1098,1215,1217,-1,1098,1217,1101,-1,1102,1183,1442,-1,1102,1442,1443,-1,1102,1341,1392,-1,1102,1392,1391,-1,1102,1391,1183,-1,1102,1443,1387,-1,1103,1441,1394,-1,1104,1105,1108,-1,1104,1108,1107,-1,1104,1390,1444,-1,1104,1444,1105,-1,1105,1397,1398,-1,1105,1398,1109,-1,1105,1109,1108,-1,1105,1444,1397,-1,1106,1183,1440,-1,1106,1440,1439,-1,1106,1184,1447,-1,1106,1447,1446,-1,1106,1273,1272,-1,1106,1272,1184,-1,1106,1395,1396,-1,1106,1396,1183,-1,1106,1439,1273,-1,1106,1446,1395,-1,1109,1398,1445,-1,1109,1445,1110,-1,1111,1112,1298,-1,1111,1298,1452,-1,1111,1401,1450,-1,1111,1450,1449,-1,1111,1449,1184,-1,1111,1184,1112,-1,1111,1452,1401,-1,1112,1184,1404,-1,1112,1404,1403,-1,1113,1114,1131,-1,1113,1131,1132,-1,1113,1125,1126,-1,1113,1126,1114,-1,1114,1115,1130,-1,1114,1130,1131,-1,1114,1126,1127,-1,1114,1127,1115,-1,1115,1116,1129,-1,1115,1129,1130,-1,1115,1127,1128,-1,1115,1128,1116,-1,1116,1128,1288,-1,1116,1288,1280,-1,1116,1280,1286,-1,1116,1286,1129,-1,1117,1118,1135,-1,1117,1135,1136,-1,1117,1132,1131,-1,1117,1131,1118,-1,1118,1119,1134,-1,1118,1134,1135,-1,1118,1131,1130,-1,1118,1130,1119,-1,1119,1120,1133,-1,1119,1133,1134,-1,1119,1130,1129,-1,1119,1129,1120,-1,1120,1129,1286,-1,1120,1286,1278,-1,1120,1278,1284,-1,1120,1284,1133,-1,1121,1122,1139,-1,1121,1139,1140,-1,1121,1136,1135,-1,1121,1135,1122,-1,1122,1123,1138,-1,1122,1138,1139,-1,1122,1135,1134,-1,1122,1134,1123,-1,1123,1124,1137,-1,1123,1137,1138,-1,1123,1134,1133,-1,1123,1133,1124,-1,1124,1133,1284,-1,1124,1284,1276,-1,1124,1276,1282,-1,1124,1282,1137,-1,1141,1156,1289,-1,1141,1289,1193,-1,1141,1407,1417,-1,1141,1417,1156,-1,1142,1143,1158,-1,1142,1158,1157,-1,1142,1157,1416,-1,1142,1416,1406,-1,1144,1145,1166,-1,1144,1166,1165,-1,1145,1409,1422,-1,1145,1422,1166,-1,1146,1167,1423,-1,1146,1423,1408,-1,1146,1191,1283,-1,1146,1283,1167,-1,1147,1156,1417,-1,1147,1417,1411,-1,1147,1161,1287,-1,1147,1287,1281,-1,1147,1281,1289,-1,1147,1289,1156,-1,1147,1411,1419,-1,1147,1419,1161,-1,1148,1149,1159,-1,1148,1159,1160,-1,1148,1157,1158,-1,1148,1158,1149,-1,1148,1160,1418,-1,1148,1418,1410,-1,1148,1410,1416,-1,1148,1416,1157,-1,1150,1161,1419,-1,1150,1419,1413,-1,1150,1164,1285,-1,1150,1285,1279,-1,1150,1279,1287,-1,1150,1287,1161,-1,1150,1413,1421,-1,1150,1421,1164,-1,1151,1152,1162,-1,1151,1162,1163,-1,1151,1160,1159,-1,1151,1159,1152,-1,1151,1163,1420,-1,1151,1420,1412,-1,1151,1412,1418,-1,1151,1418,1160,-1,1153,1164,1421,-1,1153,1421,1415,-1,1153,1167,1283,-1,1153,1283,1277,-1,1153,1277,1285,-1,1153,1285,1164,-1,1153,1415,1423,-1,1153,1423,1167,-1,1154,1155,1165,-1,1154,1165,1166,-1,1154,1163,1162,-1,1154,1162,1155,-1,1154,1166,1422,-1,1154,1422,1414,-1,1154,1414,1420,-1,1154,1420,1163,-1,1171,1427,1367,-1,1171,1430,1358,-1,1172,1324,1270,-1,1172,1435,1454,-1,1183,1391,1440,-1,1183,1396,1442,-1,1184,1272,1404,-1,1184,1449,1447,-1,1190,1191,1235,-1,1190,1235,1234,-1,1190,1282,1283,-1,1190,1283,1191,-1,1192,1193,1289,-1,1192,1289,1288,-1,1192,1259,1258,-1,1192,1258,1193,-1,1194,1195,1212,-1,1194,1212,1213,-1,1194,1196,1195,-1,1194,1402,1405,-1,1194,1405,1196,-1,1197,1198,1217,-1,1197,1217,1216,-1,1197,1218,1219,-1,1197,1219,1198,-1,1199,1200,1223,-1,1199,1223,1222,-1,1199,1224,1225,-1,1199,1225,1200,-1,1201,1202,1229,-1,1201,1229,1228,-1,1201,1230,1231,-1,1201,1231,1202,-1,1203,1205,1204,-1,1203,1323,1326,-1,1203,1326,1205,-1,1204,1205,1236,-1,1204,1236,1237,-1,1206,1207,1241,-1,1206,1241,1240,-1,1206,1242,1243,-1,1206,1243,1207,-1,1208,1209,1247,-1,1208,1247,1246,-1,1208,1248,1249,-1,1208,1249,1209,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_12()
		{
			int[] value = {1210,1211,1253,-1,1210,1253,1252,-1,1210,1254,1255,-1,1210,1255,1211,-1,1212,1214,1215,-1,1212,1215,1213,-1,1214,1216,1217,-1,1214,1217,1215,-1,1218,1220,1221,-1,1218,1221,1219,-1,1220,1222,1223,-1,1220,1223,1221,-1,1224,1226,1227,-1,1224,1227,1225,-1,1226,1228,1229,-1,1226,1229,1227,-1,1230,1232,1233,-1,1230,1233,1231,-1,1232,1234,1235,-1,1232,1235,1233,-1,1236,1238,1239,-1,1236,1239,1237,-1,1238,1240,1241,-1,1238,1241,1239,-1,1242,1244,1245,-1,1242,1245,1243,-1,1244,1246,1247,-1,1244,1247,1245,-1,1248,1250,1251,-1,1248,1251,1249,-1,1250,1252,1253,-1,1250,1253,1251,-1,1254,1256,1257,-1,1254,1257,1255,-1,1256,1258,1259,-1,1256,1259,1257,-1,1260,1261,1262,-1,1260,1262,1263,-1,1260,1263,1332,-1,1260,1332,1330,-1,1261,1362,1363,-1,1261,1363,1262,-1,1264,1267,1266,-1,1264,1266,1265,-1,1264,1336,1338,-1,1264,1338,1267,-1,1265,1266,1388,-1,1265,1388,1389,-1,1268,1271,1270,-1,1268,1270,1269,-1,1268,1432,1431,-1,1268,1431,1271,-1,1269,1270,1324,-1,1269,1324,1323,-1,1272,1273,1274,-1,1272,1274,1275,-1,1272,1275,1405,-1,1272,1405,1404,-1,1273,1439,1441,-1,1273,1441,1274,-1,1276,1277,1283,-1,1276,1283,1282,-1,1276,1284,1285,-1,1276,1285,1277,-1,1278,1279,1285,-1,1278,1285,1284,-1,1278,1286,1287,-1,1278,1287,1279,-1,1280,1281,1287,-1,1280,1287,1286,-1,1280,1288,1289,-1,1280,1289,1281,-1,1290,1291,1303,-1,1290,1303,1304,-1,1290,1373,1374,-1,1290,1374,1291,-1,1292,1293,1369,-1,1292,1369,1370,-1,1292,1379,1380,-1,1292,1380,1293,-1,1294,1295,1375,-1,1294,1375,1376,-1,1294,1385,1386,-1,1294,1386,1295,-1,1296,1297,1381,-1,1296,1381,1382,-1,1296,1298,1297,-1,1296,1451,1452,-1,1296,1452,1298,-1,1299,1300,1302,-1,1299,1302,1301,-1,1299,1408,1409,-1,1299,1409,1300,-1,1301,1302,1304,-1,1301,1304,1303,-1,1305,1306,1308,-1,1305,1308,1307,-1,1305,1344,1345,-1,1305,1345,1306,-1,1307,1308,1310,-1,1307,1310,1309,-1,1309,1310,1343,-1,1309,1343,1342,-1,1311,1312,1314,-1,1311,1314,1313,-1,1311,1346,1347,-1,1311,1347,1312,-1,1313,1314,1316,-1,1313,1316,1315,-1,1315,1316,1345,-1,1315,1345,1344,-1,1317,1318,1320,-1,1317,1320,1319,-1,1317,1349,1348,-1,1317,1348,1318,-1,1319,1320,1322,-1,1319,1322,1321,-1,1321,1322,1347,-1,1321,1347,1346,-1,1323,1324,1325,-1,1323,1325,1326,-1,1327,1329,1328,-1,1327,1456,1457,-1,1327,1457,1329,-1,1328,1329,1455,-1,1328,1455,1453,-1,1330,1332,1331,-1,1333,1335,1334,-1,1333,1357,1360,-1,1333,1360,1335,-1,1334,1335,1426,-1,1334,1426,1424,-1,1336,1337,1338,-1,1339,1340,1436,-1,1339,1436,1438,-1,1339,1341,1340,-1,1339,1393,1392,-1,1339,1392,1341,-1,1342,1343,1356,-1,1342,1356,1355,-1,1348,1349,1350,-1,1348,1350,1457,-1,1348,1457,1456,-1,1351,1352,1406,-1,1351,1406,1407,-1,1351,1353,1354,-1,1351,1354,1352,-1,1353,1355,1356,-1,1353,1356,1354,-1,1357,1358,1359,-1,1357,1359,1360,-1,1358,1430,1432,-1,1358,1432,1359,-1,1361,1364,1363,-1,1361,1363,1362,-1,1361,1429,1428,-1,1361,1428,1364,-1,1365,1368,1367,-1,1365,1367,1366,-1,1365,1433,1434,-1,1365,1434,1368,-1,1366,1367,1427,-1,1366,1427,1429,-1,1369,1371,1372,-1,1369,1372,1370,-1,1371,1374,1373,-1,1371,1373,1372,-1,1375,1377,1378,-1,1375,1378,1376,-1,1377,1380,1379,-1,1377,1379,1378,-1,1381,1383,1384,-1,1381,1384,1382,-1,1383,1386,1385,-1,1383,1385,1384,-1,1387,1390,1389,-1,1387,1389,1388,-1,1387,1443,1444,-1,1387,1444,1390,-1,1391,1392,1393,-1,1391,1393,1394,-1,1391,1394,1441,-1,1391,1441,1440,-1,1395,1398,1397,-1,1395,1397,1396,-1,1395,1446,1445,-1,1395,1445,1398,-1,1396,1397,1444,-1,1396,1444,1442,-1,1399,1400,1401,-1,1399,1401,1452,-1,1399,1452,1451,-1,1400,1448,1450,-1,1400,1450,1401,-1,1402,1403,1404,-1,1402,1404,1405,-1,1406,1416,1417,-1,1406,1417,1407,-1,1408,1423,1422,-1,1408,1422,1409,-1,1410,1411,1417,-1,1410,1417,1416,-1,1410,1418,1419,-1,1410,1419,1411,-1,1412,1413,1419,-1,1412,1419,1418,-1,1412,1420,1421,-1,1412,1421,1413,-1,1414,1415,1421,-1,1414,1421,1420,-1,1414,1422,1423,-1,1414,1423,1415,-1,1424,1426,1425,-1,1427,1428,1429,-1,1430,1431,1432,-1,1433,1435,1434,-1,1433,1453,1454,-1,1433,1454,1435,-1,1436,1437,1438,-1,1439,1440,1441,-1,1442,1444,1443,-1,1445,1446,1447,-1,1445,1447,1449,-1,1445,1449,1448,-1,1448,1449,1450,-1,1453,1455,1454,-1,1458,1461,1460,-1,1458,1460,1459,-1,1458,1469,1598,-1,1458,1598,1581,-1,1458,1581,1580,-1,1458,1580,1461,-1,1461,1580,1562,-1,1461,1562,1478,-1,1462,1465,1464,-1,1462,1464,1463,-1,1462,1477,1492,-1,1462,1492,1545,-1,1462,1545,1544,-1,1462,1544,1465,-1,1465,1544,1527,-1,1465,1527,1470,-1,1466,1469,1468,-1,1466,1468,1467,-1,1466,1489,1616,-1,1466,1616,1599,-1,1466,1599,1598,-1,1466,1598,1469,-1,1470,1473,1472,-1,1470,1472,1471,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_13()
		{
			int[] value = {1470,1527,1526,-1,1470,1526,1473,-1,1473,1526,1510,-1,1473,1510,1482,-1,1474,1477,1476,-1,1474,1476,1475,-1,1474,1483,1509,-1,1474,1509,1491,-1,1474,1491,1492,-1,1474,1492,1477,-1,1478,1479,1480,-1,1478,1480,1481,-1,1478,1562,1563,-1,1478,1563,1479,-1,1479,1563,1617,-1,1479,1617,1486,-1,1482,1483,1484,-1,1482,1484,1485,-1,1482,1510,1509,-1,1482,1509,1483,-1,1486,1489,1488,-1,1486,1488,1487,-1,1486,1617,1616,-1,1486,1616,1489,-1,1490,1543,1542,-1,1490,1542,1560,-1,1490,1560,1644,-1,1490,1642,1643,-1,1490,1643,1543,-1,1490,1644,1658,-1,1490,1658,1657,-1,1490,1657,1656,-1,1490,1656,1642,-1,1491,1493,1494,-1,1491,1494,1492,-1,1491,1509,1511,-1,1491,1511,1493,-1,1492,1494,1547,-1,1492,1547,1545,-1,1493,1495,1496,-1,1493,1496,1494,-1,1493,1511,1513,-1,1493,1513,1495,-1,1494,1496,1549,-1,1494,1549,1547,-1,1495,1497,1498,-1,1495,1498,1496,-1,1495,1513,1515,-1,1495,1515,1497,-1,1496,1498,1551,-1,1496,1551,1549,-1,1497,1499,1500,-1,1497,1500,1498,-1,1497,1515,1517,-1,1497,1517,1499,-1,1498,1500,1553,-1,1498,1553,1551,-1,1499,1501,1502,-1,1499,1502,1500,-1,1499,1517,1519,-1,1499,1519,1501,-1,1500,1502,1555,-1,1500,1555,1553,-1,1501,1503,1504,-1,1501,1504,1502,-1,1501,1519,1521,-1,1501,1521,1503,-1,1502,1504,1557,-1,1502,1557,1555,-1,1503,1505,1506,-1,1503,1506,1504,-1,1503,1521,1523,-1,1503,1523,1505,-1,1504,1506,1559,-1,1504,1559,1557,-1,1505,1507,1508,-1,1505,1508,1506,-1,1505,1523,1525,-1,1505,1525,1507,-1,1506,1508,1561,-1,1506,1561,1559,-1,1507,1525,1634,-1,1507,1634,1635,-1,1507,1635,1647,-1,1507,1647,1508,-1,1508,1647,1648,-1,1508,1648,1561,-1,1509,1510,1512,-1,1509,1512,1511,-1,1510,1526,1528,-1,1510,1528,1512,-1,1511,1512,1514,-1,1511,1514,1513,-1,1512,1528,1530,-1,1512,1530,1514,-1,1513,1514,1516,-1,1513,1516,1515,-1,1514,1530,1532,-1,1514,1532,1516,-1,1515,1516,1518,-1,1515,1518,1517,-1,1516,1532,1534,-1,1516,1534,1518,-1,1517,1518,1520,-1,1517,1520,1519,-1,1518,1534,1536,-1,1518,1536,1520,-1,1519,1520,1522,-1,1519,1522,1521,-1,1520,1536,1538,-1,1520,1538,1522,-1,1521,1522,1524,-1,1521,1524,1523,-1,1522,1538,1540,-1,1522,1540,1524,-1,1523,1524,1646,-1,1523,1646,1525,-1,1524,1540,1645,-1,1524,1645,1646,-1,1525,1643,1642,-1,1525,1642,1634,-1,1525,1646,1643,-1,1526,1527,1529,-1,1526,1529,1528,-1,1527,1544,1546,-1,1527,1546,1529,-1,1528,1529,1531,-1,1528,1531,1530,-1,1529,1546,1548,-1,1529,1548,1531,-1,1530,1531,1533,-1,1530,1533,1532,-1,1531,1548,1550,-1,1531,1550,1533,-1,1532,1533,1535,-1,1532,1535,1534,-1,1533,1550,1552,-1,1533,1552,1535,-1,1534,1535,1537,-1,1534,1537,1536,-1,1535,1552,1554,-1,1535,1554,1537,-1,1536,1537,1539,-1,1536,1539,1538,-1,1537,1554,1556,-1,1537,1556,1539,-1,1538,1539,1541,-1,1538,1541,1540,-1,1539,1556,1558,-1,1539,1558,1541,-1,1540,1541,1542,-1,1540,1542,1645,-1,1541,1558,1560,-1,1541,1560,1542,-1,1542,1543,1645,-1,1543,1643,1646,-1,1543,1646,1645,-1,1544,1545,1547,-1,1544,1547,1546,-1,1546,1547,1549,-1,1546,1549,1548,-1,1548,1549,1551,-1,1548,1551,1550,-1,1550,1551,1553,-1,1550,1553,1552,-1,1552,1553,1555,-1,1552,1555,1554,-1,1554,1555,1557,-1,1554,1557,1556,-1,1556,1557,1559,-1,1556,1559,1558,-1,1558,1559,1561,-1,1558,1561,1560,-1,1560,1561,1648,-1,1560,1648,1644,-1,1562,1564,1565,-1,1562,1565,1563,-1,1562,1580,1582,-1,1562,1582,1564,-1,1563,1565,1619,-1,1563,1619,1617,-1,1564,1566,1567,-1,1564,1567,1565,-1,1564,1582,1584,-1,1564,1584,1566,-1,1565,1567,1621,-1,1565,1621,1619,-1,1566,1568,1569,-1,1566,1569,1567,-1,1566,1584,1586,-1,1566,1586,1568,-1,1567,1569,1623,-1,1567,1623,1621,-1,1568,1570,1571,-1,1568,1571,1569,-1,1568,1586,1588,-1,1568,1588,1570,-1,1569,1571,1625,-1,1569,1625,1623,-1,1570,1572,1573,-1,1570,1573,1571,-1,1570,1588,1590,-1,1570,1590,1572,-1,1571,1573,1627,-1,1571,1627,1625,-1,1572,1574,1575,-1,1572,1575,1573,-1,1572,1590,1592,-1,1572,1592,1574,-1,1573,1575,1629,-1,1573,1629,1627,-1,1574,1576,1577,-1,1574,1577,1575,-1,1574,1592,1594,-1,1574,1594,1576,-1,1575,1577,1631,-1,1575,1631,1629,-1,1576,1578,1579,-1,1576,1579,1577,-1,1576,1594,1596,-1,1576,1596,1578,-1,1577,1579,1633,-1,1577,1633,1631,-1,1578,1596,1640,-1,1578,1640,1641,-1,1578,1641,1636,-1,1578,1636,1579,-1,1579,1636,1637,-1,1579,1637,1633,-1,1580,1581,1583,-1,1580,1583,1582,-1,1581,1598,1600,-1,1581,1600,1583,-1,1582,1583,1585,-1,1582,1585,1584,-1,1583,1600,1602,-1,1583,1602,1585,-1,1584,1585,1587,-1,1584,1587,1586,-1,1585,1602,1604,-1,1585,1604,1587,-1,1586,1587,1589,-1,1586,1589,1588,-1,1587,1604,1606,-1,1587,1606,1589,-1,1588,1589,1591,-1,1588,1591,1590,-1,1589,1606,1608,-1,1589,1608,1591,-1,1590,1591,1593,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_14()
		{
			int[] value = {1590,1593,1592,-1,1591,1608,1610,-1,1591,1610,1593,-1,1592,1593,1595,-1,1592,1595,1594,-1,1593,1610,1612,-1,1593,1612,1595,-1,1594,1595,1597,-1,1594,1597,1596,-1,1595,1612,1614,-1,1595,1614,1597,-1,1596,1597,1639,-1,1596,1639,1640,-1,1597,1614,1638,-1,1597,1638,1639,-1,1598,1599,1601,-1,1598,1601,1600,-1,1599,1616,1618,-1,1599,1618,1601,-1,1600,1601,1603,-1,1600,1603,1602,-1,1601,1618,1620,-1,1601,1620,1603,-1,1602,1603,1605,-1,1602,1605,1604,-1,1603,1620,1622,-1,1603,1622,1605,-1,1604,1605,1607,-1,1604,1607,1606,-1,1605,1622,1624,-1,1605,1624,1607,-1,1606,1607,1609,-1,1606,1609,1608,-1,1607,1624,1626,-1,1607,1626,1609,-1,1608,1609,1611,-1,1608,1611,1610,-1,1609,1626,1628,-1,1609,1628,1611,-1,1610,1611,1613,-1,1610,1613,1612,-1,1611,1628,1630,-1,1611,1630,1613,-1,1612,1613,1615,-1,1612,1615,1614,-1,1613,1630,1632,-1,1613,1632,1615,-1,1614,1615,1650,-1,1614,1650,1638,-1,1615,1632,1649,-1,1615,1649,1650,-1,1616,1617,1619,-1,1616,1619,1618,-1,1618,1619,1621,-1,1618,1621,1620,-1,1620,1621,1623,-1,1620,1623,1622,-1,1622,1623,1625,-1,1622,1625,1624,-1,1624,1625,1627,-1,1624,1627,1626,-1,1626,1627,1629,-1,1626,1629,1628,-1,1628,1629,1631,-1,1628,1631,1630,-1,1630,1631,1633,-1,1630,1633,1632,-1,1632,1633,1637,-1,1632,1637,1649,-1,1634,1642,1656,-1,1634,1656,1655,-1,1634,1655,1635,-1,1635,1655,1647,-1,1636,1641,1651,-1,1636,1651,1654,-1,1636,1654,1637,-1,1637,1654,1649,-1,1638,1650,1653,-1,1638,1653,1652,-1,1638,1652,1639,-1,1639,1652,1640,-1,1640,1652,1651,-1,1640,1651,1641,-1,1644,1648,1658,-1,1647,1655,1658,-1,1647,1658,1648,-1,1649,1654,1653,-1,1649,1653,1650,-1,1651,1652,1653,-1,1651,1653,1654,-1,1655,1656,1657,-1,1655,1657,1658,-1,1660,1659,1662,-1,1660,1662,1661,-1,1659,1677,1797,-1,1659,1797,1722,-1,1659,1722,1721,-1,1659,1721,1662,-1,1662,1721,1713,-1,1662,1713,1663,-1,1663,1664,1665,-1,1663,1665,1666,-1,1663,1713,1714,-1,1663,1714,1664,-1,1664,1714,1816,-1,1664,1816,1675,-1,1667,1670,1669,-1,1667,1669,1668,-1,1667,1681,1761,-1,1667,1761,1706,-1,1667,1706,1705,-1,1667,1705,1670,-1,1670,1705,1697,-1,1670,1697,1671,-1,1671,1672,1673,-1,1671,1673,1674,-1,1671,1697,1698,-1,1671,1698,1672,-1,1672,1698,1780,-1,1672,1780,1679,-1,1675,1676,1836,-1,1675,1836,1837,-1,1675,1816,1815,-1,1675,1815,1676,-1,1676,1678,1835,-1,1676,1835,1836,-1,1676,1815,1798,-1,1676,1798,1678,-1,1677,1678,1798,-1,1677,1798,1797,-1,1677,1853,1835,-1,1677,1835,1678,-1,1679,1680,1833,-1,1679,1833,1851,-1,1679,1780,1779,-1,1679,1779,1680,-1,1680,1682,1840,-1,1680,1840,1833,-1,1680,1779,1762,-1,1680,1762,1682,-1,1681,1682,1762,-1,1681,1762,1761,-1,1681,1841,1840,-1,1681,1840,1682,-1,1683,1684,1854,-1,1683,1854,1855,-1,1683,1735,1743,-1,1683,1743,1684,-1,1683,1855,1857,-1,1683,1857,1856,-1,1683,1856,1736,-1,1683,1736,1735,-1,1684,1743,1744,-1,1684,1744,1848,-1,1684,1848,1847,-1,1684,1847,1854,-1,1685,1687,1760,-1,1685,1760,1813,-1,1685,1813,1814,-1,1685,1814,1843,-1,1685,1843,1842,-1,1685,1842,1846,-1,1685,1846,1686,-1,1685,1686,1688,-1,1685,1688,1687,-1,1686,1751,1759,-1,1686,1759,1688,-1,1686,1846,1850,-1,1686,1850,1849,-1,1686,1849,1752,-1,1686,1752,1751,-1,1687,1688,1759,-1,1687,1759,1760,-1,1689,1690,1704,-1,1689,1704,1703,-1,1689,1691,1737,-1,1689,1737,1729,-1,1689,1703,1711,-1,1689,1711,1691,-1,1689,1729,1730,-1,1689,1730,1690,-1,1690,1730,1790,-1,1690,1790,1788,-1,1690,1788,1786,-1,1690,1786,1704,-1,1691,1692,1738,-1,1691,1738,1737,-1,1691,1711,1712,-1,1691,1712,1692,-1,1692,1712,1767,-1,1692,1767,1769,-1,1692,1769,1771,-1,1692,1771,1738,-1,1693,1694,1720,-1,1693,1720,1719,-1,1693,1695,1753,-1,1693,1753,1745,-1,1693,1719,1727,-1,1693,1727,1695,-1,1693,1745,1746,-1,1693,1746,1694,-1,1694,1746,1826,-1,1694,1826,1824,-1,1694,1824,1822,-1,1694,1822,1720,-1,1695,1696,1754,-1,1695,1754,1753,-1,1695,1727,1728,-1,1695,1728,1696,-1,1696,1728,1803,-1,1696,1803,1805,-1,1696,1805,1807,-1,1696,1807,1754,-1,1697,1699,1700,-1,1697,1700,1698,-1,1697,1705,1707,-1,1697,1707,1699,-1,1698,1700,1782,-1,1698,1782,1780,-1,1699,1701,1702,-1,1699,1702,1700,-1,1699,1707,1709,-1,1699,1709,1701,-1,1700,1702,1784,-1,1700,1784,1782,-1,1701,1703,1704,-1,1701,1704,1702,-1,1701,1709,1711,-1,1701,1711,1703,-1,1702,1704,1786,-1,1702,1786,1784,-1,1705,1706,1708,-1,1705,1708,1707,-1,1706,1761,1763,-1,1706,1763,1708,-1,1707,1708,1710,-1,1707,1710,1709,-1,1708,1763,1765,-1,1708,1765,1710,-1,1709,1710,1712,-1,1709,1712,1711,-1,1710,1765,1767,-1,1710,1767,1712,-1,1713,1715,1716,-1,1713,1716,1714,-1,1713,1721,1723,-1,1713,1723,1715,-1,1714,1716,1818,-1,1714,1818,1816,-1,1715,1717,1718,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_coordIndex_15()
		{
			int[] value = {1715,1718,1716,-1,1715,1723,1725,-1,1715,1725,1717,-1,1716,1718,1820,-1,1716,1820,1818,-1,1717,1719,1720,-1,1717,1720,1718,-1,1717,1725,1727,-1,1717,1727,1719,-1,1718,1720,1822,-1,1718,1822,1820,-1,1721,1722,1724,-1,1721,1724,1723,-1,1722,1797,1799,-1,1722,1799,1724,-1,1723,1724,1726,-1,1723,1726,1725,-1,1724,1799,1801,-1,1724,1801,1726,-1,1725,1726,1728,-1,1725,1728,1727,-1,1726,1801,1803,-1,1726,1803,1728,-1,1729,1731,1732,-1,1729,1732,1730,-1,1729,1737,1739,-1,1729,1739,1731,-1,1730,1732,1792,-1,1730,1792,1790,-1,1731,1733,1734,-1,1731,1734,1732,-1,1731,1739,1741,-1,1731,1741,1733,-1,1732,1734,1794,-1,1732,1794,1792,-1,1733,1735,1736,-1,1733,1736,1734,-1,1733,1741,1743,-1,1733,1743,1735,-1,1734,1736,1796,-1,1734,1796,1794,-1,1736,1856,1857,-1,1736,1857,1796,-1,1737,1738,1740,-1,1737,1740,1739,-1,1738,1771,1773,-1,1738,1773,1740,-1,1739,1740,1742,-1,1739,1742,1741,-1,1740,1773,1775,-1,1740,1775,1742,-1,1741,1742,1744,-1,1741,1744,1743,-1,1742,1775,1777,-1,1742,1777,1744,-1,1744,1777,1847,-1,1744,1847,1848,-1,1745,1747,1748,-1,1745,1748,1746,-1,1745,1753,1755,-1,1745,1755,1747,-1,1746,1748,1828,-1,1746,1828,1826,-1,1747,1749,1750,-1,1747,1750,1748,-1,1747,1755,1757,-1,1747,1757,1749,-1,1748,1750,1830,-1,1748,1830,1828,-1,1749,1751,1752,-1,1749,1752,1750,-1,1749,1757,1759,-1,1749,1759,1751,-1,1750,1752,1832,-1,1750,1832,1830,-1,1752,1849,1850,-1,1752,1850,1832,-1,1753,1754,1756,-1,1753,1756,1755,-1,1754,1807,1809,-1,1754,1809,1756,-1,1755,1756,1758,-1,1755,1758,1757,-1,1756,1809,1811,-1,1756,1811,1758,-1,1757,1758,1760,-1,1757,1760,1759,-1,1758,1811,1813,-1,1758,1813,1760,-1,1761,1762,1764,-1,1761,1764,1763,-1,1762,1779,1781,-1,1762,1781,1764,-1,1763,1764,1766,-1,1763,1766,1765,-1,1764,1781,1783,-1,1764,1783,1766,-1,1765,1766,1768,-1,1765,1768,1767,-1,1766,1783,1785,-1,1766,1785,1768,-1,1767,1768,1770,-1,1767,1770,1769,-1,1768,1785,1787,-1,1768,1787,1770,-1,1769,1770,1772,-1,1769,1772,1771,-1,1770,1787,1789,-1,1770,1789,1772,-1,1771,1772,1774,-1,1771,1774,1773,-1,1772,1789,1791,-1,1772,1791,1774,-1,1773,1774,1776,-1,1773,1776,1775,-1,1774,1791,1793,-1,1774,1793,1776,-1,1775,1776,1778,-1,1775,1778,1777,-1,1776,1793,1795,-1,1776,1795,1778,-1,1777,1778,1845,-1,1777,1845,1847,-1,1778,1795,1844,-1,1778,1844,1845,-1,1779,1780,1782,-1,1779,1782,1781,-1,1781,1782,1784,-1,1781,1784,1783,-1,1783,1784,1786,-1,1783,1786,1785,-1,1785,1786,1788,-1,1785,1788,1787,-1,1787,1788,1790,-1,1787,1790,1789,-1,1789,1790,1792,-1,1789,1792,1791,-1,1791,1792,1794,-1,1791,1794,1793,-1,1793,1794,1796,-1,1793,1796,1795,-1,1795,1796,1857,-1,1795,1857,1844,-1,1797,1798,1800,-1,1797,1800,1799,-1,1798,1815,1817,-1,1798,1817,1800,-1,1799,1800,1802,-1,1799,1802,1801,-1,1800,1817,1819,-1,1800,1819,1802,-1,1801,1802,1804,-1,1801,1804,1803,-1,1802,1819,1821,-1,1802,1821,1804,-1,1803,1804,1806,-1,1803,1806,1805,-1,1804,1821,1823,-1,1804,1823,1806,-1,1805,1806,1808,-1,1805,1808,1807,-1,1806,1823,1825,-1,1806,1825,1808,-1,1807,1808,1810,-1,1807,1810,1809,-1,1808,1825,1827,-1,1808,1827,1810,-1,1809,1810,1812,-1,1809,1812,1811,-1,1810,1827,1829,-1,1810,1829,1812,-1,1811,1812,1814,-1,1811,1814,1813,-1,1812,1829,1831,-1,1812,1831,1814,-1,1814,1831,1842,-1,1814,1842,1843,-1,1815,1816,1818,-1,1815,1818,1817,-1,1817,1818,1820,-1,1817,1820,1819,-1,1819,1820,1822,-1,1819,1822,1821,-1,1821,1822,1824,-1,1821,1824,1823,-1,1823,1824,1826,-1,1823,1826,1825,-1,1825,1826,1828,-1,1825,1828,1827,-1,1827,1828,1830,-1,1827,1830,1829,-1,1829,1830,1832,-1,1829,1832,1831,-1,1831,1832,1850,-1,1831,1850,1842,-1,1833,1834,1852,-1,1833,1852,1851,-1,1833,1840,1838,-1,1833,1838,1834,-1,1834,1835,1853,-1,1834,1853,1852,-1,1834,1838,1836,-1,1834,1836,1835,-1,1836,1838,1839,-1,1836,1839,1837,-1,1838,1840,1841,-1,1838,1841,1839,-1,1842,1850,1846,-1,1844,1855,1854,-1,1844,1854,1845,-1,1844,1857,1855,-1,1845,1854,1847,-1};
			return value;
		}


		/** Define subarrays using type int[] */
		private int[] getIndexedFaceSet_6_51_texCoordIndex_1()
		{
			int[] value = {0,78,461,-1,0,461,344,-1,0,344,804,-1,0,800,776,-1,0,776,848,-1,0,848,78,-1,0,804,800,-1,1,90,851,-1,1,851,778,-1,1,778,807,-1,1,351,446,-1,1,446,90,-1,1,807,819,-1,1,819,351,-1,2,3,99,-1,2,99,96,-1,2,96,93,-1,2,93,1459,-1,2,1459,1460,-1,2,363,367,-1,2,367,3,-1,2,1460,1461,-1,2,1461,1478,-1,2,1478,1481,-1,2,1481,363,-1,3,4,102,-1,3,102,99,-1,3,367,371,-1,3,371,4,-1,4,55,102,-1,4,371,553,-1,4,553,55,-1,5,6,366,-1,5,366,572,-1,5,18,283,-1,5,283,191,-1,5,191,194,-1,5,194,6,-1,5,572,567,-1,5,567,18,-1,6,7,370,-1,6,370,366,-1,6,194,197,-1,6,197,7,-1,7,8,373,-1,7,373,370,-1,7,197,200,-1,7,200,8,-1,8,58,556,-1,8,556,373,-1,8,200,257,-1,8,257,58,-1,9,10,274,-1,9,274,271,-1,9,20,575,-1,9,575,564,-1,9,271,203,-1,9,203,20,-1,9,564,352,-1,9,352,10,-1,10,11,277,-1,10,277,274,-1,10,352,356,-1,10,356,11,-1,11,12,280,-1,11,280,277,-1,11,356,360,-1,11,360,12,-1,12,61,337,-1,12,337,280,-1,12,360,506,-1,12,506,61,-1,13,14,359,-1,13,359,355,-1,13,94,97,-1,13,97,14,-1,13,355,1476,-1,13,1476,1477,-1,13,1477,1462,-1,13,1462,1463,-1,13,1463,1464,-1,13,1464,91,-1,13,91,94,-1,14,15,362,-1,14,362,359,-1,14,97,100,-1,14,100,15,-1,15,64,509,-1,15,509,362,-1,15,100,64,-1,16,25,410,-1,16,410,381,-1,16,106,922,-1,16,922,25,-1,16,381,1488,-1,16,1488,1489,-1,16,1489,1466,-1,16,1466,1467,-1,16,1467,1468,-1,16,1468,103,-1,16,103,106,-1,17,18,567,-1,17,567,378,-1,17,29,146,-1,17,146,286,-1,17,286,283,-1,17,283,18,-1,17,378,413,-1,17,413,29,-1,19,20,203,-1,19,203,206,-1,19,33,394,-1,19,394,377,-1,19,206,154,-1,19,154,33,-1,19,377,575,-1,19,575,20,-1,21,37,920,-1,21,920,108,-1,21,108,105,-1,21,105,1471,-1,21,1471,1472,-1,21,374,397,-1,21,397,37,-1,21,1472,1473,-1,21,1473,1482,-1,21,1482,1485,-1,21,1485,374,-1,22,23,916,-1,22,916,913,-1,22,398,402,-1,22,402,23,-1,22,913,908,-1,22,908,1660,-1,22,1660,1661,-1,22,1661,1662,-1,22,1662,1663,-1,22,1663,1666,-1,22,1666,26,-1,22,26,401,-1,22,401,400,-1,22,400,399,-1,22,399,398,-1,23,24,919,-1,23,919,916,-1,23,402,406,-1,23,406,24,-1,24,406,639,-1,24,639,576,-1,24,576,932,-1,24,932,919,-1,25,579,636,-1,25,636,410,-1,25,922,923,-1,25,923,579,-1,26,27,405,-1,26,405,401,-1,26,143,113,-1,26,113,752,-1,26,752,27,-1,26,1666,1665,-1,26,1665,156,-1,26,156,143,-1,129,684,28,-1,129,28,409,-1,129,409,27,-1,129,27,111,-1,129,111,670,-1,129,670,109,-1,129,109,666,-1,27,409,405,-1,111,27,652,-1,27,752,736,-1,27,736,652,-1,28,580,651,-1,28,651,409,-1,28,654,114,-1,28,114,604,-1,28,604,580,-1,28,684,726,-1,28,726,654,-1,29,413,648,-1,29,648,583,-1,29,583,607,-1,29,607,146,-1,30,31,758,-1,30,758,116,-1,30,116,151,-1,30,151,161,-1,30,161,1668,-1,30,1668,1669,-1,30,382,386,-1,30,386,31,-1,30,1669,1670,-1,30,1670,1671,-1,30,1671,1674,-1,30,1674,34,-1,30,34,385,-1,30,385,384,-1,30,384,383,-1,30,383,382,-1,130,667,110,-1,130,110,671,-1,130,671,112,-1,130,112,31,-1,130,31,390,-1,130,390,32,-1,130,32,685,-1,390,31,386,-1,31,112,653,-1,31,653,727,-1,31,727,758,-1,32,390,623,-1,32,623,584,-1,32,584,619,-1,32,619,118,-1,32,118,674,-1,32,674,746,-1,32,746,685,-1,33,154,616,-1,33,616,587,-1,33,587,620,-1,33,620,394,-1,34,35,389,-1,34,389,385,-1,34,911,914,-1,34,914,35,-1,34,1674,1673,-1,34,1673,910,-1,34,910,911,-1,35,36,393,-1,35,393,389,-1,35,914,917,-1,35,917,36,-1,36,588,635,-1,36,635,393,-1,36,917,934,-1,36,934,588,-1,37,397,632,-1,37,632,591,-1,37,591,925,-1,37,925,920,-1,38,57,560,-1,38,560,445,-1,38,67,892,-1,38,892,844,-1,38,445,541,-1,38,541,67,-1,38,844,896,-1,38,896,57,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_2()
		{
			int[] value = {39,69,549,-1,39,549,441,-1,39,70,880,-1,39,880,840,-1,39,441,529,-1,39,529,70,-1,39,840,884,-1,39,884,69,-1,40,72,537,-1,40,537,437,-1,40,73,868,-1,40,868,836,-1,40,437,517,-1,40,517,73,-1,40,836,872,-1,40,872,72,-1,41,75,525,-1,41,525,433,-1,41,76,856,-1,41,856,832,-1,41,433,469,-1,41,469,76,-1,41,832,860,-1,41,860,75,-1,42,66,899,-1,42,899,847,-1,42,79,497,-1,42,497,426,-1,42,426,516,-1,42,516,66,-1,42,847,895,-1,42,895,79,-1,43,81,887,-1,43,887,843,-1,43,82,485,-1,43,485,422,-1,43,422,505,-1,43,505,81,-1,43,843,883,-1,43,883,82,-1,44,84,875,-1,44,875,839,-1,44,85,473,-1,44,473,418,-1,44,418,493,-1,44,493,84,-1,44,839,871,-1,44,871,85,-1,45,87,863,-1,45,863,835,-1,45,88,454,-1,45,454,414,-1,45,414,481,-1,45,481,87,-1,45,835,859,-1,45,859,88,-1,46,144,145,-1,46,145,115,-1,46,115,753,-1,46,677,728,-1,46,728,756,-1,46,753,747,-1,46,747,677,-1,46,756,113,-1,46,113,143,-1,46,143,144,-1,47,150,151,-1,47,151,116,-1,47,116,754,-1,47,678,725,-1,47,725,759,-1,47,754,751,-1,47,751,678,-1,47,759,125,-1,47,125,149,-1,47,149,150,-1,48,600,604,-1,48,604,114,-1,48,114,672,-1,48,655,117,-1,48,117,596,-1,48,596,600,-1,48,657,724,-1,48,724,655,-1,48,672,750,-1,48,750,657,-1,49,615,611,-1,49,611,126,-1,49,126,681,-1,49,656,118,-1,49,118,619,-1,49,619,615,-1,49,658,722,-1,49,722,656,-1,49,681,737,-1,49,737,658,-1,50,659,731,-1,50,731,680,-1,50,675,734,-1,50,734,686,-1,50,680,740,-1,50,740,675,-1,50,686,744,-1,50,744,659,-1,51,660,735,-1,51,735,687,-1,51,661,741,-1,51,741,660,-1,51,676,721,-1,51,721,661,-1,51,687,738,-1,51,738,676,-1,52,760,775,-1,52,775,762,-1,52,761,772,-1,52,772,760,-1,52,762,774,-1,52,774,763,-1,52,763,773,-1,52,773,761,-1,141,149,125,-1,141,125,755,-1,141,755,53,-1,53,683,723,-1,53,723,757,-1,53,755,749,-1,53,749,683,-1,145,141,53,-1,145,53,757,-1,145,757,115,-1,54,595,596,-1,54,596,117,-1,54,117,673,-1,54,663,126,-1,54,126,611,-1,54,611,595,-1,54,673,748,-1,54,748,682,-1,54,682,729,-1,54,729,663,-1,55,56,904,-1,55,553,557,-1,55,557,56,-1,55,904,102,-1,56,57,896,-1,56,896,900,-1,56,557,560,-1,56,560,57,-1,56,900,904,-1,58,59,1275,-1,58,1275,1274,-1,58,1274,1188,-1,58,1188,556,-1,58,257,260,-1,58,260,59,-1,59,60,1405,-1,59,1405,1275,-1,59,260,263,-1,59,263,60,-1,60,263,298,-1,60,298,1195,-1,60,1195,1196,-1,60,1196,1189,-1,1189,1196,1405,-1,1189,1405,60,-1,61,62,340,-1,61,340,337,-1,61,506,1268,-1,61,1268,1269,-1,61,1269,62,-1,62,63,343,-1,62,343,340,-1,62,1269,1323,-1,62,1323,63,-1,63,1203,1204,-1,63,1204,218,-1,63,218,343,-1,63,1323,1203,-1,64,65,512,-1,64,512,509,-1,64,100,907,-1,64,907,65,-1,65,66,516,-1,65,516,512,-1,65,903,899,-1,65,899,66,-1,65,907,903,-1,67,68,888,-1,67,888,892,-1,67,541,545,-1,67,545,68,-1,68,69,884,-1,68,884,888,-1,68,545,549,-1,68,549,69,-1,70,71,876,-1,70,876,880,-1,70,529,533,-1,70,533,71,-1,71,72,872,-1,71,872,876,-1,71,533,537,-1,71,537,72,-1,73,74,864,-1,73,864,868,-1,73,517,521,-1,73,521,74,-1,74,75,860,-1,74,860,864,-1,74,521,525,-1,74,525,75,-1,76,77,852,-1,76,852,856,-1,76,469,465,-1,76,465,77,-1,77,78,848,-1,77,848,852,-1,77,465,461,-1,77,461,78,-1,79,80,501,-1,79,501,497,-1,79,895,891,-1,79,891,80,-1,80,81,505,-1,80,505,501,-1,80,891,887,-1,80,887,81,-1,82,83,489,-1,82,489,485,-1,82,883,879,-1,82,879,83,-1,83,84,493,-1,83,493,489,-1,83,879,875,-1,83,875,84,-1,85,86,477,-1,85,477,473,-1,85,871,867,-1,85,867,86,-1,86,87,481,-1,86,481,477,-1,86,867,863,-1,86,863,87,-1,88,89,450,-1,88,450,454,-1,88,859,855,-1,88,855,89,-1,89,90,446,-1,89,446,450,-1,89,855,851,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_3()
		{
			int[] value = {89,851,90,-1,91,92,95,-1,91,95,94,-1,91,105,104,-1,91,104,92,-1,91,1464,1465,-1,91,1465,1470,-1,91,1470,1471,-1,91,1471,105,-1,92,93,96,-1,92,96,95,-1,92,104,103,-1,92,103,93,-1,93,103,1468,-1,93,1468,1469,-1,93,1469,1458,-1,93,1458,1459,-1,94,95,98,-1,94,98,97,-1,95,96,99,-1,95,99,98,-1,97,98,101,-1,97,101,100,-1,98,99,102,-1,98,102,101,-1,100,101,906,-1,100,906,907,-1,101,102,904,-1,101,904,905,-1,101,905,906,-1,103,104,107,-1,103,107,106,-1,104,105,108,-1,104,108,107,-1,106,107,921,-1,106,921,922,-1,107,108,920,-1,107,920,921,-1,109,668,742,-1,109,742,666,-1,109,670,720,-1,109,720,668,-1,110,667,730,-1,110,730,669,-1,110,669,743,-1,110,743,671,-1,111,652,736,-1,111,736,704,-1,111,704,720,-1,111,720,670,-1,112,671,743,-1,112,743,711,-1,112,711,727,-1,112,727,653,-1,113,696,736,-1,113,736,752,-1,113,756,728,-1,113,728,696,-1,114,654,726,-1,114,726,694,-1,114,694,750,-1,114,750,672,-1,115,691,747,-1,115,747,753,-1,115,757,723,-1,115,723,691,-1,116,695,751,-1,116,751,754,-1,116,758,727,-1,116,727,695,-1,117,655,724,-1,117,724,692,-1,117,692,748,-1,117,748,673,-1,118,656,722,-1,118,722,690,-1,118,690,746,-1,118,746,674,-1,119,657,750,-1,119,750,718,-1,119,675,740,-1,119,740,708,-1,119,708,724,-1,119,724,657,-1,119,718,734,-1,119,734,675,-1,120,658,737,-1,120,737,705,-1,120,676,738,-1,120,738,706,-1,120,705,721,-1,120,721,676,-1,120,706,722,-1,120,722,658,-1,121,659,744,-1,121,744,712,-1,121,677,747,-1,121,747,715,-1,121,712,728,-1,121,728,677,-1,121,715,731,-1,121,731,659,-1,122,660,741,-1,122,741,709,-1,122,678,751,-1,122,751,719,-1,122,709,725,-1,122,725,678,-1,122,719,735,-1,122,735,660,-1,123,661,721,-1,123,721,689,-1,123,679,771,-1,123,771,733,-1,123,733,701,-1,123,689,745,-1,123,745,770,-1,123,770,679,-1,123,701,741,-1,123,741,661,-1,124,662,768,-1,124,768,732,-1,124,732,700,-1,124,680,731,-1,124,731,699,-1,124,699,739,-1,124,739,769,-1,124,769,662,-1,124,700,740,-1,124,740,680,-1,125,693,749,-1,125,749,755,-1,125,759,725,-1,125,725,693,-1,126,663,729,-1,126,729,697,-1,126,697,737,-1,126,737,681,-1,127,664,766,-1,127,766,745,-1,127,745,713,-1,127,682,748,-1,127,748,716,-1,127,713,729,-1,127,729,682,-1,127,716,732,-1,127,732,767,-1,127,767,664,-1,128,665,765,-1,128,765,739,-1,128,739,707,-1,128,683,749,-1,128,749,717,-1,128,707,723,-1,128,723,683,-1,128,717,733,-1,128,733,764,-1,128,764,665,-1,129,666,742,-1,129,742,710,-1,129,710,726,-1,129,726,684,-1,130,685,746,-1,130,746,714,-1,130,714,730,-1,130,730,667,-1,131,668,720,-1,131,720,688,-1,131,686,734,-1,131,734,702,-1,131,688,744,-1,131,744,686,-1,131,702,742,-1,131,742,668,-1,132,669,730,-1,132,730,698,-1,132,687,735,-1,132,735,703,-1,132,698,738,-1,132,738,687,-1,132,703,743,-1,132,743,669,-1,133,688,720,-1,133,720,704,-1,133,696,728,-1,133,728,712,-1,133,704,736,-1,133,736,696,-1,133,712,744,-1,133,744,688,-1,134,689,721,-1,134,721,705,-1,134,697,729,-1,134,729,713,-1,134,705,737,-1,134,737,697,-1,134,713,745,-1,134,745,689,-1,135,690,722,-1,135,722,706,-1,135,698,730,-1,135,730,714,-1,135,706,738,-1,135,738,698,-1,135,714,746,-1,135,746,690,-1,136,691,723,-1,136,723,707,-1,136,699,731,-1,136,731,715,-1,136,707,739,-1,136,739,699,-1,136,715,747,-1,136,747,691,-1,137,692,724,-1,137,724,708,-1,137,700,732,-1,137,732,716,-1,137,708,740,-1,137,740,700,-1,137,716,748,-1,137,748,692,-1,138,693,725,-1,138,725,709,-1,138,701,733,-1,138,733,717,-1,138,709,741,-1,138,741,701,-1,138,717,749,-1,138,749,693,-1,139,694,726,-1,139,726,710,-1,139,702,734,-1,139,734,718,-1,139,710,742,-1,139,742,702,-1,139,718,750,-1,139,750,694,-1,140,695,727,-1,140,727,711,-1,140,703,735,-1,140,735,719,-1,140,711,743,-1,140,743,703,-1,140,719,751,-1,140,751,695,-1,141,145,158,-1,141,158,155,-1,141,155,159,-1,141,159,149,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_4()
		{
			int[] value = {142,148,599,-1,142,599,592,-1,142,152,208,-1,142,208,168,-1,142,168,284,-1,142,284,148,-1,142,592,608,-1,142,608,152,-1,143,156,157,-1,143,157,144,-1,144,157,158,-1,144,158,145,-1,146,147,285,-1,146,285,286,-1,146,607,603,-1,146,603,147,-1,147,148,284,-1,147,284,285,-1,147,603,599,-1,147,599,148,-1,149,159,160,-1,149,160,150,-1,150,160,161,-1,150,161,151,-1,152,153,207,-1,152,207,208,-1,152,608,612,-1,152,612,153,-1,153,154,206,-1,153,206,207,-1,153,612,616,-1,153,616,154,-1,155,158,157,-1,155,157,1837,-1,155,1837,1839,-1,155,1839,1841,-1,155,1841,160,-1,155,160,159,-1,156,1665,1664,-1,156,1664,1675,-1,156,1675,1837,-1,156,1837,157,-1,160,1841,1681,-1,160,1681,1667,-1,160,1667,1668,-1,160,1668,161,-1,162,173,223,-1,162,223,266,-1,162,190,299,-1,162,299,173,-1,162,266,822,-1,162,797,829,-1,162,798,830,-1,162,799,831,-1,162,822,797,-1,162,829,798,-1,162,830,799,-1,162,831,190,-1,163,164,196,-1,163,196,193,-1,163,167,205,-1,163,205,269,-1,163,193,281,-1,163,281,167,-1,163,269,272,-1,163,272,164,-1,164,165,199,-1,164,199,196,-1,164,272,275,-1,164,275,165,-1,165,166,202,-1,165,202,199,-1,165,275,278,-1,165,278,166,-1,166,185,259,-1,166,259,202,-1,166,278,335,-1,166,335,185,-1,167,168,208,-1,167,208,205,-1,167,281,284,-1,167,284,168,-1,169,175,305,-1,169,305,287,-1,169,178,314,-1,169,314,211,-1,169,211,229,-1,169,229,175,-1,169,287,238,-1,169,238,178,-1,170,176,232,-1,170,232,290,-1,170,181,323,-1,170,323,214,-1,170,214,308,-1,170,308,176,-1,170,290,247,-1,170,247,181,-1,171,179,241,-1,171,241,293,-1,171,184,332,-1,171,332,217,-1,171,217,317,-1,171,317,179,-1,171,293,256,-1,171,256,184,-1,172,182,250,-1,172,250,296,-1,172,187,341,-1,172,341,220,-1,172,220,326,-1,172,326,182,-1,172,296,265,-1,172,265,187,-1,173,174,226,-1,173,226,223,-1,173,299,302,-1,173,302,174,-1,174,175,229,-1,174,229,226,-1,174,302,305,-1,174,305,175,-1,176,177,235,-1,176,235,232,-1,176,308,311,-1,176,311,177,-1,177,178,238,-1,177,238,235,-1,177,311,314,-1,177,314,178,-1,179,180,244,-1,179,244,241,-1,179,317,320,-1,179,320,180,-1,180,181,247,-1,180,247,244,-1,180,320,323,-1,180,323,181,-1,182,183,253,-1,182,253,250,-1,182,326,329,-1,182,329,183,-1,183,184,256,-1,183,256,253,-1,183,329,332,-1,183,332,184,-1,185,186,262,-1,185,262,259,-1,185,335,338,-1,185,338,186,-1,186,187,265,-1,186,265,262,-1,186,338,341,-1,186,341,187,-1,188,189,828,-1,188,828,825,-1,188,301,300,-1,188,300,189,-1,188,825,1140,-1,188,1140,938,-1,188,938,1005,-1,188,1005,301,-1,189,190,831,-1,189,831,828,-1,189,300,299,-1,189,299,190,-1,191,192,195,-1,191,195,194,-1,191,283,282,-1,191,282,192,-1,192,193,196,-1,192,196,195,-1,192,282,281,-1,192,281,193,-1,194,195,198,-1,194,198,197,-1,195,196,199,-1,195,199,198,-1,197,198,201,-1,197,201,200,-1,198,199,202,-1,198,202,201,-1,200,201,258,-1,200,258,257,-1,201,202,259,-1,201,259,258,-1,203,204,207,-1,203,207,206,-1,203,271,270,-1,203,270,204,-1,204,205,208,-1,204,208,207,-1,204,270,269,-1,204,269,205,-1,209,210,315,-1,209,315,316,-1,209,227,228,-1,209,228,210,-1,209,316,1253,-1,209,1253,1211,-1,209,1211,1255,-1,209,1255,959,-1,209,959,960,-1,209,960,961,-1,209,961,962,-1,209,962,227,-1,210,211,314,-1,210,314,315,-1,210,228,229,-1,210,229,211,-1,1209,1249,1175,-1,1209,1175,212,-1,1209,212,1173,-1,1175,1249,310,-1,324,325,1176,-1,324,1176,212,-1,324,212,1174,-1,324,1174,213,-1,213,1174,212,-1,213,212,1175,-1,213,1175,310,-1,213,310,309,-1,1176,325,1247,-1,1176,1247,1209,-1,1176,1209,1173,-1,1176,1173,212,-1,213,214,323,-1,213,323,324,-1,213,309,308,-1,213,308,214,-1,215,216,333,-1,215,333,334,-1,215,319,318,-1,215,318,216,-1,215,334,1241,-1,215,1241,1207,-1,215,1207,1243,-1,215,1243,319,-1,216,217,332,-1,216,332,333,-1,216,318,317,-1,216,317,217,-1,218,219,342,-1,218,342,343,-1,218,328,327,-1,218,327,219,-1,218,1204,1237,-1,218,1237,328,-1,219,220,341,-1,219,341,342,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_5()
		{
			int[] value = {219,327,326,-1,219,326,220,-1,221,222,225,-1,221,225,224,-1,221,224,958,-1,221,958,954,-1,221,268,267,-1,221,267,222,-1,221,954,1001,-1,221,1001,268,-1,222,223,226,-1,222,226,225,-1,222,267,266,-1,222,266,223,-1,224,225,228,-1,224,228,227,-1,224,227,962,-1,224,962,958,-1,225,226,229,-1,225,229,228,-1,230,231,234,-1,230,234,233,-1,230,233,1226,-1,230,1226,1224,-1,230,292,291,-1,230,291,231,-1,230,1224,1199,-1,230,1199,292,-1,231,232,235,-1,231,235,234,-1,231,291,290,-1,231,290,232,-1,233,234,237,-1,233,237,236,-1,233,236,1228,-1,233,1228,1226,-1,234,235,238,-1,234,238,237,-1,236,237,288,-1,236,288,289,-1,236,289,1201,-1,236,1201,1228,-1,237,238,287,-1,237,287,288,-1,239,240,243,-1,239,243,242,-1,239,242,1220,-1,239,1220,1218,-1,239,295,294,-1,239,294,240,-1,239,1218,1197,-1,239,1197,295,-1,240,241,244,-1,240,244,243,-1,240,294,293,-1,240,293,241,-1,242,243,246,-1,242,246,245,-1,242,245,1222,-1,242,1222,1220,-1,243,244,247,-1,243,247,246,-1,245,246,291,-1,245,291,292,-1,245,292,1199,-1,245,1199,1222,-1,246,247,290,-1,246,290,291,-1,248,249,252,-1,248,252,251,-1,248,251,1214,-1,248,1214,1212,-1,248,298,297,-1,248,297,249,-1,248,1212,1195,-1,248,1195,298,-1,249,250,253,-1,249,253,252,-1,249,297,296,-1,249,296,250,-1,251,252,255,-1,251,255,254,-1,251,254,1216,-1,251,1216,1214,-1,252,253,256,-1,252,256,255,-1,254,255,294,-1,254,294,295,-1,254,295,1197,-1,254,1197,1216,-1,255,256,293,-1,255,293,294,-1,257,258,261,-1,257,261,260,-1,258,259,262,-1,258,262,261,-1,260,261,264,-1,260,264,263,-1,261,262,265,-1,261,265,264,-1,263,264,297,-1,263,297,298,-1,264,265,296,-1,264,296,297,-1,266,267,821,-1,266,821,822,-1,267,268,820,-1,267,820,821,-1,268,1001,1125,-1,268,1125,820,-1,269,270,273,-1,269,273,272,-1,270,271,274,-1,270,274,273,-1,272,273,276,-1,272,276,275,-1,273,274,277,-1,273,277,276,-1,275,276,279,-1,275,279,278,-1,276,277,280,-1,276,280,279,-1,278,279,336,-1,278,336,335,-1,279,280,337,-1,279,337,336,-1,281,282,285,-1,281,285,284,-1,282,283,286,-1,282,286,285,-1,287,305,306,-1,287,306,288,-1,288,306,307,-1,288,307,289,-1,289,307,1013,-1,289,1013,1014,-1,289,1014,1015,-1,289,1015,1016,-1,289,1016,1230,-1,289,1230,1201,-1,299,300,303,-1,299,303,302,-1,300,301,304,-1,300,304,303,-1,301,1005,1009,-1,301,1009,304,-1,302,303,306,-1,302,306,305,-1,303,304,307,-1,303,307,306,-1,304,1009,1013,-1,304,1013,307,-1,308,309,312,-1,308,312,311,-1,309,310,313,-1,309,313,312,-1,310,1249,1251,-1,310,1251,313,-1,311,312,315,-1,311,315,314,-1,312,313,316,-1,312,316,315,-1,313,1251,1253,-1,313,1253,316,-1,317,318,321,-1,317,321,320,-1,318,319,322,-1,318,322,321,-1,319,1243,1245,-1,319,1245,322,-1,320,321,324,-1,320,324,323,-1,321,322,325,-1,321,325,324,-1,322,1245,1247,-1,322,1247,325,-1,326,327,330,-1,326,330,329,-1,327,328,331,-1,327,331,330,-1,328,1237,1239,-1,328,1239,331,-1,329,330,333,-1,329,333,332,-1,330,331,334,-1,330,334,333,-1,331,1239,1241,-1,331,1241,334,-1,335,336,339,-1,335,339,338,-1,336,337,340,-1,336,340,339,-1,338,339,342,-1,338,342,341,-1,339,340,343,-1,339,343,342,-1,344,345,803,-1,344,803,804,-1,344,461,460,-1,344,460,345,-1,345,346,802,-1,345,802,803,-1,345,460,459,-1,345,459,346,-1,346,347,801,-1,346,801,802,-1,346,459,458,-1,346,458,347,-1,347,458,965,-1,347,965,1144,-1,347,1144,1165,-1,347,1165,801,-1,348,349,813,-1,348,813,810,-1,348,449,448,-1,348,448,349,-1,348,810,1158,-1,348,1158,1143,-1,348,1143,1057,-1,348,1057,449,-1,349,350,816,-1,349,816,813,-1,349,448,447,-1,349,447,350,-1,350,351,819,-1,350,819,816,-1,350,447,446,-1,350,446,351,-1,352,353,357,-1,352,357,1425,-1,352,1425,1426,-1,352,1426,1170,-1,352,1170,1169,-1,352,1169,1168,-1,352,1168,356,-1,352,564,565,-1,352,565,353,-1,353,354,358,-1,353,358,1019,-1,353,1019,1018,-1,353,1018,1017,-1,353,1017,1331,-1,353,1331,1332,-1,353,1332,357,-1,353,565,566,-1,353,566,354,-1,354,355,359,-1,354,359,358,-1,354,566,1475,-1,354,1475,1476,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_6()
		{
			int[] value = {354,1476,355,-1,360,356,1020,-1,1020,356,1168,-1,1020,1168,1021,-1,1021,1168,1169,-1,1021,1169,1170,-1,357,1022,1424,-1,357,1424,1425,-1,357,1263,1262,-1,357,1262,1022,-1,357,1332,1263,-1,358,359,362,-1,358,362,361,-1,358,361,1026,-1,358,1026,1019,-1,360,1020,1066,-1,360,1066,506,-1,361,362,509,-1,361,509,508,-1,361,508,507,-1,361,507,1261,-1,361,1261,1260,-1,361,1260,1023,-1,361,1023,1024,-1,361,1024,1025,-1,361,1025,1026,-1,363,364,368,-1,363,368,367,-1,363,1481,1480,-1,363,1480,570,-1,363,570,364,-1,364,365,369,-1,364,369,1338,-1,364,1338,1337,-1,364,1337,1029,-1,364,1029,1028,-1,364,1028,1027,-1,364,1027,368,-1,364,570,571,-1,364,571,365,-1,365,366,370,-1,365,370,1187,-1,365,1187,1186,-1,365,1186,1185,-1,365,1185,1438,-1,365,1438,1437,-1,365,1437,369,-1,365,571,572,-1,365,572,366,-1,367,368,372,-1,367,372,371,-1,368,1027,1030,-1,368,1030,372,-1,369,1034,1266,-1,369,1266,1267,-1,369,1267,1338,-1,369,1437,1436,-1,369,1436,1034,-1,1438,1185,1339,-1,1339,1185,1186,-1,1339,1186,1035,-1,1035,1186,1187,-1,1035,1187,1036,-1,1036,1187,370,-1,1036,370,373,-1,371,372,554,-1,371,554,553,-1,372,1030,1031,-1,372,1031,1032,-1,372,1032,1033,-1,372,1033,1264,-1,372,1264,1265,-1,372,1265,555,-1,372,555,554,-1,373,556,1103,-1,373,1103,1036,-1,374,375,396,-1,374,396,397,-1,374,1485,1484,-1,374,1484,573,-1,374,573,375,-1,375,376,395,-1,375,395,396,-1,375,573,574,-1,375,574,376,-1,376,377,394,-1,376,394,395,-1,376,574,575,-1,376,575,377,-1,378,379,412,-1,378,412,413,-1,378,567,568,-1,378,568,379,-1,379,380,411,-1,379,411,412,-1,379,568,569,-1,379,569,380,-1,380,381,410,-1,380,410,411,-1,380,569,1487,-1,380,1487,1488,-1,380,1488,381,-1,382,383,387,-1,382,387,386,-1,383,384,388,-1,383,388,387,-1,384,385,389,-1,384,389,388,-1,386,387,391,-1,386,391,390,-1,387,388,392,-1,387,392,391,-1,388,389,393,-1,388,393,392,-1,390,391,627,-1,390,627,623,-1,391,392,631,-1,391,631,627,-1,392,393,635,-1,392,635,631,-1,394,620,624,-1,394,624,395,-1,395,624,628,-1,395,628,396,-1,396,628,632,-1,396,632,397,-1,398,399,403,-1,398,403,402,-1,399,400,404,-1,399,404,403,-1,400,401,405,-1,400,405,404,-1,402,403,407,-1,402,407,406,-1,403,404,408,-1,403,408,407,-1,404,405,409,-1,404,409,408,-1,406,407,643,-1,406,643,639,-1,407,408,647,-1,407,647,643,-1,408,409,651,-1,408,651,647,-1,410,636,640,-1,410,640,411,-1,411,640,644,-1,411,644,412,-1,412,644,648,-1,412,648,413,-1,414,415,480,-1,414,480,481,-1,414,454,455,-1,414,455,415,-1,415,416,479,-1,415,479,480,-1,415,455,456,-1,415,456,416,-1,416,417,478,-1,416,478,479,-1,416,456,457,-1,416,457,417,-1,417,457,1063,-1,417,1063,1037,-1,417,1037,980,-1,417,980,478,-1,418,419,492,-1,418,492,493,-1,418,473,472,-1,418,472,419,-1,419,420,491,-1,419,491,492,-1,419,472,471,-1,419,471,420,-1,420,421,490,-1,420,490,491,-1,420,471,470,-1,420,470,421,-1,421,470,974,-1,421,974,1040,-1,421,1040,989,-1,421,989,490,-1,422,423,504,-1,422,504,505,-1,422,485,484,-1,422,484,423,-1,423,424,503,-1,423,503,504,-1,423,484,483,-1,423,483,424,-1,424,425,502,-1,424,502,503,-1,424,483,482,-1,424,482,425,-1,425,482,983,-1,425,983,1043,-1,425,1043,998,-1,425,998,502,-1,426,427,515,-1,426,515,516,-1,426,497,496,-1,426,496,427,-1,427,428,514,-1,427,514,515,-1,427,496,495,-1,427,495,428,-1,428,495,494,-1,428,494,429,-1,428,429,1049,-1,428,1049,1048,-1,428,1048,1047,-1,428,1047,1046,-1,428,1046,1074,-1,428,1074,514,-1,429,494,992,-1,429,992,1050,-1,429,513,1071,-1,429,1071,1049,-1,429,1050,1327,-1,429,1327,1328,-1,429,1328,513,-1,430,431,527,-1,430,527,528,-1,430,466,467,-1,430,467,431,-1,430,528,1081,-1,430,1081,941,-1,430,941,971,-1,430,971,466,-1,431,432,526,-1,431,526,527,-1,431,467,468,-1,431,468,432,-1,432,433,525,-1,432,525,526,-1,432,468,469,-1,432,469,433,-1,434,435,539,-1,434,539,540,-1,434,520,519,-1,434,519,435,-1,434,540,1090,-1,434,1090,944,-1,434,944,1075,-1,434,1075,520,-1,435,436,538,-1,435,538,539,-1,435,519,518,-1,435,518,436,-1,436,437,537,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_7()
		{
			int[] value = {436,537,538,-1,436,518,517,-1,436,517,437,-1,438,439,551,-1,438,551,552,-1,438,532,531,-1,438,531,439,-1,438,552,1099,-1,438,1099,947,-1,438,947,1084,-1,438,1084,532,-1,439,440,550,-1,439,550,551,-1,439,531,530,-1,439,530,440,-1,440,441,549,-1,440,549,550,-1,440,530,529,-1,440,529,441,-1,442,544,543,-1,442,543,443,-1,442,443,1056,-1,442,1056,1055,-1,442,1055,1054,-1,442,1054,1053,-1,442,563,1400,-1,442,1400,1399,-1,442,1399,950,-1,442,950,1093,-1,442,1093,544,-1,442,1053,1110,-1,442,1110,563,-1,443,444,561,-1,443,561,562,-1,443,543,542,-1,443,542,444,-1,443,562,1107,-1,443,1107,1056,-1,444,445,560,-1,444,560,561,-1,444,542,541,-1,444,541,445,-1,446,447,451,-1,446,451,450,-1,447,448,452,-1,447,452,451,-1,448,449,453,-1,448,453,452,-1,449,1057,1060,-1,449,1060,453,-1,450,451,455,-1,450,455,454,-1,451,452,456,-1,451,456,455,-1,452,453,457,-1,452,457,456,-1,453,1060,1063,-1,453,1063,457,-1,458,459,463,-1,458,463,462,-1,458,462,968,-1,458,968,965,-1,459,460,464,-1,459,464,463,-1,460,461,465,-1,460,465,464,-1,462,463,467,-1,462,467,466,-1,462,466,971,-1,462,971,968,-1,463,464,468,-1,463,468,467,-1,464,465,469,-1,464,469,468,-1,470,471,475,-1,470,475,474,-1,470,474,977,-1,470,977,974,-1,471,472,476,-1,471,476,475,-1,472,473,477,-1,472,477,476,-1,474,475,479,-1,474,479,478,-1,474,478,980,-1,474,980,977,-1,475,476,480,-1,475,480,479,-1,476,477,481,-1,476,481,480,-1,482,483,487,-1,482,487,486,-1,482,486,986,-1,482,986,983,-1,483,484,488,-1,483,488,487,-1,484,485,489,-1,484,489,488,-1,486,487,491,-1,486,491,490,-1,486,490,989,-1,486,989,986,-1,487,488,492,-1,487,492,491,-1,488,489,493,-1,488,493,492,-1,494,495,499,-1,494,499,498,-1,494,498,995,-1,494,995,992,-1,495,496,500,-1,495,500,499,-1,496,497,501,-1,496,501,500,-1,498,499,503,-1,498,503,502,-1,498,502,998,-1,498,998,995,-1,499,500,504,-1,499,504,503,-1,500,501,505,-1,500,505,504,-1,506,1066,1432,-1,506,1432,1268,-1,507,508,511,-1,507,511,510,-1,507,510,1070,-1,507,1070,1361,-1,507,1361,1362,-1,507,1362,1261,-1,508,509,512,-1,508,512,511,-1,510,511,515,-1,510,515,514,-1,510,514,1074,-1,510,1074,1070,-1,511,512,516,-1,511,516,515,-1,513,1328,1453,-1,513,1453,1433,-1,513,1433,1071,-1,517,518,522,-1,517,522,521,-1,518,519,523,-1,518,523,522,-1,519,520,524,-1,519,524,523,-1,520,1075,1078,-1,520,1078,524,-1,521,522,526,-1,521,526,525,-1,522,523,527,-1,522,527,526,-1,523,524,528,-1,523,528,527,-1,524,1078,1081,-1,524,1081,528,-1,529,530,534,-1,529,534,533,-1,530,531,535,-1,530,535,534,-1,531,532,536,-1,531,536,535,-1,532,1084,1087,-1,532,1087,536,-1,533,534,538,-1,533,538,537,-1,534,535,539,-1,534,539,538,-1,535,536,540,-1,535,540,539,-1,536,1087,1090,-1,536,1090,540,-1,541,542,546,-1,541,546,545,-1,542,543,547,-1,542,547,546,-1,543,544,548,-1,543,548,547,-1,544,1093,1096,-1,544,1096,548,-1,545,546,550,-1,545,550,549,-1,546,547,551,-1,546,551,550,-1,547,548,552,-1,547,552,551,-1,548,1096,1099,-1,548,1099,552,-1,553,554,558,-1,553,558,557,-1,554,555,559,-1,554,559,558,-1,555,1265,1389,-1,555,1389,1390,-1,555,1390,1104,-1,555,1104,559,-1,1441,1103,556,-1,1441,556,1188,-1,1441,1188,1274,-1,557,558,561,-1,557,561,560,-1,558,559,562,-1,558,562,561,-1,559,1104,1107,-1,559,1107,562,-1,563,1110,1445,-1,563,1445,1448,-1,563,1448,1400,-1,564,575,574,-1,564,574,565,-1,565,574,573,-1,565,573,566,-1,566,573,1484,-1,566,1484,1483,-1,566,1483,1474,-1,566,1474,1475,-1,567,572,571,-1,567,571,568,-1,568,571,570,-1,568,570,569,-1,569,570,1480,-1,569,1480,1479,-1,569,1479,1486,-1,569,1486,1487,-1,576,577,929,-1,576,929,932,-1,576,639,638,-1,576,638,577,-1,577,578,926,-1,577,926,929,-1,577,638,637,-1,577,637,578,-1,578,579,923,-1,578,923,926,-1,578,637,636,-1,578,636,579,-1,580,581,650,-1,580,650,651,-1,580,604,605,-1,580,605,581,-1,581,582,649,-1,581,649,650,-1,581,605,606,-1,581,606,582,-1,582,583,648,-1,582,648,649,-1,582,606,607,-1,582,607,583,-1,584,585,618,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_8()
		{
			int[] value = {584,618,619,-1,584,623,622,-1,584,622,585,-1,585,586,617,-1,585,617,618,-1,585,622,621,-1,585,621,586,-1,586,587,616,-1,586,616,617,-1,586,621,620,-1,586,620,587,-1,588,589,634,-1,588,634,635,-1,588,934,931,-1,588,931,589,-1,589,590,633,-1,589,633,634,-1,589,931,928,-1,589,928,590,-1,590,591,632,-1,590,632,633,-1,590,928,925,-1,590,925,591,-1,592,593,609,-1,592,609,608,-1,592,599,598,-1,592,598,593,-1,593,594,610,-1,593,610,609,-1,593,598,597,-1,593,597,594,-1,594,595,611,-1,594,611,610,-1,594,597,596,-1,594,596,595,-1,596,597,601,-1,596,601,600,-1,597,598,602,-1,597,602,601,-1,598,599,603,-1,598,603,602,-1,600,601,605,-1,600,605,604,-1,601,602,606,-1,601,606,605,-1,602,603,607,-1,602,607,606,-1,608,609,613,-1,608,613,612,-1,609,610,614,-1,609,614,613,-1,610,611,615,-1,610,615,614,-1,612,613,617,-1,612,617,616,-1,613,614,618,-1,613,618,617,-1,614,615,619,-1,614,619,618,-1,620,621,625,-1,620,625,624,-1,621,622,626,-1,621,626,625,-1,622,623,627,-1,622,627,626,-1,624,625,629,-1,624,629,628,-1,625,626,630,-1,625,630,629,-1,626,627,631,-1,626,631,630,-1,628,629,633,-1,628,633,632,-1,629,630,634,-1,629,634,633,-1,630,631,635,-1,630,635,634,-1,636,637,641,-1,636,641,640,-1,637,638,642,-1,637,642,641,-1,638,639,643,-1,638,643,642,-1,640,641,645,-1,640,645,644,-1,641,642,646,-1,641,646,645,-1,642,643,647,-1,642,647,646,-1,644,645,649,-1,644,649,648,-1,645,646,650,-1,645,650,649,-1,646,647,651,-1,646,651,650,-1,662,760,772,-1,662,772,768,-1,662,769,775,-1,662,775,760,-1,664,761,773,-1,664,773,766,-1,664,767,772,-1,664,772,761,-1,665,762,775,-1,665,775,765,-1,665,764,774,-1,665,774,762,-1,679,763,774,-1,679,774,771,-1,679,770,773,-1,679,773,763,-1,732,768,772,-1,732,772,767,-1,733,771,774,-1,733,774,764,-1,739,765,775,-1,739,775,769,-1,745,766,773,-1,745,773,770,-1,776,788,817,-1,776,817,805,-1,776,800,804,-1,776,804,788,-1,776,805,849,-1,776,849,848,-1,777,789,818,-1,777,818,806,-1,777,805,817,-1,777,817,789,-1,777,806,850,-1,777,850,849,-1,777,849,805,-1,778,790,819,-1,778,819,807,-1,778,806,818,-1,778,818,790,-1,778,851,850,-1,778,850,806,-1,779,782,802,-1,779,802,801,-1,779,801,1165,-1,779,1165,1155,-1,779,808,811,-1,779,811,782,-1,779,1155,1162,-1,779,1162,808,-1,780,783,811,-1,780,811,808,-1,780,808,1162,-1,780,1162,1152,-1,780,809,812,-1,780,812,783,-1,780,1152,1159,-1,780,1159,809,-1,781,784,812,-1,781,812,809,-1,781,809,1159,-1,781,1159,1149,-1,781,810,813,-1,781,813,784,-1,781,1149,1158,-1,781,1158,810,-1,782,785,803,-1,782,803,802,-1,782,811,785,-1,783,786,814,-1,783,814,811,-1,783,812,815,-1,783,815,786,-1,784,787,812,-1,784,813,816,-1,784,816,787,-1,785,788,804,-1,785,804,803,-1,785,811,814,-1,785,814,817,-1,785,817,788,-1,786,789,817,-1,786,817,814,-1,786,815,818,-1,786,818,789,-1,787,790,818,-1,787,818,815,-1,787,815,812,-1,787,816,819,-1,787,819,790,-1,791,794,821,-1,791,821,820,-1,791,820,1125,-1,791,1125,1113,-1,791,823,794,-1,791,1113,1132,-1,791,1132,823,-1,792,795,826,-1,792,826,823,-1,792,823,1132,-1,792,1132,1117,-1,792,824,827,-1,792,827,795,-1,792,1117,1136,-1,792,1136,824,-1,793,796,824,-1,793,824,1136,-1,793,1136,1121,-1,793,825,828,-1,793,828,796,-1,793,1121,1140,-1,793,1140,825,-1,794,797,822,-1,794,822,821,-1,794,823,826,-1,794,826,829,-1,794,829,797,-1,795,798,829,-1,795,829,826,-1,795,827,830,-1,795,830,798,-1,796,799,830,-1,796,830,827,-1,796,827,824,-1,796,828,831,-1,796,831,799,-1,832,833,861,-1,832,861,860,-1,832,856,857,-1,832,857,833,-1,833,834,862,-1,833,862,861,-1,833,857,858,-1,833,858,834,-1,834,835,863,-1,834,863,862,-1,834,858,859,-1,834,859,835,-1,836,837,873,-1,836,873,872,-1,836,868,869,-1,836,869,837,-1,837,838,874,-1,837,874,873,-1,837,869,870,-1,837,870,838,-1,838,839,875,-1,838,875,874,-1,838,870,871,-1,838,871,839,-1,840,841,885,-1,840,885,884,-1,840,880,881,-1,840,881,841,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_9()
		{
			int[] value = {841,842,886,-1,841,886,885,-1,841,881,882,-1,841,882,842,-1,842,843,887,-1,842,887,886,-1,842,882,883,-1,842,883,843,-1,844,845,897,-1,844,897,896,-1,844,892,893,-1,844,893,845,-1,845,846,898,-1,845,898,897,-1,845,893,894,-1,845,894,846,-1,846,847,899,-1,846,899,898,-1,846,894,895,-1,846,895,847,-1,848,849,853,-1,848,853,852,-1,849,850,854,-1,849,854,853,-1,850,851,855,-1,850,855,854,-1,852,853,857,-1,852,857,856,-1,853,854,858,-1,853,858,857,-1,854,855,859,-1,854,859,858,-1,860,861,865,-1,860,865,864,-1,861,862,866,-1,861,866,865,-1,862,863,867,-1,862,867,866,-1,864,865,869,-1,864,869,868,-1,865,866,870,-1,865,870,869,-1,866,867,871,-1,866,871,870,-1,872,873,877,-1,872,877,876,-1,873,874,878,-1,873,878,877,-1,874,875,879,-1,874,879,878,-1,876,877,881,-1,876,881,880,-1,877,878,882,-1,877,882,881,-1,878,879,883,-1,878,883,882,-1,884,885,889,-1,884,889,888,-1,885,886,890,-1,885,890,889,-1,886,887,891,-1,886,891,890,-1,888,889,893,-1,888,893,892,-1,889,890,894,-1,889,894,893,-1,890,891,895,-1,890,895,894,-1,896,897,901,-1,896,901,900,-1,897,898,902,-1,897,902,901,-1,898,899,903,-1,898,903,902,-1,900,901,905,-1,900,905,904,-1,901,902,906,-1,901,906,905,-1,902,903,907,-1,902,907,906,-1,908,909,910,-1,908,910,1673,-1,908,1673,1672,-1,908,1672,1679,-1,908,1679,1851,-1,908,1851,1852,-1,908,1852,1853,-1,908,1853,1677,-1,908,1677,1659,-1,908,1659,1660,-1,908,913,912,-1,908,912,909,-1,909,912,911,-1,909,911,910,-1,911,912,915,-1,911,915,914,-1,912,913,916,-1,912,916,915,-1,914,915,918,-1,914,918,917,-1,915,916,919,-1,915,919,918,-1,917,918,933,-1,917,933,934,-1,918,919,932,-1,918,932,933,-1,920,925,924,-1,920,924,921,-1,921,924,923,-1,921,923,922,-1,923,924,927,-1,923,927,926,-1,924,925,928,-1,924,928,927,-1,926,927,930,-1,926,930,929,-1,927,928,931,-1,927,931,930,-1,929,930,933,-1,929,933,932,-1,930,931,934,-1,930,934,933,-1,935,936,1138,-1,935,1138,1137,-1,935,1008,1007,-1,935,1007,936,-1,935,1137,1282,-1,935,1282,1190,-1,935,1190,1234,-1,935,1234,1008,-1,936,937,1139,-1,936,1139,1138,-1,936,1007,1006,-1,936,1006,937,-1,937,938,1140,-1,937,1140,1139,-1,937,1006,1005,-1,937,1005,938,-1,939,969,1303,-1,939,1303,1291,-1,939,1083,1229,-1,939,1229,1202,-1,939,1202,1231,-1,939,1231,969,-1,939,1291,1374,-1,939,1374,1083,-1,940,941,1081,-1,940,1081,1082,-1,940,970,971,-1,940,971,941,-1,940,1082,1373,-1,940,1373,1290,-1,940,1290,1304,-1,940,1304,970,-1,942,1077,1369,-1,942,1369,1293,-1,942,1092,1223,-1,942,1223,1200,-1,942,1200,1225,-1,942,1225,1077,-1,942,1293,1380,-1,942,1380,1092,-1,943,944,1090,-1,943,1090,1091,-1,943,1076,1075,-1,943,1075,944,-1,943,1091,1379,-1,943,1379,1292,-1,943,1292,1370,-1,943,1370,1076,-1,945,1086,1375,-1,945,1375,1295,-1,945,1101,1217,-1,945,1217,1198,-1,945,1198,1219,-1,945,1219,1086,-1,945,1295,1386,-1,945,1386,1101,-1,946,947,1099,-1,946,1099,1100,-1,946,1085,1084,-1,946,1084,947,-1,946,1100,1385,-1,946,1385,1294,-1,946,1294,1376,-1,946,1376,1085,-1,948,1095,1381,-1,948,1381,1297,-1,948,1112,1403,-1,948,1403,1402,-1,948,1194,1213,-1,948,1213,1095,-1,948,1297,1298,-1,948,1298,1112,-1,948,1402,1194,-1,949,950,1399,-1,949,1399,1451,-1,949,1094,1093,-1,949,1093,950,-1,949,1296,1382,-1,949,1382,1094,-1,949,1451,1296,-1,951,952,956,-1,951,956,955,-1,951,955,1257,-1,951,1257,1259,-1,951,1004,1003,-1,951,1003,952,-1,951,1259,1192,-1,951,1192,1004,-1,952,953,957,-1,952,957,956,-1,952,1003,1002,-1,952,1002,953,-1,953,954,958,-1,953,958,957,-1,953,1002,1001,-1,953,1001,954,-1,955,956,960,-1,955,960,959,-1,955,959,1255,-1,955,1255,1257,-1,956,957,961,-1,956,961,960,-1,957,958,962,-1,957,962,961,-1,963,966,1233,-1,963,1233,1235,-1,963,1146,1408,-1,963,1408,1299,-1,963,1235,1191,-1,963,1191,1146,-1,963,1299,1301,-1,963,1301,966,-1,964,965,968,-1,964,968,967,-1,964,967,1302,-1,964,1302,1300,-1,964,1145,1144,-1,964,1144,965,-1,964,1300,1409,-1,964,1409,1145,-1,966,969,1231,-1,966,1231,1233,-1,966,1301,1303,-1,966,1303,969,-1,967,968,971,-1,967,971,970,-1,967,970,1304,-1,967,1304,1302,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_10()
		{
			int[] value = {972,975,1250,-1,972,1250,1248,-1,972,1179,1042,-1,972,1042,1177,-1,972,1177,1344,-1,972,1344,1305,-1,1248,1208,1178,-1,1248,1178,1042,-1,1248,1042,1179,-1,1248,1179,972,-1,972,1305,1307,-1,972,1307,975,-1,973,974,977,-1,973,977,976,-1,973,976,1308,-1,973,1308,1306,-1,973,1041,1040,-1,973,1040,974,-1,973,1306,1345,-1,973,1345,1041,-1,975,978,1252,-1,975,1252,1250,-1,975,1307,1309,-1,975,1309,978,-1,976,977,980,-1,976,980,979,-1,976,979,1310,-1,976,1310,1308,-1,978,1039,1210,-1,978,1210,1252,-1,978,1309,1342,-1,978,1342,1039,-1,979,980,1037,-1,979,1037,1038,-1,979,1038,1343,-1,979,1343,1310,-1,981,984,1244,-1,981,1244,1242,-1,981,1045,1346,-1,981,1346,1311,-1,981,1242,1206,-1,981,1206,1045,-1,981,1311,1313,-1,981,1313,984,-1,982,983,986,-1,982,986,985,-1,982,985,1314,-1,982,1314,1312,-1,982,1044,1043,-1,982,1043,983,-1,982,1312,1347,-1,982,1347,1044,-1,984,987,1246,-1,984,1246,1244,-1,984,1313,1315,-1,984,1315,987,-1,985,986,989,-1,985,989,988,-1,985,988,1316,-1,985,1316,1314,-1,1178,1208,1246,-1,1178,1246,987,-1,1178,987,1180,-1,1178,1180,1042,-1,987,1315,1177,-1,987,1177,1042,-1,987,1042,1180,-1,1177,1315,1344,-1,988,989,1040,-1,988,1040,1041,-1,988,1041,1345,-1,988,1345,1316,-1,990,993,1238,-1,990,1238,1236,-1,990,1052,1349,-1,990,1349,1317,-1,990,1236,1205,-1,990,1205,1052,-1,990,1317,1319,-1,990,1319,993,-1,991,992,995,-1,991,995,994,-1,991,994,1320,-1,991,1320,1318,-1,991,1051,1050,-1,991,1050,992,-1,991,1318,1348,-1,991,1348,1051,-1,993,996,1240,-1,993,1240,1238,-1,993,1319,1321,-1,993,1321,996,-1,994,995,998,-1,994,998,997,-1,994,997,1322,-1,994,1322,1320,-1,996,1045,1206,-1,996,1206,1240,-1,996,1321,1346,-1,996,1346,1045,-1,997,998,1043,-1,997,1043,1044,-1,997,1044,1347,-1,997,1347,1322,-1,999,1000,1457,-1,999,1457,1350,-1,999,1052,1326,-1,999,1326,1325,-1,1172,1454,1455,-1,1172,1455,1000,-1,1172,1000,999,-1,999,1325,1324,-1,999,1324,1172,-1,999,1350,1349,-1,999,1349,1052,-1,1000,1329,1457,-1,1000,1455,1329,-1,1001,1002,1126,-1,1001,1126,1125,-1,1002,1003,1127,-1,1002,1127,1126,-1,1003,1004,1128,-1,1003,1128,1127,-1,1004,1192,1288,-1,1004,1288,1128,-1,1005,1006,1010,-1,1005,1010,1009,-1,1006,1007,1011,-1,1006,1011,1010,-1,1007,1008,1012,-1,1007,1012,1011,-1,1008,1234,1232,-1,1008,1232,1012,-1,1009,1010,1014,-1,1009,1014,1013,-1,1010,1011,1015,-1,1010,1015,1014,-1,1011,1012,1016,-1,1011,1016,1015,-1,1012,1232,1230,-1,1012,1230,1016,-1,1017,1018,1025,-1,1017,1025,1024,-1,1017,1024,1023,-1,1017,1023,1330,-1,1017,1330,1331,-1,1018,1019,1026,-1,1018,1026,1025,-1,1020,1021,1181,-1,1020,1181,1360,-1,1020,1360,1359,-1,1020,1359,1066,-1,1021,1170,1426,-1,1021,1426,1335,-1,1021,1335,1360,-1,1021,1360,1181,-1,1022,1067,1333,-1,1022,1333,1334,-1,1022,1262,1363,-1,1022,1334,1424,-1,1022,1363,1364,-1,1022,1364,1067,-1,1023,1260,1330,-1,1027,1028,1031,-1,1027,1031,1030,-1,1028,1029,1032,-1,1028,1032,1031,-1,1029,1337,1336,-1,1029,1336,1033,-1,1029,1033,1032,-1,1033,1336,1264,-1,1034,1102,1387,-1,1034,1387,1388,-1,1034,1340,1341,-1,1034,1341,1102,-1,1034,1388,1266,-1,1034,1436,1340,-1,1035,1036,1103,-1,1035,1103,1394,-1,1035,1394,1393,-1,1035,1393,1339,-1,1037,1063,1064,-1,1037,1064,1038,-1,1038,1064,1356,-1,1038,1356,1343,-1,1039,1065,1254,-1,1039,1254,1210,-1,1039,1342,1355,-1,1039,1355,1065,-1,1046,1047,1073,-1,1046,1073,1074,-1,1047,1048,1072,-1,1047,1072,1073,-1,1048,1049,1071,-1,1048,1071,1072,-1,1050,1051,1456,-1,1050,1456,1327,-1,1051,1348,1456,-1,1052,1205,1326,-1,1053,1054,1109,-1,1053,1109,1110,-1,1054,1055,1108,-1,1054,1108,1109,-1,1055,1056,1107,-1,1055,1107,1108,-1,1057,1058,1061,-1,1057,1061,1060,-1,1057,1143,1142,-1,1057,1142,1058,-1,1058,1142,1406,-1,1058,1406,1352,-1,1058,1352,1354,-1,1058,1354,1061,-1,1059,1062,1353,-1,1059,1353,1351,-1,1059,1141,1193,-1,1059,1193,1258,-1,1059,1258,1256,-1,1059,1256,1062,-1,1059,1351,1407,-1,1059,1407,1141,-1,1060,1061,1064,-1,1060,1064,1063,-1,1061,1354,1356,-1,1061,1356,1064,-1,1062,1065,1355,-1,1062,1355,1353,-1,1062,1256,1254,-1,1062,1254,1065,-1,1066,1359,1432,-1,1067,1171,1358,-1,1067,1358,1357,-1,1067,1357,1333,-1,1067,1364,1428,-1,1067,1428,1427,-1,1067,1427,1171,-1,1068,1171,1367,-1,1068,1367,1368,-1,1068,1172,1270,-1,1068,1270,1271,-1,1068,1271,1431,-1,1068,1368,1434,-1,1068,1431,1430,-1,1068,1430,1171,-1,1068,1434,1435,-1,1068,1435,1172,-1,1069,1070,1074,-1,1069,1074,1073,-1,1069,1073,1072,-1,1069,1072,1182,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_11()
		{
			int[] value = {1069,1182,1365,-1,1069,1365,1366,-1,1069,1366,1429,-1,1069,1429,1361,-1,1069,1361,1070,-1,1071,1433,1365,-1,1071,1365,1182,-1,1071,1182,1072,-1,1075,1076,1079,-1,1075,1079,1078,-1,1076,1370,1372,-1,1076,1372,1079,-1,1077,1080,1371,-1,1077,1371,1369,-1,1077,1225,1227,-1,1077,1227,1080,-1,1078,1079,1082,-1,1078,1082,1081,-1,1079,1372,1373,-1,1079,1373,1082,-1,1080,1083,1374,-1,1080,1374,1371,-1,1080,1227,1229,-1,1080,1229,1083,-1,1084,1085,1088,-1,1084,1088,1087,-1,1085,1376,1378,-1,1085,1378,1088,-1,1086,1089,1377,-1,1086,1377,1375,-1,1086,1219,1221,-1,1086,1221,1089,-1,1087,1088,1091,-1,1087,1091,1090,-1,1088,1378,1379,-1,1088,1379,1091,-1,1089,1092,1380,-1,1089,1380,1377,-1,1089,1221,1223,-1,1089,1223,1092,-1,1093,1094,1097,-1,1093,1097,1096,-1,1094,1382,1384,-1,1094,1384,1097,-1,1095,1098,1383,-1,1095,1383,1381,-1,1095,1213,1215,-1,1095,1215,1098,-1,1096,1097,1100,-1,1096,1100,1099,-1,1097,1384,1385,-1,1097,1385,1100,-1,1098,1101,1386,-1,1098,1386,1383,-1,1098,1215,1217,-1,1098,1217,1101,-1,1102,1183,1442,-1,1102,1442,1443,-1,1102,1341,1392,-1,1102,1392,1391,-1,1102,1391,1183,-1,1102,1443,1387,-1,1103,1441,1394,-1,1104,1105,1108,-1,1104,1108,1107,-1,1104,1390,1444,-1,1104,1444,1105,-1,1105,1397,1398,-1,1105,1398,1109,-1,1105,1109,1108,-1,1105,1444,1397,-1,1106,1183,1440,-1,1106,1440,1439,-1,1106,1184,1447,-1,1106,1447,1446,-1,1106,1273,1272,-1,1106,1272,1184,-1,1106,1395,1396,-1,1106,1396,1183,-1,1106,1439,1273,-1,1106,1446,1395,-1,1109,1398,1445,-1,1109,1445,1110,-1,1111,1112,1298,-1,1111,1298,1452,-1,1111,1401,1450,-1,1111,1450,1449,-1,1111,1449,1184,-1,1111,1184,1112,-1,1111,1452,1401,-1,1112,1184,1404,-1,1112,1404,1403,-1,1113,1114,1131,-1,1113,1131,1132,-1,1113,1125,1126,-1,1113,1126,1114,-1,1114,1115,1130,-1,1114,1130,1131,-1,1114,1126,1127,-1,1114,1127,1115,-1,1115,1116,1129,-1,1115,1129,1130,-1,1115,1127,1128,-1,1115,1128,1116,-1,1116,1128,1288,-1,1116,1288,1280,-1,1116,1280,1286,-1,1116,1286,1129,-1,1117,1118,1135,-1,1117,1135,1136,-1,1117,1132,1131,-1,1117,1131,1118,-1,1118,1119,1134,-1,1118,1134,1135,-1,1118,1131,1130,-1,1118,1130,1119,-1,1119,1120,1133,-1,1119,1133,1134,-1,1119,1130,1129,-1,1119,1129,1120,-1,1120,1129,1286,-1,1120,1286,1278,-1,1120,1278,1284,-1,1120,1284,1133,-1,1121,1122,1139,-1,1121,1139,1140,-1,1121,1136,1135,-1,1121,1135,1122,-1,1122,1123,1138,-1,1122,1138,1139,-1,1122,1135,1134,-1,1122,1134,1123,-1,1123,1124,1137,-1,1123,1137,1138,-1,1123,1134,1133,-1,1123,1133,1124,-1,1124,1133,1284,-1,1124,1284,1276,-1,1124,1276,1282,-1,1124,1282,1137,-1,1141,1156,1289,-1,1141,1289,1193,-1,1141,1407,1417,-1,1141,1417,1156,-1,1142,1143,1158,-1,1142,1158,1157,-1,1142,1157,1416,-1,1142,1416,1406,-1,1144,1145,1166,-1,1144,1166,1165,-1,1145,1409,1422,-1,1145,1422,1166,-1,1146,1167,1423,-1,1146,1423,1408,-1,1146,1191,1283,-1,1146,1283,1167,-1,1147,1156,1417,-1,1147,1417,1411,-1,1147,1161,1287,-1,1147,1287,1281,-1,1147,1281,1289,-1,1147,1289,1156,-1,1147,1411,1419,-1,1147,1419,1161,-1,1148,1149,1159,-1,1148,1159,1160,-1,1148,1157,1158,-1,1148,1158,1149,-1,1148,1160,1418,-1,1148,1418,1410,-1,1148,1410,1416,-1,1148,1416,1157,-1,1150,1161,1419,-1,1150,1419,1413,-1,1150,1164,1285,-1,1150,1285,1279,-1,1150,1279,1287,-1,1150,1287,1161,-1,1150,1413,1421,-1,1150,1421,1164,-1,1151,1152,1162,-1,1151,1162,1163,-1,1151,1160,1159,-1,1151,1159,1152,-1,1151,1163,1420,-1,1151,1420,1412,-1,1151,1412,1418,-1,1151,1418,1160,-1,1153,1164,1421,-1,1153,1421,1415,-1,1153,1167,1283,-1,1153,1283,1277,-1,1153,1277,1285,-1,1153,1285,1164,-1,1153,1415,1423,-1,1153,1423,1167,-1,1154,1155,1165,-1,1154,1165,1166,-1,1154,1163,1162,-1,1154,1162,1155,-1,1154,1166,1422,-1,1154,1422,1414,-1,1154,1414,1420,-1,1154,1420,1163,-1,1171,1427,1367,-1,1171,1430,1358,-1,1172,1324,1270,-1,1172,1435,1454,-1,1183,1391,1440,-1,1183,1396,1442,-1,1184,1272,1404,-1,1184,1449,1447,-1,1190,1191,1235,-1,1190,1235,1234,-1,1190,1282,1283,-1,1190,1283,1191,-1,1192,1193,1289,-1,1192,1289,1288,-1,1192,1259,1258,-1,1192,1258,1193,-1,1194,1195,1212,-1,1194,1212,1213,-1,1194,1196,1195,-1,1194,1402,1405,-1,1194,1405,1196,-1,1197,1198,1217,-1,1197,1217,1216,-1,1197,1218,1219,-1,1197,1219,1198,-1,1199,1200,1223,-1,1199,1223,1222,-1,1199,1224,1225,-1,1199,1225,1200,-1,1201,1202,1229,-1,1201,1229,1228,-1,1201,1230,1231,-1,1201,1231,1202,-1,1203,1205,1204,-1,1203,1323,1326,-1,1203,1326,1205,-1,1204,1205,1236,-1,1204,1236,1237,-1,1206,1207,1241,-1,1206,1241,1240,-1,1206,1242,1243,-1,1206,1243,1207,-1,1208,1209,1247,-1,1208,1247,1246,-1,1208,1248,1249,-1,1208,1249,1209,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_12()
		{
			int[] value = {1210,1211,1253,-1,1210,1253,1252,-1,1210,1254,1255,-1,1210,1255,1211,-1,1212,1214,1215,-1,1212,1215,1213,-1,1214,1216,1217,-1,1214,1217,1215,-1,1218,1220,1221,-1,1218,1221,1219,-1,1220,1222,1223,-1,1220,1223,1221,-1,1224,1226,1227,-1,1224,1227,1225,-1,1226,1228,1229,-1,1226,1229,1227,-1,1230,1232,1233,-1,1230,1233,1231,-1,1232,1234,1235,-1,1232,1235,1233,-1,1236,1238,1239,-1,1236,1239,1237,-1,1238,1240,1241,-1,1238,1241,1239,-1,1242,1244,1245,-1,1242,1245,1243,-1,1244,1246,1247,-1,1244,1247,1245,-1,1248,1250,1251,-1,1248,1251,1249,-1,1250,1252,1253,-1,1250,1253,1251,-1,1254,1256,1257,-1,1254,1257,1255,-1,1256,1258,1259,-1,1256,1259,1257,-1,1260,1261,1262,-1,1260,1262,1263,-1,1260,1263,1332,-1,1260,1332,1330,-1,1261,1362,1363,-1,1261,1363,1262,-1,1264,1267,1266,-1,1264,1266,1265,-1,1264,1336,1338,-1,1264,1338,1267,-1,1265,1266,1388,-1,1265,1388,1389,-1,1268,1271,1270,-1,1268,1270,1269,-1,1268,1432,1431,-1,1268,1431,1271,-1,1269,1270,1324,-1,1269,1324,1323,-1,1272,1273,1274,-1,1272,1274,1275,-1,1272,1275,1405,-1,1272,1405,1404,-1,1273,1439,1441,-1,1273,1441,1274,-1,1276,1277,1283,-1,1276,1283,1282,-1,1276,1284,1285,-1,1276,1285,1277,-1,1278,1279,1285,-1,1278,1285,1284,-1,1278,1286,1287,-1,1278,1287,1279,-1,1280,1281,1287,-1,1280,1287,1286,-1,1280,1288,1289,-1,1280,1289,1281,-1,1290,1291,1303,-1,1290,1303,1304,-1,1290,1373,1374,-1,1290,1374,1291,-1,1292,1293,1369,-1,1292,1369,1370,-1,1292,1379,1380,-1,1292,1380,1293,-1,1294,1295,1375,-1,1294,1375,1376,-1,1294,1385,1386,-1,1294,1386,1295,-1,1296,1297,1381,-1,1296,1381,1382,-1,1296,1298,1297,-1,1296,1451,1452,-1,1296,1452,1298,-1,1299,1300,1302,-1,1299,1302,1301,-1,1299,1408,1409,-1,1299,1409,1300,-1,1301,1302,1304,-1,1301,1304,1303,-1,1305,1306,1308,-1,1305,1308,1307,-1,1305,1344,1345,-1,1305,1345,1306,-1,1307,1308,1310,-1,1307,1310,1309,-1,1309,1310,1343,-1,1309,1343,1342,-1,1311,1312,1314,-1,1311,1314,1313,-1,1311,1346,1347,-1,1311,1347,1312,-1,1313,1314,1316,-1,1313,1316,1315,-1,1315,1316,1345,-1,1315,1345,1344,-1,1317,1318,1320,-1,1317,1320,1319,-1,1317,1349,1348,-1,1317,1348,1318,-1,1319,1320,1322,-1,1319,1322,1321,-1,1321,1322,1347,-1,1321,1347,1346,-1,1323,1324,1325,-1,1323,1325,1326,-1,1327,1329,1328,-1,1327,1456,1457,-1,1327,1457,1329,-1,1328,1329,1455,-1,1328,1455,1453,-1,1330,1332,1331,-1,1333,1335,1334,-1,1333,1357,1360,-1,1333,1360,1335,-1,1334,1335,1426,-1,1334,1426,1424,-1,1336,1337,1338,-1,1339,1340,1436,-1,1339,1436,1438,-1,1339,1341,1340,-1,1339,1393,1392,-1,1339,1392,1341,-1,1342,1343,1356,-1,1342,1356,1355,-1,1348,1349,1350,-1,1348,1350,1457,-1,1348,1457,1456,-1,1351,1352,1406,-1,1351,1406,1407,-1,1351,1353,1354,-1,1351,1354,1352,-1,1353,1355,1356,-1,1353,1356,1354,-1,1357,1358,1359,-1,1357,1359,1360,-1,1358,1430,1432,-1,1358,1432,1359,-1,1361,1364,1363,-1,1361,1363,1362,-1,1361,1429,1428,-1,1361,1428,1364,-1,1365,1368,1367,-1,1365,1367,1366,-1,1365,1433,1434,-1,1365,1434,1368,-1,1366,1367,1427,-1,1366,1427,1429,-1,1369,1371,1372,-1,1369,1372,1370,-1,1371,1374,1373,-1,1371,1373,1372,-1,1375,1377,1378,-1,1375,1378,1376,-1,1377,1380,1379,-1,1377,1379,1378,-1,1381,1383,1384,-1,1381,1384,1382,-1,1383,1386,1385,-1,1383,1385,1384,-1,1387,1390,1389,-1,1387,1389,1388,-1,1387,1443,1444,-1,1387,1444,1390,-1,1391,1392,1393,-1,1391,1393,1394,-1,1391,1394,1441,-1,1391,1441,1440,-1,1395,1398,1397,-1,1395,1397,1396,-1,1395,1446,1445,-1,1395,1445,1398,-1,1396,1397,1444,-1,1396,1444,1442,-1,1399,1400,1401,-1,1399,1401,1452,-1,1399,1452,1451,-1,1400,1448,1450,-1,1400,1450,1401,-1,1402,1403,1404,-1,1402,1404,1405,-1,1406,1416,1417,-1,1406,1417,1407,-1,1408,1423,1422,-1,1408,1422,1409,-1,1410,1411,1417,-1,1410,1417,1416,-1,1410,1418,1419,-1,1410,1419,1411,-1,1412,1413,1419,-1,1412,1419,1418,-1,1412,1420,1421,-1,1412,1421,1413,-1,1414,1415,1421,-1,1414,1421,1420,-1,1414,1422,1423,-1,1414,1423,1415,-1,1424,1426,1425,-1,1427,1428,1429,-1,1430,1431,1432,-1,1433,1435,1434,-1,1433,1453,1454,-1,1433,1454,1435,-1,1436,1437,1438,-1,1439,1440,1441,-1,1442,1444,1443,-1,1445,1446,1447,-1,1445,1447,1449,-1,1445,1449,1448,-1,1448,1449,1450,-1,1453,1455,1454,-1,1458,1461,1460,-1,1458,1460,1459,-1,1458,1469,1598,-1,1458,1598,1581,-1,1458,1581,1580,-1,1458,1580,1461,-1,1461,1580,1562,-1,1461,1562,1478,-1,1462,1465,1464,-1,1462,1464,1463,-1,1462,1477,1492,-1,1462,1492,1545,-1,1462,1545,1544,-1,1462,1544,1465,-1,1465,1544,1527,-1,1465,1527,1470,-1,1466,1469,1468,-1,1466,1468,1467,-1,1466,1489,1616,-1,1466,1616,1599,-1,1466,1599,1598,-1,1466,1598,1469,-1,1470,1473,1472,-1,1470,1472,1471,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_13()
		{
			int[] value = {1470,1527,1526,-1,1470,1526,1473,-1,1473,1526,1510,-1,1473,1510,1482,-1,1474,1477,1476,-1,1474,1476,1475,-1,1474,1483,1509,-1,1474,1509,1491,-1,1474,1491,1492,-1,1474,1492,1477,-1,1478,1479,1480,-1,1478,1480,1481,-1,1478,1562,1563,-1,1478,1563,1479,-1,1479,1563,1617,-1,1479,1617,1486,-1,1482,1483,1484,-1,1482,1484,1485,-1,1482,1510,1509,-1,1482,1509,1483,-1,1486,1489,1488,-1,1486,1488,1487,-1,1486,1617,1616,-1,1486,1616,1489,-1,1490,1543,1542,-1,1490,1542,1560,-1,1490,1560,1644,-1,1490,1642,1643,-1,1490,1643,1543,-1,1490,1644,1658,-1,1490,1658,1657,-1,1490,1657,1656,-1,1490,1656,1642,-1,1491,1493,1494,-1,1491,1494,1492,-1,1491,1509,1511,-1,1491,1511,1493,-1,1492,1494,1547,-1,1492,1547,1545,-1,1493,1495,1496,-1,1493,1496,1494,-1,1493,1511,1513,-1,1493,1513,1495,-1,1494,1496,1549,-1,1494,1549,1547,-1,1495,1497,1498,-1,1495,1498,1496,-1,1495,1513,1515,-1,1495,1515,1497,-1,1496,1498,1551,-1,1496,1551,1549,-1,1497,1499,1500,-1,1497,1500,1498,-1,1497,1515,1517,-1,1497,1517,1499,-1,1498,1500,1553,-1,1498,1553,1551,-1,1499,1501,1502,-1,1499,1502,1500,-1,1499,1517,1519,-1,1499,1519,1501,-1,1500,1502,1555,-1,1500,1555,1553,-1,1501,1503,1504,-1,1501,1504,1502,-1,1501,1519,1521,-1,1501,1521,1503,-1,1502,1504,1557,-1,1502,1557,1555,-1,1503,1505,1506,-1,1503,1506,1504,-1,1503,1521,1523,-1,1503,1523,1505,-1,1504,1506,1559,-1,1504,1559,1557,-1,1505,1507,1508,-1,1505,1508,1506,-1,1505,1523,1525,-1,1505,1525,1507,-1,1506,1508,1561,-1,1506,1561,1559,-1,1507,1525,1634,-1,1507,1634,1635,-1,1507,1635,1647,-1,1507,1647,1508,-1,1508,1647,1648,-1,1508,1648,1561,-1,1509,1510,1512,-1,1509,1512,1511,-1,1510,1526,1528,-1,1510,1528,1512,-1,1511,1512,1514,-1,1511,1514,1513,-1,1512,1528,1530,-1,1512,1530,1514,-1,1513,1514,1516,-1,1513,1516,1515,-1,1514,1530,1532,-1,1514,1532,1516,-1,1515,1516,1518,-1,1515,1518,1517,-1,1516,1532,1534,-1,1516,1534,1518,-1,1517,1518,1520,-1,1517,1520,1519,-1,1518,1534,1536,-1,1518,1536,1520,-1,1519,1520,1522,-1,1519,1522,1521,-1,1520,1536,1538,-1,1520,1538,1522,-1,1521,1522,1524,-1,1521,1524,1523,-1,1522,1538,1540,-1,1522,1540,1524,-1,1523,1524,1646,-1,1523,1646,1525,-1,1524,1540,1645,-1,1524,1645,1646,-1,1525,1643,1642,-1,1525,1642,1634,-1,1525,1646,1643,-1,1526,1527,1529,-1,1526,1529,1528,-1,1527,1544,1546,-1,1527,1546,1529,-1,1528,1529,1531,-1,1528,1531,1530,-1,1529,1546,1548,-1,1529,1548,1531,-1,1530,1531,1533,-1,1530,1533,1532,-1,1531,1548,1550,-1,1531,1550,1533,-1,1532,1533,1535,-1,1532,1535,1534,-1,1533,1550,1552,-1,1533,1552,1535,-1,1534,1535,1537,-1,1534,1537,1536,-1,1535,1552,1554,-1,1535,1554,1537,-1,1536,1537,1539,-1,1536,1539,1538,-1,1537,1554,1556,-1,1537,1556,1539,-1,1538,1539,1541,-1,1538,1541,1540,-1,1539,1556,1558,-1,1539,1558,1541,-1,1540,1541,1542,-1,1540,1542,1645,-1,1541,1558,1560,-1,1541,1560,1542,-1,1542,1543,1645,-1,1543,1643,1646,-1,1543,1646,1645,-1,1544,1545,1547,-1,1544,1547,1546,-1,1546,1547,1549,-1,1546,1549,1548,-1,1548,1549,1551,-1,1548,1551,1550,-1,1550,1551,1553,-1,1550,1553,1552,-1,1552,1553,1555,-1,1552,1555,1554,-1,1554,1555,1557,-1,1554,1557,1556,-1,1556,1557,1559,-1,1556,1559,1558,-1,1558,1559,1561,-1,1558,1561,1560,-1,1560,1561,1648,-1,1560,1648,1644,-1,1562,1564,1565,-1,1562,1565,1563,-1,1562,1580,1582,-1,1562,1582,1564,-1,1563,1565,1619,-1,1563,1619,1617,-1,1564,1566,1567,-1,1564,1567,1565,-1,1564,1582,1584,-1,1564,1584,1566,-1,1565,1567,1621,-1,1565,1621,1619,-1,1566,1568,1569,-1,1566,1569,1567,-1,1566,1584,1586,-1,1566,1586,1568,-1,1567,1569,1623,-1,1567,1623,1621,-1,1568,1570,1571,-1,1568,1571,1569,-1,1568,1586,1588,-1,1568,1588,1570,-1,1569,1571,1625,-1,1569,1625,1623,-1,1570,1572,1573,-1,1570,1573,1571,-1,1570,1588,1590,-1,1570,1590,1572,-1,1571,1573,1627,-1,1571,1627,1625,-1,1572,1574,1575,-1,1572,1575,1573,-1,1572,1590,1592,-1,1572,1592,1574,-1,1573,1575,1629,-1,1573,1629,1627,-1,1574,1576,1577,-1,1574,1577,1575,-1,1574,1592,1594,-1,1574,1594,1576,-1,1575,1577,1631,-1,1575,1631,1629,-1,1576,1578,1579,-1,1576,1579,1577,-1,1576,1594,1596,-1,1576,1596,1578,-1,1577,1579,1633,-1,1577,1633,1631,-1,1578,1596,1640,-1,1578,1640,1641,-1,1578,1641,1636,-1,1578,1636,1579,-1,1579,1636,1637,-1,1579,1637,1633,-1,1580,1581,1583,-1,1580,1583,1582,-1,1581,1598,1600,-1,1581,1600,1583,-1,1582,1583,1585,-1,1582,1585,1584,-1,1583,1600,1602,-1,1583,1602,1585,-1,1584,1585,1587,-1,1584,1587,1586,-1,1585,1602,1604,-1,1585,1604,1587,-1,1586,1587,1589,-1,1586,1589,1588,-1,1587,1604,1606,-1,1587,1606,1589,-1,1588,1589,1591,-1,1588,1591,1590,-1,1589,1606,1608,-1,1589,1608,1591,-1,1590,1591,1593,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_14()
		{
			int[] value = {1590,1593,1592,-1,1591,1608,1610,-1,1591,1610,1593,-1,1592,1593,1595,-1,1592,1595,1594,-1,1593,1610,1612,-1,1593,1612,1595,-1,1594,1595,1597,-1,1594,1597,1596,-1,1595,1612,1614,-1,1595,1614,1597,-1,1596,1597,1639,-1,1596,1639,1640,-1,1597,1614,1638,-1,1597,1638,1639,-1,1598,1599,1601,-1,1598,1601,1600,-1,1599,1616,1618,-1,1599,1618,1601,-1,1600,1601,1603,-1,1600,1603,1602,-1,1601,1618,1620,-1,1601,1620,1603,-1,1602,1603,1605,-1,1602,1605,1604,-1,1603,1620,1622,-1,1603,1622,1605,-1,1604,1605,1607,-1,1604,1607,1606,-1,1605,1622,1624,-1,1605,1624,1607,-1,1606,1607,1609,-1,1606,1609,1608,-1,1607,1624,1626,-1,1607,1626,1609,-1,1608,1609,1611,-1,1608,1611,1610,-1,1609,1626,1628,-1,1609,1628,1611,-1,1610,1611,1613,-1,1610,1613,1612,-1,1611,1628,1630,-1,1611,1630,1613,-1,1612,1613,1615,-1,1612,1615,1614,-1,1613,1630,1632,-1,1613,1632,1615,-1,1614,1615,1650,-1,1614,1650,1638,-1,1615,1632,1649,-1,1615,1649,1650,-1,1616,1617,1619,-1,1616,1619,1618,-1,1618,1619,1621,-1,1618,1621,1620,-1,1620,1621,1623,-1,1620,1623,1622,-1,1622,1623,1625,-1,1622,1625,1624,-1,1624,1625,1627,-1,1624,1627,1626,-1,1626,1627,1629,-1,1626,1629,1628,-1,1628,1629,1631,-1,1628,1631,1630,-1,1630,1631,1633,-1,1630,1633,1632,-1,1632,1633,1637,-1,1632,1637,1649,-1,1634,1642,1656,-1,1634,1656,1655,-1,1634,1655,1635,-1,1635,1655,1647,-1,1636,1641,1651,-1,1636,1651,1654,-1,1636,1654,1637,-1,1637,1654,1649,-1,1638,1650,1653,-1,1638,1653,1652,-1,1638,1652,1639,-1,1639,1652,1640,-1,1640,1652,1651,-1,1640,1651,1641,-1,1644,1648,1658,-1,1647,1655,1658,-1,1647,1658,1648,-1,1649,1654,1653,-1,1649,1653,1650,-1,1651,1652,1653,-1,1651,1653,1654,-1,1655,1656,1657,-1,1655,1657,1658,-1,1660,1659,1662,-1,1660,1662,1661,-1,1659,1677,1797,-1,1659,1797,1722,-1,1659,1722,1721,-1,1659,1721,1662,-1,1662,1721,1713,-1,1662,1713,1663,-1,1663,1664,1665,-1,1663,1665,1666,-1,1663,1713,1714,-1,1663,1714,1664,-1,1664,1714,1816,-1,1664,1816,1675,-1,1667,1670,1669,-1,1667,1669,1668,-1,1667,1681,1761,-1,1667,1761,1706,-1,1667,1706,1705,-1,1667,1705,1670,-1,1670,1705,1697,-1,1670,1697,1671,-1,1671,1672,1673,-1,1671,1673,1674,-1,1671,1697,1698,-1,1671,1698,1672,-1,1672,1698,1780,-1,1672,1780,1679,-1,1675,1676,1836,-1,1675,1836,1837,-1,1675,1816,1815,-1,1675,1815,1676,-1,1676,1678,1835,-1,1676,1835,1836,-1,1676,1815,1798,-1,1676,1798,1678,-1,1677,1678,1798,-1,1677,1798,1797,-1,1677,1853,1835,-1,1677,1835,1678,-1,1679,1680,1833,-1,1679,1833,1851,-1,1679,1780,1779,-1,1679,1779,1680,-1,1680,1682,1840,-1,1680,1840,1833,-1,1680,1779,1762,-1,1680,1762,1682,-1,1681,1682,1762,-1,1681,1762,1761,-1,1681,1841,1840,-1,1681,1840,1682,-1,1683,1684,1854,-1,1683,1854,1855,-1,1683,1735,1743,-1,1683,1743,1684,-1,1683,1855,1857,-1,1683,1857,1856,-1,1683,1856,1736,-1,1683,1736,1735,-1,1684,1743,1744,-1,1684,1744,1848,-1,1684,1848,1847,-1,1684,1847,1854,-1,1685,1687,1760,-1,1685,1760,1813,-1,1685,1813,1814,-1,1685,1814,1843,-1,1685,1843,1842,-1,1685,1842,1846,-1,1685,1846,1686,-1,1685,1686,1688,-1,1685,1688,1687,-1,1686,1751,1759,-1,1686,1759,1688,-1,1686,1846,1850,-1,1686,1850,1849,-1,1686,1849,1752,-1,1686,1752,1751,-1,1687,1688,1759,-1,1687,1759,1760,-1,1689,1690,1704,-1,1689,1704,1703,-1,1689,1691,1737,-1,1689,1737,1729,-1,1689,1703,1711,-1,1689,1711,1691,-1,1689,1729,1730,-1,1689,1730,1690,-1,1690,1730,1790,-1,1690,1790,1788,-1,1690,1788,1786,-1,1690,1786,1704,-1,1691,1692,1738,-1,1691,1738,1737,-1,1691,1711,1712,-1,1691,1712,1692,-1,1692,1712,1767,-1,1692,1767,1769,-1,1692,1769,1771,-1,1692,1771,1738,-1,1693,1694,1720,-1,1693,1720,1719,-1,1693,1695,1753,-1,1693,1753,1745,-1,1693,1719,1727,-1,1693,1727,1695,-1,1693,1745,1746,-1,1693,1746,1694,-1,1694,1746,1826,-1,1694,1826,1824,-1,1694,1824,1822,-1,1694,1822,1720,-1,1695,1696,1754,-1,1695,1754,1753,-1,1695,1727,1728,-1,1695,1728,1696,-1,1696,1728,1803,-1,1696,1803,1805,-1,1696,1805,1807,-1,1696,1807,1754,-1,1697,1699,1700,-1,1697,1700,1698,-1,1697,1705,1707,-1,1697,1707,1699,-1,1698,1700,1782,-1,1698,1782,1780,-1,1699,1701,1702,-1,1699,1702,1700,-1,1699,1707,1709,-1,1699,1709,1701,-1,1700,1702,1784,-1,1700,1784,1782,-1,1701,1703,1704,-1,1701,1704,1702,-1,1701,1709,1711,-1,1701,1711,1703,-1,1702,1704,1786,-1,1702,1786,1784,-1,1705,1706,1708,-1,1705,1708,1707,-1,1706,1761,1763,-1,1706,1763,1708,-1,1707,1708,1710,-1,1707,1710,1709,-1,1708,1763,1765,-1,1708,1765,1710,-1,1709,1710,1712,-1,1709,1712,1711,-1,1710,1765,1767,-1,1710,1767,1712,-1,1713,1715,1716,-1,1713,1716,1714,-1,1713,1721,1723,-1,1713,1723,1715,-1,1714,1716,1818,-1,1714,1818,1816,-1,1715,1717,1718,-1};
			return value;
		}
		private int[] getIndexedFaceSet_6_51_texCoordIndex_15()
		{
			int[] value = {1715,1718,1716,-1,1715,1723,1725,-1,1715,1725,1717,-1,1716,1718,1820,-1,1716,1820,1818,-1,1717,1719,1720,-1,1717,1720,1718,-1,1717,1725,1727,-1,1717,1727,1719,-1,1718,1720,1822,-1,1718,1822,1820,-1,1721,1722,1724,-1,1721,1724,1723,-1,1722,1797,1799,-1,1722,1799,1724,-1,1723,1724,1726,-1,1723,1726,1725,-1,1724,1799,1801,-1,1724,1801,1726,-1,1725,1726,1728,-1,1725,1728,1727,-1,1726,1801,1803,-1,1726,1803,1728,-1,1729,1731,1732,-1,1729,1732,1730,-1,1729,1737,1739,-1,1729,1739,1731,-1,1730,1732,1792,-1,1730,1792,1790,-1,1731,1733,1734,-1,1731,1734,1732,-1,1731,1739,1741,-1,1731,1741,1733,-1,1732,1734,1794,-1,1732,1794,1792,-1,1733,1735,1736,-1,1733,1736,1734,-1,1733,1741,1743,-1,1733,1743,1735,-1,1734,1736,1796,-1,1734,1796,1794,-1,1736,1856,1857,-1,1736,1857,1796,-1,1737,1738,1740,-1,1737,1740,1739,-1,1738,1771,1773,-1,1738,1773,1740,-1,1739,1740,1742,-1,1739,1742,1741,-1,1740,1773,1775,-1,1740,1775,1742,-1,1741,1742,1744,-1,1741,1744,1743,-1,1742,1775,1777,-1,1742,1777,1744,-1,1744,1777,1847,-1,1744,1847,1848,-1,1745,1747,1748,-1,1745,1748,1746,-1,1745,1753,1755,-1,1745,1755,1747,-1,1746,1748,1828,-1,1746,1828,1826,-1,1747,1749,1750,-1,1747,1750,1748,-1,1747,1755,1757,-1,1747,1757,1749,-1,1748,1750,1830,-1,1748,1830,1828,-1,1749,1751,1752,-1,1749,1752,1750,-1,1749,1757,1759,-1,1749,1759,1751,-1,1750,1752,1832,-1,1750,1832,1830,-1,1752,1849,1850,-1,1752,1850,1832,-1,1753,1754,1756,-1,1753,1756,1755,-1,1754,1807,1809,-1,1754,1809,1756,-1,1755,1756,1758,-1,1755,1758,1757,-1,1756,1809,1811,-1,1756,1811,1758,-1,1757,1758,1760,-1,1757,1760,1759,-1,1758,1811,1813,-1,1758,1813,1760,-1,1761,1762,1764,-1,1761,1764,1763,-1,1762,1779,1781,-1,1762,1781,1764,-1,1763,1764,1766,-1,1763,1766,1765,-1,1764,1781,1783,-1,1764,1783,1766,-1,1765,1766,1768,-1,1765,1768,1767,-1,1766,1783,1785,-1,1766,1785,1768,-1,1767,1768,1770,-1,1767,1770,1769,-1,1768,1785,1787,-1,1768,1787,1770,-1,1769,1770,1772,-1,1769,1772,1771,-1,1770,1787,1789,-1,1770,1789,1772,-1,1771,1772,1774,-1,1771,1774,1773,-1,1772,1789,1791,-1,1772,1791,1774,-1,1773,1774,1776,-1,1773,1776,1775,-1,1774,1791,1793,-1,1774,1793,1776,-1,1775,1776,1778,-1,1775,1778,1777,-1,1776,1793,1795,-1,1776,1795,1778,-1,1777,1778,1845,-1,1777,1845,1847,-1,1778,1795,1844,-1,1778,1844,1845,-1,1779,1780,1782,-1,1779,1782,1781,-1,1781,1782,1784,-1,1781,1784,1783,-1,1783,1784,1786,-1,1783,1786,1785,-1,1785,1786,1788,-1,1785,1788,1787,-1,1787,1788,1790,-1,1787,1790,1789,-1,1789,1790,1792,-1,1789,1792,1791,-1,1791,1792,1794,-1,1791,1794,1793,-1,1793,1794,1796,-1,1793,1796,1795,-1,1795,1796,1857,-1,1795,1857,1844,-1,1797,1798,1800,-1,1797,1800,1799,-1,1798,1815,1817,-1,1798,1817,1800,-1,1799,1800,1802,-1,1799,1802,1801,-1,1800,1817,1819,-1,1800,1819,1802,-1,1801,1802,1804,-1,1801,1804,1803,-1,1802,1819,1821,-1,1802,1821,1804,-1,1803,1804,1806,-1,1803,1806,1805,-1,1804,1821,1823,-1,1804,1823,1806,-1,1805,1806,1808,-1,1805,1808,1807,-1,1806,1823,1825,-1,1806,1825,1808,-1,1807,1808,1810,-1,1807,1810,1809,-1,1808,1825,1827,-1,1808,1827,1810,-1,1809,1810,1812,-1,1809,1812,1811,-1,1810,1827,1829,-1,1810,1829,1812,-1,1811,1812,1814,-1,1811,1814,1813,-1,1812,1829,1831,-1,1812,1831,1814,-1,1814,1831,1842,-1,1814,1842,1843,-1,1815,1816,1818,-1,1815,1818,1817,-1,1817,1818,1820,-1,1817,1820,1819,-1,1819,1820,1822,-1,1819,1822,1821,-1,1821,1822,1824,-1,1821,1824,1823,-1,1823,1824,1826,-1,1823,1826,1825,-1,1825,1826,1828,-1,1825,1828,1827,-1,1827,1828,1830,-1,1827,1830,1829,-1,1829,1830,1832,-1,1829,1832,1831,-1,1831,1832,1850,-1,1831,1850,1842,-1,1833,1834,1852,-1,1833,1852,1851,-1,1833,1840,1838,-1,1833,1838,1834,-1,1834,1835,1853,-1,1834,1853,1852,-1,1834,1838,1836,-1,1834,1836,1835,-1,1836,1838,1839,-1,1836,1839,1837,-1,1838,1840,1841,-1,1838,1841,1839,-1,1842,1850,1846,-1,1844,1855,1854,-1,1844,1854,1845,-1,1844,1857,1855,-1,1845,1854,1847,-1};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getCoordinate_7_51_point_1()
		{
			double[] value = {-.29524,-.64723,-11.4362,.29524,-.64723,-11.4362,-.958,-1.59048,-7.97933,-.91393,-1.56101,-8.37933,-.81271,-1.47822,-8.66278,-.954,.40881,-7.57933,-.954,.40881,-7.97933,-.954,.40881,-8.37933,-.954,.40881,-8.77933,.954,.40881,-7.57933,.954,.40881,-7.97933,.954,.40881,-8.37933,.954,.40881,-8.77933,.958,-1.59048,-7.97933,.91393,-1.56101,-8.37933,.81268,-1.47822,-8.66278,-1.0,-1.54563,-5.28584,-.954,.40881,-5.28584,-.954,.40881,-5.91733,.954,.40881,-5.28584,.954,.40881,-5.91733,1.0,-1.54563,-5.28584,-.33125,-.31812,-.94756,-.538,-.47639,-1.76494,-.7,-.68031,-2.58232,-.902,-1.32929,-4.46846,-.31601,.29881,-.94756,-.51325,.51756,-1.76494,-.6678,.63765,-2.58232,-.86051,.42915,-4.46846,.31601,.29881,-.94756,.51325,.51756,-1.76494,.6678,.63765,-2.58232,.86051,.42915,-4.46846,.33125,-.31812,-.94756,.538,-.47639,-1.76494,.7,-.68031,-2.58232,.902,-1.32929,-4.46846,-.58519,-1.28189,-9.3716,-.5161,-1.01743,-9.96387,-.44701,-.82554,-10.5561,-.37792,-.71627,-11.0967,.58519,-1.28189,-9.3716,.5161,-1.01743,-9.96387,.44701,-.80385,-10.5561,.37792,-.73883,-11.0967,-.269,.6361,-1.76494,.269,.6361,-1.76494,-.35,.75618,-2.58232,.35,.75618,-2.58232,-.3095,.76613,-2.17363,.3095,.76613,-2.17363,0.0,.91376,-2.12908,0.0,.6778,-1.76494,0.0,.79788,-2.58232,-.67254,-1.50342,-8.9274,-.61974,-1.4649,-9.07547,-.60247,-1.3722,-9.22354,-.92881,.39637,-8.9274,-.90363,.38394,-9.07547,-.87844,.3715,-9.22354,.92881,.39637,-8.9274,.90363,.38394,-9.07547,.87844,.3715,-9.22354,.67254,-1.50342,-8.9274,.61974,-1.4649,-9.07547,.60247,-1.3722,-9.22354,-.56792,-1.21633,-9.51967,-.55065,-1.12848,-9.66774,-.53337,-1.05779,-9.8158,-.49883,-.97706,-10.1119,-.48155,-.91886,-10.26,-.46428,-.85352,-10.4081,-.42973,-.7882,-10.7042,-.41246,-.76918,-10.8523,-.39519,-.73532,-11.0003,-.36064,-.72647,-11.1995,-.34337,-.72482,-11.2721,-.3261,-.68035,-11.3736,.56792,-1.21633,-9.51967,.55065,-1.12848,-9.66774,.53337,-1.05779,-9.8158,.49883,-.97706,-10.1119,.48155,-.91886,-10.26,.46428,-.85352,-10.4081,.42973,-.7882,-10.7042,.41246,-.76918,-10.8523,.39519,-.75253,-11.0003,.36064,-.72647,-11.1995,.34337,-.72482,-11.2721,.3261,-.68035,-11.3736,.5,-1.71022,-7.57933,0.0,-1.75694,-7.57933,-.5,-1.71022,-7.57933,.5,-1.71022,-7.97933,0.0,-1.75694,-7.97933,-.5,-1.71022,-7.97933,.5,-1.70249,-8.37933,0.0,-1.74921,-8.37933,-.5,-1.70249,-8.37933};
			return value;
		}
		private double[] getCoordinate_7_51_point_2()
		{
			double[] value = {.5,-1.63058,-8.77933,0.0,-1.6773,-8.77933,-.5,-1.63058,-8.77933,-.5,-1.71022,-5.91733,0.0,-1.75694,-5.91733,.5,-1.71022,-5.91733,-.5,-1.63058,-5.28584,0.0,-1.6773,-5.28584,.5,-1.63058,-5.28584,-.59053,.57761,-2.17363,.59053,.57761,-2.17363,-.55189,.54758,-1.96929,.55189,.54758,-1.96929,-.4035,.61264,-1.76494,-.525,.73272,-2.58232,-.1345,.66607,-1.76494,.4035,.61264,-1.76494,-.175,.78615,-2.58232,.525,.73272,-2.58232,-.32975,.77732,-2.37798,.32975,.77732,-2.37798,-.28925,.71728,-1.96929,.28925,.71728,-1.96929,.15475,.8401,-2.17363,-.15475,.8401,-2.17363,.1345,.66607,-1.76494,.175,.78615,-2.58232,0.0,.86301,-2.37798,0.0,.8085,-1.99696,-.62916,.60762,-2.37798,.62916,.60762,-2.37798,-.46425,.69484,-2.17363,.46425,.69484,-2.17363,-.43388,.66482,-1.96929,.16487,.82517,-2.37798,.49462,.72486,-2.37798,-.14463,.76513,-1.96929,-.16487,.82517,-2.37798,.14463,.76513,-1.96929,-.49462,.72486,-2.37798,.43388,.66482,-1.96929,0.0,.34437,-.94756,0.0,.6299,-4.46846,-.24844,.34437,-.94756,-.16562,.34437,-.94756,-.08281,.34437,-.94756,-.6765,.53292,-4.46846,-.451,.5703,-4.46846,-.2255,.60407,-4.46846,.08281,.34437,-.94756,.16562,.34437,-.94756,.24844,.34437,-.94756,.2255,.60407,-4.46846,.451,.5703,-4.46846,.6765,.53292,-4.46846,0.0,.08105,-.13018,-.18033,.08105,-.13018,-.12022,.08105,-.13018,-.06011,.08105,-.13018,.06011,.08105,-.13018,.12022,.08105,-.13018,.18033,.08105,-.13018,0.0,.3352,-11.7219,0.0,.58373,-7.57933,0.0,.60955,-7.97933,0.0,.63992,-8.37933,0.0,.67461,-8.77933,0.0,.60955,-5.91733,0.0,.60955,-5.28584,0.0,.40571,-11.1484,0.0,.45544,-10.5561,0.0,.50518,-9.96387,0.0,.55492,-9.3716,0.0,.3684,-11.5739,0.0,.38084,-11.4445,0.0,.39327,-11.2965,0.0,.44301,-10.7042,0.0,.43057,-10.8523,0.0,.41814,-11.0003,0.0,.49275,-10.1119,0.0,.48031,-10.26,0.0,.46788,-10.4081,0.0,.54248,-9.51967,0.0,.53005,-9.66774,0.0,.51762,-9.8158,0.0,.6327,-8.9274,0.0,.59858,-9.07547,0.0,.56735,-9.22354,-.33842,.22298,-11.6536,-.22562,.27709,-11.7011,-.11281,.31316,-11.7219,-.75,.51257,-7.57933,-.5,.54995,-7.57933,-.25,.58373,-7.57933,-.75,.51257,-7.97933,-.5,.54995,-7.97933,-.25,.58373,-7.97933,-.75,.51257,-8.37933,-.5,.55285,-8.37933,-.25,.59529,-8.37933};
			return value;
		}
		private double[] getCoordinate_7_51_point_3()
		{
			double[] value = {-.75,.51257,-8.77933,-.5,.56297,-8.77933,-.25,.61409,-8.77933,.75,.51257,-5.91733,.5,.54995,-5.91733,.25,.58373,-5.91733,.75,.51257,-5.28584,.5,.54995,-5.28584,.25,.58373,-5.28584,.4332,.29349,-11.1484,.2888,.34759,-11.1484,.1444,.38366,-11.1484,.5124,.34323,-10.5561,.3416,.39733,-10.5561,.1708,.4334,-10.5561,.5916,.39297,-9.96387,.3944,.44707,-9.96387,.1972,.48314,-9.96387,.6708,.4427,-9.3716,.4472,.49681,-9.3716,.2236,.53288,-9.3716,.3738,.25619,-11.5392,.2492,.31029,-11.5739,.1246,.34636,-11.5739,.3936,.26862,-11.4099,.2624,.32272,-11.4445,.1312,.35879,-11.4445,.4134,.28106,-11.2965,.2756,.33516,-11.2965,.1378,.37123,-11.2965,-.4926,.33079,-10.7042,-.3284,.3849,-10.7042,-.1642,.42097,-10.7042,-.4728,.31836,-10.8523,-.3152,.37246,-10.8523,-.1576,.40853,-10.8523,-.453,.30592,-11.0003,-.302,.36003,-11.0003,-.151,.3961,-11.0003,-.5718,.38053,-10.1119,-.3812,.43463,-10.1119,-.1906,.4707,-10.1119,-.552,.3681,-10.26,-.368,.4222,-10.26,-.184,.45827,-10.26,-.5322,.35566,-10.4081,-.3548,.40977,-10.4081,-.1774,.44584,-10.4081,-.651,.43027,-9.51967,-.434,.48437,-9.51967,-.217,.52044,-9.51967,-.6312,.41783,-9.66774,-.4208,.47194,-9.66774,-.2104,.50801,-9.66774,-.6114,.4054,-9.8158,-.4076,.4595,-9.8158,-.2038,.49557,-9.8158,-.7302,.48001,-8.9274,-.4868,.537,-8.9274,-.2434,.58175,-8.9274,-.7104,.46757,-9.07547,-.4736,.52457,-9.07547,-.2368,.56931,-9.07547,-.6906,.45514,-9.22354,-.4604,.50924,-9.22354,-.2302,.54531,-9.22354,.11281,.31316,-11.7219,.22562,.27709,-11.7011,.33842,.22298,-11.6536,.25,.58373,-7.57933,.5,.54995,-7.57933,.75,.51257,-7.57933,.25,.58373,-7.97933,.5,.54995,-7.97933,.75,.51257,-7.97933,.25,.59529,-8.37933,.5,.55285,-8.37933,.75,.51257,-8.37933,.25,.61409,-8.77933,.5,.56297,-8.77933,.75,.51257,-8.77933,-.25,.58373,-5.91733,-.5,.54995,-5.91733,-.75,.51257,-5.91733,-.25,.58373,-5.28584,-.5,.54995,-5.28584,-.75,.51257,-5.28584,-.1444,.38366,-11.1484,-.2888,.34759,-11.1484,-.4332,.29349,-11.1484,-.1708,.4334,-10.5561,-.3416,.39733,-10.5561,-.5124,.34323,-10.5561,-.1972,.48314,-9.96387,-.3944,.44707,-9.96387,-.5916,.39297,-9.96387,-.2236,.53288,-9.3716,-.4472,.49681,-9.3716,-.6708,.4427,-9.3716,-.1246,.34636,-11.5739};
			return value;
		}
		private double[] getCoordinate_7_51_point_4()
		{
			double[] value = {-.2492,.31029,-11.5739,-.3738,.25619,-11.5392,-.1312,.35879,-11.4445,-.2624,.32272,-11.4445,-.3936,.26862,-11.4099,-.1378,.37123,-11.2965,-.2756,.33516,-11.2965,-.4134,.28106,-11.2965,.1642,.42097,-10.7042,.3284,.3849,-10.7042,.4926,.33079,-10.7042,.1576,.40853,-10.8523,.3152,.37246,-10.8523,.4728,.31836,-10.8523,.151,.3961,-11.0003,.302,.36003,-11.0003,.453,.30592,-11.0003,.1906,.4707,-10.1119,.3812,.43463,-10.1119,.5718,.38053,-10.1119,.184,.45827,-10.26,.368,.4222,-10.26,.552,.3681,-10.26,.1774,.44584,-10.4081,.3548,.40977,-10.4081,.5322,.35566,-10.4081,.217,.52044,-9.51967,.434,.48437,-9.51967,.651,.43027,-9.51967,.2104,.50801,-9.66774,.4208,.47194,-9.66774,.6312,.41783,-9.66774,.2038,.49557,-9.8158,.4076,.4595,-9.8158,.6114,.4054,-9.8158,.2434,.58175,-8.9274,.4868,.537,-8.9274,.7302,.48001,-8.9274,.2368,.56931,-9.07547,.4736,.52457,-9.07547,.7104,.46757,-9.07547,.2302,.54531,-9.22354,.4604,.50924,-9.22354,.6906,.45514,-9.22354,-.39618,-.46674,-11.5336,-.45123,-.28624,-11.5576,-.45123,-.17608,-11.6206,-.45123,.00442,-11.6723,.45123,.00442,-11.6723,.45123,-.17608,-11.6206,.45123,-.28624,-11.5576,.39618,-.46674,-11.5336,1.046,.03844,-7.97933,1.0952,-.37749,-7.97933,1.0952,-.79342,-7.97933,1.046,-1.20935,-7.97933,1.046,.03999,-8.37933,1.09954,-.36443,-8.3764,1.0952,-.78878,-8.37933,1.046,-1.20316,-8.37933,1.00414,.05437,-8.66278,1.05138,-.74563,-8.66278,1.00414,-1.14563,-8.66278,-1.046,-1.20935,-7.97933,-1.09721,-.79342,-7.97933,-1.09721,-.37749,-7.97933,-1.046,.03844,-7.97933,-1.046,-1.20316,-8.37933,-1.09721,-.78878,-8.37933,-1.10059,-.36443,-8.3764,-1.046,.03999,-8.37933,-1.00418,-1.14563,-8.66278,-1.05334,-.74563,-8.66278,-1.00418,.05437,-8.66278,1.046,-1.14563,-5.28584,1.0952,-.74563,-5.28584,1.0952,-.34563,-5.28584,1.046,.05437,-5.28584,-1.046,.05437,-5.28584,-1.09721,-.34563,-5.28584,-1.09721,-.74563,-5.28584,-1.046,-1.14563,-5.28584,.33125,.21188,-.94756,.33125,.07938,-.94756,.33125,-.05312,-.94756,.33125,-.18562,-.94756,.56275,.35522,-1.76494,.58876,.14732,-1.76494,.58876,-.06058,-1.76494,.56275,-.26848,-1.76494,.7322,.41051,-2.58232,.76634,.1378,-2.58232,.76634,-.1349,-2.58232,.7322,-.4076,-2.58232,.94349,.11391,-4.46846,.98777,-.24689,-4.46846,.98777,-.60769,-4.46846,.94349,-.96849,-4.46846,-.33125,-.18562,-.94756,-.33125,-.05312,-.94756};
			return value;
		}
		private double[] getCoordinate_7_51_point_5()
		{
			double[] value = {-.33125,.07938,-.94756,-.33125,.21188,-.94756,-.56275,-.26848,-1.76494,-.59076,-.06058,-1.76494,-.59076,.14732,-1.76494,-.56275,.35522,-1.76494,-.7322,-.4076,-2.58232,-.76835,-.1349,-2.58232,-.7322,.1378,-2.58232,-.7322,.41051,-2.58232,-.94349,-.96849,-4.46846,-.98978,-.60769,-4.46846,-.98978,-.24689,-4.46846,-.94349,.11391,-4.46846,.50713,-.52592,-11.1484,.5776,-.313,-11.1484,.5776,-.17041,-11.1484,.5776,.0425,-11.1484,.59985,-.66811,-10.5561,.6832,-.42479,-10.5561,.6832,-.18148,-10.5561,.6832,.06184,-10.5561,.69257,-.84298,-9.96387,.7888,-.54351,-9.96387,.7888,-.24404,-9.96387,.7888,.05542,-9.96387,.78528,-.98646,-9.3716,.8944,-.63868,-9.3716,.8944,-.29091,-9.3716,.8944,.05686,-9.3716,-.5776,.05392,-11.1484,-.5776,-.14758,-11.1484,-.5776,-.27875,-11.1484,-.50713,-.48025,-11.1484,-.6832,.0575,-10.5561,-.6832,-.19015,-10.5561,-.6832,-.43781,-10.5561,-.59985,-.68546,-10.5561,-.7888,.05542,-9.96387,-.7888,-.24404,-9.96387,-.7888,-.54351,-9.96387,-.69257,-.84298,-9.96387,-.8944,.05686,-9.3716,-.8944,-.29091,-9.3716,-.8944,-.63868,-9.3716,-.78528,-.98646,-9.3716,.4376,-.4866,-11.4432,.4984,-.29284,-11.4432,.4984,-.1694,-11.5062,.4984,.02435,-11.5579,.46077,-.51968,-11.2951,.5248,-.31454,-11.3298,.5248,-.17973,-11.3928,.5248,.02541,-11.4099,.48395,-.51852,-11.1995,.5512,-.31056,-11.2512,.5512,-.17293,-11.2965,.5512,.03503,-11.2965,-.4984,.02435,-11.5579,-.4984,-.1694,-11.5062,-.4984,-.29284,-11.4432,-.4376,-.4866,-11.4432,-.5248,.02541,-11.4099,-.5248,-.17973,-11.3928,-.5248,-.31454,-11.3298,-.46077,-.51968,-11.2951,-.5512,.03503,-11.2965,-.5512,-.17293,-11.2965,-.5512,-.31056,-11.2512,-.48395,-.51852,-11.1995,.6568,.062,-10.7042,.6568,-.16872,-10.7042,.6568,-.39944,-10.7042,.57667,-.63016,-10.7042,.6304,.06109,-10.8523,.6304,-.15811,-10.8523,.6304,-.3773,-10.8523,.55349,-.5965,-10.8523,.604,.05447,-11.0003,.604,-.15891,-11.0003,.604,-.37229,-11.0003,.53031,-.58567,-11.0003,.7624,.05355,-10.1119,.7624,-.23536,-10.1119,.7624,-.52426,-10.1119,.66939,-.81317,-10.1119,.736,.05524,-10.26,.736,-.21954,-10.26,.736,-.49432,-10.26,.64621,-.7691,-10.26,.7096,.05836,-10.4081,.7096,-.20086,-10.4081,.7096,-.46009,-10.4081,.62303,-.71932,-10.4081,.868,.05498,-9.51967,.868,-.28223,-9.51967,.868,-.61944,-9.51967,.7621,-.95665,-9.51967,.8416,.05311,-9.66774,.8416,-.27354,-9.66774};
			return value;
		}
		private double[] getCoordinate_7_51_point_6()
		{
			double[] value = {.8416,-.60019,-9.66774,.73893,-.92685,-9.66774,.8152,.0573,-9.8158,.8152,-.25273,-9.8158,.8152,-.56276,-9.8158,.71575,-.87278,-9.8158,.9736,.05249,-8.9274,.9736,-.33695,-8.9274,.9736,-.72639,-8.9274,.85482,-1.11583,-8.9274,.9472,-.32826,-9.07547,.9472,-.70714,-9.07547,.83164,-1.08602,-9.07547,.9208,.04874,-9.22354,.9208,-.31958,-9.22354,.9208,-.6879,-9.22354,.80846,-1.05622,-9.22354,-.57667,-.63016,-10.7042,-.6568,-.39944,-10.7042,-.6568,-.16872,-10.7042,-.6568,.062,-10.7042,-.55349,-.5965,-10.8523,-.6304,-.3773,-10.8523,-.6304,-.15811,-10.8523,-.6304,.06109,-10.8523,-.53031,-.54429,-11.0003,-.604,-.34125,-11.0003,-.604,-.13822,-11.0003,-.604,.06482,-11.0003,-.66939,-.81317,-10.1119,-.7624,-.52426,-10.1119,-.7624,-.23536,-10.1119,-.7624,.05355,-10.1119,-.64621,-.7691,-10.26,-.736,-.49432,-10.26,-.736,-.21954,-10.26,-.736,.05524,-10.26,-.62303,-.71932,-10.4081,-.7096,-.46009,-10.4081,-.7096,-.20086,-10.4081,-.7096,.05836,-10.4081,-.7621,-.95665,-9.51967,-.868,-.61944,-9.51967,-.868,-.28223,-9.51967,-.868,.05498,-9.51967,-.73893,-.92685,-9.66774,-.8416,-.60019,-9.66774,-.8416,-.27354,-9.66774,-.8416,.05311,-9.66774,-.71575,-.87278,-9.8158,-.8152,-.56276,-9.8158,-.8152,-.25273,-9.8158,-.8152,.0573,-9.8158,-.85482,-1.11583,-8.9274,-.9736,-.72639,-8.9274,-.9736,-.33695,-8.9274,-.9736,.05249,-8.9274,-.83164,-1.08602,-9.07547,-.9472,-.70714,-9.07547,-.9472,-.32826,-9.07547,-.80846,-1.05622,-9.22354,-.9208,-.6879,-9.22354,-.9208,-.31958,-9.22354,-.9208,.04874,-9.22354,1.046,.05437,-7.57933,1.0952,-.34563,-7.57933,1.0952,-.74563,-7.57933,-1.046,.05437,-5.91733,-1.09721,-.34563,-5.91733,-1.09721,-.74563,-5.91733,-1.09721,-.74563,-7.57933,-1.09721,-.34563,-7.57933,-1.046,.05437,-7.57933,1.0952,-.74563,-5.91733,1.0952,-.34563,-5.91733,1.046,.05437,-5.91733,-.7404,-.80727,-2.95955,-.7808,-.93678,-3.33678,-.8212,-1.08673,-3.71401,-.8616,-1.22429,-4.09123,-.70634,.59878,-2.95955,-.74488,.55736,-3.33678,-.78343,.49551,-3.71401,-.82197,.44605,-4.09123,.70634,.59878,-2.95955,.74488,.55736,-3.33678,.78343,.49551,-3.71401,.82197,.44605,-4.09123,.7404,-.80727,-2.95955,.7808,-.93678,-3.33678,.8212,-1.08673,-3.71401,.8616,-1.22429,-4.09123,0.0,.63869,-4.09123,0.0,.68006,-3.71401,0.0,.73381,-3.33678,0.0,.76712,-2.95955,-.1851,.75257,-2.95955,-.1952,.71644,-3.33678,-.2053,.65987,-3.71401,-.2154,.61569,-4.09123};
			return value;
		}
		private double[] getCoordinate_7_51_point_7()
		{
			double[] value = {-.3702,.72184,-2.95955,-.3904,.68495,-3.33678,-.4106,.62762,-3.71401,-.4308,.58267,-4.09123,-.5553,.6956,-2.95955,-.5856,.65592,-3.33678,-.6159,.59581,-3.71401,-.6462,.54808,-4.09123,.2154,.61569,-4.09123,.2053,.65987,-3.71401,.1952,.71644,-3.33678,.1851,.75257,-2.95955,.4308,.58267,-4.09123,.4106,.62762,-3.71401,.3904,.68495,-3.33678,.3702,.72184,-2.95955,.6462,.54808,-4.09123,.6159,.59581,-3.71401,.5856,.65592,-3.33678,.5553,.6956,-2.95955,.90123,.14843,-4.09123,.85898,.21552,-3.71401,.81672,.29499,-3.33678,.77446,.35402,-2.95955,.94349,-.19475,-4.09123,.8992,-.11004,-3.71401,.85491,-.01296,-3.33678,.81063,.0637,-2.95955,.94349,-.53793,-4.09123,.8992,-.43561,-3.71401,.85491,-.3209,-3.33678,.81063,-.22662,-2.95955,.90123,-.88111,-4.09123,.85898,-.76117,-3.71401,.81672,-.62884,-3.33678,.77446,-.51694,-2.95955,-.90123,-.88111,-4.09123,-.85898,-.76117,-3.71401,-.81672,-.62884,-3.33678,-.77446,-.51694,-2.95955,-.9455,-.53793,-4.09123,-.90121,-.43561,-3.71401,-.85692,-.3209,-3.33678,-.81264,-.22662,-2.95955,-.93827,-.19475,-4.09123,-.88675,-.11004,-3.71401,-.83523,-.01296,-3.33678,-.78372,.0637,-2.95955,-.90123,.14843,-4.09123,-.85898,.21552,-3.71401,-.81672,.29499,-3.33678,-.77446,.35402,-2.95955,-.53257,.53257,-1.86711,.53257,.53257,-1.86711,-.5964,.68519,-2.58232,-.2625,.77117,-2.58232,.4375,.74445,-2.58232,-.33987,.7746,-2.48015,.33987,.7746,-2.48015,-.29938,.74379,-2.07146,.29938,.74379,-2.07146,.23213,.803,-2.17363,-.07737,.87599,-2.15135,.0875,.79202,-2.58232,0.0,.891,-2.25353,0.0,.86375,-2.06302,-.60984,.59262,-2.2758,.60984,.59262,-2.2758,-.52739,.63622,-2.17363,.52739,.63622,-2.17363,-.57121,.56259,-2.07146,.57121,.56259,-2.07146,-.4375,.74445,-2.58232,-.0875,.79202,-2.58232,.5964,.68519,-2.58232,-.31962,.77382,-2.2758,.31962,.77382,-2.2758,-.27913,.68454,-1.86711,.27913,.68454,-1.86711,.07737,.87599,-2.15135,-.23213,.803,-2.17363,.2625,.77117,-2.58232,0.0,.84404,-2.48015,0.0,.75675,-1.88095,-.64848,.62264,-2.48015,.64848,.62264,-2.48015,-.38688,.74774,-2.17363,.38688,.74774,-2.17363,-.44906,.67983,-2.07146,.15981,.83619,-2.2758,.50981,.72879,-2.48015,-.13956,.7292,-1.86711,-.16994,.81926,-2.48015,.13956,.7292,-1.86711,-.50981,.72879,-2.48015,.41869,.63873,-1.86711,-.41869,.63873,-1.86711,.16994,.81926,-2.48015,.47944,.70985,-2.2758,-.14969,.80617,-2.07146};
			return value;
		}
		private double[] getCoordinate_7_51_point_8()
		{
			double[] value = {-.15981,.83619,-2.2758,.14969,.80617,-2.07146,-.47944,.70985,-2.2758,.44906,.67983,-2.07146,-.49288,.6062,-1.96929,.24731,.807,-2.37798,.41219,.75893,-2.37798,-.07231,.78682,-1.98312,-.24731,.807,-2.37798,.21694,.74696,-1.96929,-.56189,.66624,-2.37798,.49288,.6062,-1.96929,-.36156,.69889,-1.96929,.08244,.84409,-2.37798,.56189,.66624,-2.37798,-.21694,.74696,-1.96929,-.08244,.84409,-2.37798,.07231,.78682,-1.98312,-.41219,.75893,-2.37798,.36156,.69889,-1.96929,-.51014,.62121,-2.07146,.23972,.80856,-2.2758,.42484,.75954,-2.48015,-.06978,.74298,-1.87403,-.25491,.80268,-2.48015,.20934,.71262,-1.86711,-.57915,.67571,-2.48015,.47563,.58565,-1.86711,-.34891,.66948,-1.86711,.08497,.83165,-2.48015,.54464,.65123,-2.2758,-.22453,.77854,-2.07146,-.07991,.86004,-2.26467,.07484,.8314,-2.06724,-.39953,.75543,-2.2758,.37422,.72541,-2.07146,-.47563,.58565,-1.86711,.25491,.80268,-2.48015,.39953,.75543,-2.2758,-.07484,.8314,-2.06724,-.23972,.80856,-2.2758,.22453,.77854,-2.07146,-.54464,.65123,-2.2758,.51014,.62121,-2.07146,-.37422,.72541,-2.07146,.07991,.86004,-2.26467,.57915,.67571,-2.48015,-.20934,.71262,-1.86711,-.08497,.83165,-2.48015,.06978,.74298,-1.87403,-.42484,.75954,-2.48015,.34891,.66948,-1.86711,-.45838,.5651,-1.76494,-.20175,.65109,-1.76494,.33625,.62437,-1.76494,.06725,.67193,-1.76494,-.33625,.62437,-1.76494,-.06725,.67193,-1.76494,.45838,.5651,-1.76494,.20175,.65109,-1.76494,-.03869,.89749,-2.14022,0.0,.905,-2.1913,0.0,.89137,-2.09605,.03869,.89749,-2.14022,.03742,.84758,-2.06513,-.03742,.84758,-2.06513,.03995,.87552,-2.2591,-.03995,.87552,-2.2591,-.07864,.86802,-2.20801,-.07611,.8537,-2.1093,.07864,.86802,-2.20801,.07611,.8537,-2.1093,-.03932,.88651,-2.19966,.03932,.88651,-2.19966,.03805,.87253,-2.10267,-.03805,.87253,-2.10267,-.18546,-.64723,-11.4362,0.0,-.64723,-11.4362,.18546,-.64723,-11.4362,-.22562,-.02663,-11.8512,0.0,-.03762,-11.9468,.22562,-.02663,-11.8512,-.22562,-.17608,-11.7994,0.0,-.17608,-11.8486,.22562,-.17608,-11.7994,-.22562,-.28624,-11.7364,0.0,-.28624,-11.7769,.22562,-.28624,-11.7364,-.22562,-.46674,-11.6522,0.0,-.46674,-11.6764,.22562,-.46674,-11.6522,.16921,.19193,-11.8512,0.0,.18095,-11.9004,-.16921,.19193,-11.8512,.11281,.24104,-11.8284,0.0,.24965,-11.8324,-.11281,.24104,-11.8284,.0564,.30089,-11.7744,0.0,.30367,-11.7744,-.0564,.30089,-11.7744};
			return value;
		}
		private double[] getCoordinate_7_51_point_9()
		{
			double[] value = {-.23924,-.64723,-11.4362,-.33842,-.00896,-11.7932,-.33842,-.17608,-11.7414,-.33842,-.28624,-11.6784,-.33842,-.46674,-11.6207,-.09273,-.64723,-11.4362,.09273,-.64723,-11.4362,.23924,-.64723,-11.4362,-.11281,-.03762,-11.9224,.11281,-.03762,-11.9224,.33842,-.00896,-11.7932,-.11281,-.17608,-11.8486,.11281,-.17608,-11.8486,.33842,-.17608,-11.7414,-.11281,-.28624,-11.7679,.11281,-.28624,-11.7679,.33842,-.28624,-11.6784,-.11281,-.46674,-11.6612,.11281,-.46674,-11.6612,.33842,-.46674,-11.6207,.25382,.20961,-11.7932,.16921,.26371,-11.7744,.08461,.29978,-11.7744,.08461,.18095,-11.9004,-.08461,.18095,-11.9004,-.25382,.20961,-11.7932,.0564,.24743,-11.8324,-.0564,.24743,-11.8324,-.16921,.26371,-11.7744,.0282,.30228,-11.7744,-.0282,.30228,-11.7744,-.08461,.29978,-11.7744,-.22675,-.76111,-11.0967,-.07558,-.77452,-11.0967,.07558,-.77903,-11.0967,.22675,-.77465,-11.0967,-.26821,-.86154,-10.5561,-.0894,-.86609,-10.5561,.0894,-.86175,-10.5561,.26821,-.84852,-10.5561,-.30966,-1.05776,-9.96387,-.10322,-1.06665,-9.96387,.10322,-1.06665,-9.96387,.30966,-1.05776,-9.96387,-.35112,-1.32223,-9.3716,-.11704,-1.33112,-9.3716,.11704,-1.33112,-9.3716,.35112,-1.32223,-9.3716,-.19566,-.72069,-11.3736,-.06522,-.72958,-11.3736,.06522,-.72958,-11.3736,.19566,-.72069,-11.3736,-.20602,-.76515,-11.2721,-.06867,-.77404,-11.2721,.06867,-.77404,-11.2721,.20602,-.76515,-11.2721,-.21638,-.76681,-11.1995,-.07213,-.7757,-11.1995,.07213,-.7757,-11.1995,.21638,-.76681,-11.1995,-.23711,-.7791,-11.0003,-.07904,-.79143,-11.0003,.07904,-.79487,-11.0003,.23711,-.78942,-11.0003,-.24748,-.80951,-10.8523,-.08249,-.8184,-10.8523,.08249,-.8184,-10.8523,.24748,-.80951,-10.8523,-.25784,-.82853,-10.7042,-.08595,-.83742,-10.7042,.08595,-.83742,-10.7042,.25784,-.82853,-10.7042,-.27857,-.89385,-10.4081,-.09286,-.90275,-10.4081,.09286,-.90275,-10.4081,.27857,-.89385,-10.4081,-.28893,-.95919,-10.26,-.09631,-.96808,-10.26,.09631,-.96808,-10.26,.28893,-.95919,-10.26,-.2993,-1.01739,-10.1119,-.09977,-1.02628,-10.1119,.09977,-1.02628,-10.1119,.2993,-1.01739,-10.1119,-.32002,-1.09812,-9.8158,-.10668,-1.10701,-9.8158,.10668,-1.10701,-9.8158,.32002,-1.09812,-9.8158,-.33039,-1.16881,-9.66774,-.11013,-1.1777,-9.66774,.11013,-1.1777,-9.66774,.33039,-1.16881,-9.66774,-.34075,-1.25667,-9.51967,-.11358,-1.26556,-9.51967,.11358,-1.26556,-9.51967,.34075,-1.25667,-9.51967,-.36148,-1.41254,-9.22354,-.12049,-1.42143,-9.22354,.12049,-1.42143,-9.22354,.36148,-1.41254,-9.22354};
			return value;
		}
		private double[] getCoordinate_7_51_point_10()
		{
			double[] value = {-.37184,-1.50523,-9.07547,-.12395,-1.51412,-9.07547,.12395,-1.51412,-9.07547,.37184,-1.50523,-9.07547,-.38221,-1.55883,-8.9274,-.1274,-1.59023,-8.9274,.1274,-1.59023,-8.9274,.38221,-1.55883,-8.9274,-.12022,-.39982,-.13018,0.0,-.39982,-.13018,.12022,-.39982,-.13018,.16562,-.40307,-.94756,0.0,-.44979,-.94756,-.16562,-.40307,-.94756,.269,-.56133,-1.76494,0.0,-.60805,-1.76494,-.269,-.56133,-1.76494,.35,-.76525,-2.58232,0.0,-.81197,-2.58232,-.35,-.76525,-2.58232,.451,-1.41423,-4.46846,0.0,-1.46095,-4.46846,-.451,-1.41423,-4.46846,-.4308,-1.30924,-4.09123,0.0,-1.35596,-4.09123,.4308,-1.30924,-4.09123,-.4106,-1.17167,-3.71401,0.0,-1.21839,-3.71401,.4106,-1.17167,-3.71401,-.3904,-1.02173,-3.33678,0.0,-1.06845,-3.33678,.3904,-1.02173,-3.33678,-.3702,-.89221,-2.95955,0.0,-.93893,-2.95955,.3702,-.89221,-2.95955,-.41207,.15607,-11.6686,-.39365,.1728,-11.6648,-.37525,.18953,-11.6611,-.35683,.20626,-11.6573,-.54476,.17757,-11.1316,-.56697,.11629,-11.1484,-.57229,.0851,-11.1484,-.64444,.21727,-10.5512,-.67063,.13834,-10.5561,-.67692,.09792,-10.5561,-.74412,.25585,-9.97079,-.77429,.15699,-9.96387,-.78154,.10621,-9.96387,-.8438,.29513,-9.39037,-.87794,.17774,-9.3716,-.88617,.1173,-9.3716,.45514,.18928,-11.5542,.4348,.206,-11.5504,.41447,.22273,-11.5467,.39414,.23946,-11.5429,.47925,.20171,-11.4099,.45784,.21844,-11.4099,.43642,.23517,-11.4099,.41501,.25189,-11.4099,.50336,.21415,-11.2965,.48087,.23087,-11.2965,.45838,.2476,-11.2965,.43589,.26433,-11.2965,-.47,.14253,-11.533,-.48923,.08363,-11.5579,-.49382,.05399,-11.5579,-.49492,.15248,-11.3879,-.51514,.08924,-11.4099,-.51997,.05732,-11.4099,-.51984,.16412,-11.2767,-.54106,.09998,-11.2965,-.54613,.0675,-11.2965,.62044,.2084,-10.6963,.64472,.13606,-10.7042,.65076,.09903,-10.7042,.59552,.19847,-10.8414,.6188,.13054,-10.8523,.6246,.09582,-10.8523,.5706,.18743,-10.9865,.59289,.1216,-11.0003,.59844,.08803,-11.0003,.72012,.24574,-10.1159,.74837,.15089,-10.1119,.75539,.10222,-10.1119,.6952,.23632,-10.261,.72246,.14693,-10.26,.72923,.10109,-10.26,.67028,.22718,-10.4061,.69654,.14383,-10.4081,.70307,.1011,-10.4081,.8198,.28501,-9.53547,.85203,.17164,-9.51967,.86001,.11331,-9.51967,.79488,.2749,-9.68058,.82612,.16555,-9.66774,.83386,.10933,-9.66774,.76996,.26597,-9.82569,.8002,.16309,-9.8158,.8077,.11019,-9.8158,.87794,.24003,-9.24526};
			return value;
		}
		private double[] getCoordinate_7_51_point_11()
		{
			double[] value = {.90386,.17785,-9.22354,.35683,.20626,-11.6573,.37525,.18953,-11.6611,.39365,.1728,-11.6648,.41207,.15607,-11.6686,-.39414,.23946,-11.5429,-.41447,.22273,-11.5467,-.4348,.206,-11.5504,-.45514,.18928,-11.5542,-.41501,.25189,-11.4099,-.43642,.23517,-11.4099,-.45784,.21844,-11.4099,-.47925,.20171,-11.4099,-.43589,.26433,-11.2965,-.45838,.2476,-11.2965,-.48087,.23087,-11.2965,-.50336,.21415,-11.2965,1.0952,-.54015,-8.37933,1.0952,-.62303,-8.37933,1.0952,-.70591,-8.37933,1.01359,-.02563,-8.66278,1.02304,-.10563,-8.66278,1.02155,-.25784,-8.69572,1.05138,-.42563,-8.66278,1.05138,-.50563,-8.66278,1.05138,-.58563,-8.66278,1.05138,-.66563,-8.66278,-1.09721,-.70591,-8.37933,-1.09721,-.62303,-8.37933,-1.09721,-.54015,-8.37933,-1.05334,-.66563,-8.66278,-1.05334,-.58563,-8.66278,-1.05334,-.50563,-8.66278,-1.05334,-.42563,-8.66278,-1.02218,-.25784,-8.69572,-1.02384,-.10563,-8.66278,-1.01401,-.02563,-8.66278,.57229,.07597,-11.1484,.56697,.10944,-11.1484,.54568,.17533,-11.1316,.67692,.10139,-10.5561,.67063,.14094,-10.5561,.64536,.21812,-10.5512,.78154,.10621,-9.96387,.77429,.15699,-9.96387,.74504,.25585,-9.97079,.8944,-.22136,-9.3716,.8944,-.15181,-9.3716,.8944,-.08225,-9.3716,.8944,-.0127,-9.3716,.88617,.1173,-9.3716,.87794,.17774,-9.3716,.84472,.29513,-9.39037,-.8944,-.0127,-9.3716,-.8944,-.08225,-9.3716,-.8944,-.15181,-9.3716,-.8944,-.22136,-9.3716,.49382,.05399,-11.5579,.48923,.08363,-11.5579,.47092,.14253,-11.533,.51997,.05732,-11.4099,.51514,.08924,-11.4099,.49584,.15248,-11.3879,.54613,.0675,-11.2965,.54106,.09998,-11.2965,.52076,.16412,-11.2767,.9736,-.02539,-8.9274,.95459,-.17507,-8.95505,.92872,-.02218,-9.10016,.9472,-.17671,-9.07547,.9472,-.25249,-9.07547,.9208,-.02492,-9.22354,.9208,-.09858,-9.22354,.9208,-.17225,-9.22354,.9208,-.24591,-9.22354,-.65076,.09903,-10.7042,-.64472,.13606,-10.7042,-.61952,.2084,-10.6963,-.6246,.09582,-10.8523,-.6188,.13054,-10.8523,-.5946,.19847,-10.8414,-.59844,.09631,-11.0003,-.59289,.12781,-11.0003,-.56968,.18945,-10.9865,-.75539,.10222,-10.1119,-.74837,.15089,-10.1119,-.7192,.24574,-10.1159,-.72923,.10109,-10.26,-.72246,.14693,-10.26,-.69428,.23632,-10.261,-.70307,.1011,-10.4081,-.69654,.14383,-10.4081,-.66936,.22718,-10.4061,-.86001,.11331,-9.51967,-.85203,.17164,-9.51967,-.81888,.28501,-9.53547,-.83386,.10933,-9.66774,-.82612,.16555,-9.66774,-.79396,.2749,-9.68058,-.8077,.11019,-9.8158};
			return value;
		}
		private double[] getCoordinate_7_51_point_12()
		{
			double[] value = {-.8002,.16309,-9.8158,-.76904,.26597,-9.82569,-.95367,-.17507,-8.95505,-.9736,-.02539,-8.9274,-.9472,-.25249,-9.07547,-.9472,-.17671,-9.07547,-.9278,-.02218,-9.10016,-.9208,-.24591,-9.22354,-.9208,-.17225,-9.22354,-.9208,-.09858,-9.22354,-.9208,-.02492,-9.22354,-.90386,.17785,-9.22354,-.87702,.24003,-9.24526,.17842,.17521,-11.8512,.18762,.15848,-11.8512,.19683,.14175,-11.8512,.20603,.12503,-11.8512,0.0,.16422,-11.9097,0.0,.14749,-11.9189,0.0,.13077,-11.9282,0.0,.11404,-11.9375,-.17842,.17521,-11.8512,-.18762,.15848,-11.8512,-.19683,.14175,-11.8512,-.20603,.12503,-11.8512,.26763,.19288,-11.7932,.28143,.17615,-11.7932,.29524,.15943,-11.7932,.30905,.1427,-11.7932,.10302,.11404,-11.918,.09841,.13077,-11.9136,.09381,.14749,-11.9092,.08921,.16422,-11.9048,-.10302,.11404,-11.918,-.09841,.13077,-11.9136,-.09381,.14749,-11.9092,-.08921,.16422,-11.9048,-.30905,.1427,-11.7932,-.29524,.15943,-11.7932,-.28143,.17615,-11.7932,-.26763,.19288,-11.7932,.4264,.11259,-11.6451,.44293,.05839,-11.6723,.44708,.0314,-11.6723,-.44708,.0314,-11.6723,-.44293,.05839,-11.6723,-.42547,.11259,-11.6451,.21343,.08216,-11.8203,.22147,.02734,-11.8512,.22354,.00035,-11.8512,.00046,.0714,-11.914,0.0,.01635,-11.9468,0.0,-.01063,-11.9468,-.21251,.08216,-11.8203,-.22147,.02734,-11.8512,-.22354,.00035,-11.8512,.31991,.09948,-11.7635,.3322,.04501,-11.7932,.33531,.01803,-11.7932,.11177,-.01063,-11.9224,.11073,.01635,-11.9224,.10694,.0714,-11.8901,-.11177,-.01063,-11.9224,-.11073,.01635,-11.9224,-.10602,.0714,-11.8901,-.33531,.01803,-11.7932,-.3322,.04501,-11.7932,-.31899,.09948,-11.7635,1.05584,-.04289,-8.37933,1.06568,-.12577,-8.37933,1.07552,-.20865,-8.37933,.94165,-.09759,-9.0276,.91578,.05116,-9.17271,.58209,.30141,-10.5561,.427,.37028,-10.5561,.5025,.33701,-10.6302,.5223,.34945,-10.4821,.6612,.20027,-10.5561,.65492,.23982,-10.5561,.6329,.21326,-10.6238,.65782,.22265,-10.4787,.99832,-.10446,-8.79509,.934,-.09976,-9.1495,-.94073,-.09759,-9.0276,-.91486,.05116,-9.17271,-1.07673,-.20865,-8.37933,-1.06648,-.12577,-8.37933,-1.05624,-.04289,-8.37933,-.9604,.05156,-9.00143,-.86585,.36529,-9.29757,-.42318,.14598,-11.6708,-.42918,.13242,-11.6653,.42318,.14598,-11.6708,.42942,.1324,-11.6653,-.85186,.34959,-9.37438,-.84419,.36322,-9.3716,-.85492,.35989,-9.3618,-.74367,.31393,-9.96387,-.75098,.29956,-9.96514,-.64322,.26472,-10.5561};
			return value;
		}
		private double[] getCoordinate_7_51_point_13()
		{
			double[] value = {-.65008,.24983,-10.555,-.5429,.21563,-11.1484,-.54934,.20113,-11.1439,.85492,.35989,-9.3618,.84419,.36322,-9.3716,.85199,.34958,-9.37439,.75114,.29953,-9.96514,.74367,.31393,-9.96387,.65334,.24974,-10.5561,.64322,.26472,-10.5561,.54965,.20097,-11.1441,.5429,.21563,-11.1484,-.81905,.35089,-9.51967,-.82664,.33707,-9.52212,-.79392,.33857,-9.66774,-.80143,.32456,-9.66982,-.76879,.32625,-9.8158,-.77619,.31206,-9.81752,-.71855,.30162,-10.1119,-.72577,.28707,-10.1127,-.69343,.28931,-10.26,-.70054,.27462,-10.2602,-.66832,.27702,-10.4081,-.67529,.2622,-10.4076,-.61813,.25244,-10.7042,-.62483,.23754,-10.7022,-.59304,.24016,-10.8523,-.59964,.22532,-10.8495,-.56796,.22789,-11.0003,-.57442,.21325,-10.9965,-.51784,.20337,-11.2965,-.52431,.18894,-11.2915,-.4928,.19112,-11.4099,-.49922,.17681,-11.4043,-.46785,.17882,-11.5565,-.47409,.16496,-11.5516,.82679,.33705,-9.52213,.81905,.35089,-9.51967,.80158,.32454,-9.66983,.79392,.33857,-9.66774,.77635,.31203,-9.81753,.76879,.32625,-9.8158,.72594,.28705,-10.1127,.71855,.30162,-10.1119,.70072,.27459,-10.2602,.69343,.28931,-10.26,.67549,.26217,-10.4076,.66832,.27702,-10.4081,.62506,.2375,-10.7022,.61813,.25244,-10.7042,.59987,.22528,-10.8494,.59304,.24016,-10.8523,.57474,.21312,-10.9967,.56796,.22789,-11.0003,.52455,.18891,-11.2914,.51784,.20337,-11.2965,.49944,.17679,-11.4043,.4928,.19112,-11.4099,.47432,.16493,-11.5516,.46785,.17882,-11.5565,1.05138,-.35561,-8.66278,1.04857,-.34532,-8.67234,1.04836,-.33673,-8.66612,1.05303,-.34628,-8.65296,-1.05334,-.35561,-8.66278,-1.05046,-.34532,-8.67232,-1.05019,-.33677,-8.6661,-1.05496,-.34628,-8.65296,.94895,.05074,-9.06565,.94591,.06051,-9.07547,.94413,.05067,-9.08496,.94487,.04144,-9.07858,-.94405,.05067,-9.08493,-.94476,.04146,-9.07857,-.94895,.05074,-9.06565,-.94591,.06051,-9.07547,-.21043,.11704,-11.8512,-.21457,.10186,-11.8436,0.0,.10603,-11.9419,.00011,.09112,-11.939,.21043,.11704,-11.8512,.21479,.10186,-11.8436,-.31651,.13366,-11.7932,-.32189,.11936,-11.7857,-.10505,.10663,-11.9199,-.10723,.09107,-11.9146,.10505,.10663,-11.9199,.10746,.09107,-11.9146,.31651,.13366,-11.7932,.32212,.11935,-11.7857,-.56333,.13765,-11.1484,-.55727,.1553,-11.144,-.66588,.1689,-10.5561,-.65979,.18756,-10.555,-.76844,.19789,-9.96387,-.76277,.2167,-9.96516,-.87106,.2283,-9.3716,-.86576,.24688,-9.37447,-.87029,.23833,-9.36165,-.48109,.12036,-11.5519};
			return value;
		}
		private double[] getCoordinate_7_51_point_14()
		{
			double[] value = {-.48617,.10342,-11.5579,-.50659,.12873,-11.4046,-.51181,.11129,-11.4099,-.53202,.14023,-11.2916,-.53753,.12261,-11.2965,.63418,.18179,-10.7023,.64028,.16325,-10.7042,.60854,.17375,-10.8495,.61464,.15543,-10.8523,.58304,.16344,-10.9968,.58896,.14532,-11.0003,.7372,.20859,-10.1127,.74278,.18969,-10.1119,.71144,.2018,-10.2602,.71714,.18291,-10.26,.68566,.19552,-10.4076,.69152,.1767,-10.4081,.84015,.2388,-9.5222,.8454,.22009,-9.51967,.81443,.23067,-9.66989,.81973,.21188,-9.66774,.78864,.22491,-9.81757,.7941,.2061,-9.8158,.88562,.31684,-9.22354,.88801,.29723,-9.2216,.88565,.29754,-9.22659,.88448,.30627,-9.23318,.91059,.11356,-9.23335,.91363,.10341,-9.22354,.91103,.12318,-9.22354,1.09369,-.45618,-8.38913,1.0952,-.46725,-8.37933,1.09567,-.44732,-8.37902,1.02992,-.18528,-8.67241,1.03112,-.19462,-8.66688,1.03132,-.17573,-8.66278,-1.0957,-.45618,-8.38913,-1.09721,-.46725,-8.37933,-1.09757,-.44731,-8.37902,-1.03246,-.17573,-8.66278,-1.03224,-.19461,-8.66687,-1.03104,-.18529,-8.67239,.55766,.15103,-11.1442,.56322,.13306,-11.1484,.66278,.19034,-10.5561,.66591,.17064,-10.5561,.76292,.21676,-9.96516,.76844,.19789,-9.96387,.87106,.2283,-9.3716,.86588,.24693,-9.37448,.87036,.23833,-9.36165,.48129,.12042,-11.5518,.48617,.10342,-11.5579,.50679,.12879,-11.4045,.51181,.11129,-11.4099,.53222,.1403,-11.2916,.53753,.12261,-11.2965,.97121,-.11232,-8.93088,.97057,-.10274,-8.93689,.9736,-.09331,-8.9274,.97543,-.10337,-8.9176,.97185,-.25862,-8.93721,.9736,-.26903,-8.9274,.97562,-.25901,-8.91764,.9715,-.2498,-8.93045,.94545,-.10078,-9.08529,.9472,-.11091,-9.07547,.94605,-.10024,-9.06559,.94502,-.09165,-9.07838,-.63401,.1817,-10.7023,-.64028,.16325,-10.7042,-.60835,.17366,-10.8495,-.61464,.15543,-10.8523,-.58906,.14948,-11.0003,-.58264,.1673,-10.9967,-.73706,.20852,-10.1127,-.74278,.18969,-10.1119,-.71129,.20172,-10.2602,-.71714,.18291,-10.26,-.69152,.1767,-10.4081,-.6855,.19544,-10.4076,-.84003,.23875,-9.52219,-.8454,.22009,-9.51967,-.8143,.23061,-9.66988,-.81973,.21188,-9.66774,-.7941,.2061,-9.8158,-.7885,.22485,-9.81756,-.97141,-.24982,-8.93044,-.97565,-.25901,-8.91764,-.9736,-.26903,-8.9274,-.97185,-.25862,-8.93721,-.9705,-.10275,-8.93686,-.9711,-.11229,-8.93087,-.97546,-.10337,-8.9176,-.9736,-.09331,-8.9274,-.94492,-.09167,-9.07837,-.94587,-.10024,-9.06561,-.9472,-.11091,-9.07547,-.94545,-.10078,-9.08529,-.91059,.11356,-9.23335};
			return value;
		}
		private double[] getCoordinate_7_51_point_15()
		{
			double[] value = {-.91363,.10341,-9.22354,-.91103,.12318,-9.22354,-.88443,.30627,-9.23317,-.88553,.29756,-9.22658,-.88798,.29723,-9.2216,-.88562,.31684,-9.22354,.44029,.07552,-11.6723,.43572,.09208,-11.6656,-.43552,.09204,-11.6657,-.44029,.07552,-11.6723,.22015,.04438,-11.8512,.21797,.06094,-11.8438,0.0,.03337,-11.9468,.00011,.04983,-11.9392,-.22015,.04438,-11.8512,-.21776,.06092,-11.8438,.33023,.06209,-11.7932,.32688,.07861,-11.786,.11008,.03337,-11.9224,.10905,.04987,-11.9149,-.11008,.03337,-11.9224,-.10884,.04986,-11.9149,-.33023,.06209,-11.7932,-.32667,.07858,-11.7861,1.0834,-.29049,-8.38906,1.08727,-.3013,-8.37894,1.08419,-.28162,-8.37933,.95826,-.16967,-9.00442,.95916,-.17812,-8.99157,.95865,-.17864,-9.01125,.95804,-.03439,-9.00473,.95735,-.02498,-9.01093,.96215,-.02529,-8.99162,.93225,-.02502,-9.15932,.93294,-.02446,-9.1396,.93178,-.01574,-9.15233,-1.08498,-.29049,-8.38905,-1.0888,-.30132,-8.37894,-1.08575,-.28162,-8.37933,-.95727,-.02498,-9.0109,-.95793,-.03436,-9.00472,-.96215,-.02529,-8.99162,-.95816,-.16969,-9.00441,-.95897,-.17812,-8.9916,-.95865,-.17864,-9.01125,-.93225,-.02502,-9.15932,-.93276,-.02447,-9.13962,-.93167,-.01576,-9.15233,-.92345,.04893,-9.20867,-.92154,.0498,-9.18961,-.9236,.05872,-9.20071,-.89695,.17782,-9.26297,-.90039,.17783,-9.24332,.92345,.04893,-9.20867,.92183,.04981,-9.1895,.9236,.05872,-9.20071,.89695,.17782,-9.26297,.90039,.17783,-9.24332,-1.0,-1.62528,-7.438,-.96738,-1.64895,-7.57933,-.9853,-1.6131,-7.71938,-1.01349,-1.48459,-7.63252,1.01349,-1.48459,-7.63252,.9853,-1.6131,-7.71938,.96738,-1.64895,-7.57933,1.0,-1.62528,-7.438,-1.01349,-1.48459,-5.86415,-1.0,-1.60759,-5.77711,-.96738,-1.64895,-5.91733,-1.0,-1.62528,-6.05867,1.0,-1.62528,-6.05867,.96738,-1.64895,-5.91733,1.0,-1.60759,-5.77711,1.01349,-1.48459,-5.86415,1.046,-1.14563,-7.438,1.06326,-1.00535,-7.57933,1.046,-1.16787,-7.71891,1.03251,-1.28632,-7.63252,-1.03251,-1.28632,-7.63252,-1.046,-1.14563,-7.438,-1.06395,-1.00544,-7.57933,-1.046,-1.16787,-7.71891,1.03251,-1.28632,-5.86415,1.046,-1.14563,-6.05867,1.06326,-1.00535,-5.91733,1.046,-1.14563,-5.776,-1.046,-1.14563,-6.05867,-1.06395,-1.00544,-5.91733,-1.046,-1.14563,-5.776,-1.03251,-1.28632,-5.86415,4.31652,-4.25526,-5.06454,1.34001,-1.24347,-7.33247,1.34001,-1.3848,-7.47381,1.68002,-1.41324,-7.21566,1.68002,-1.55458,-7.35699,2.02003,-1.66095,-7.07817,2.02003,-1.80229,-7.21951,2.36004,-1.95662,-6.90545,2.36004,-2.09796,-7.04679,2.70005,-2.28227,-6.71918};
			return value;
		}
		private double[] getCoordinate_7_51_point_16()
		{
			double[] value = {2.70005,-2.42361,-6.86052,3.04006,-2.60492,-6.48141,3.04006,-2.74625,-6.62275,3.38007,-2.89459,-6.25448,3.38007,-3.03593,-6.39582,3.72008,-3.18726,-6.02777,3.72008,-3.3286,-6.16911,4.06009,-3.53989,-5.71779,4.06009,-3.68123,-5.85913,1.34001,-1.24347,-6.07187,1.34001,-1.3848,-5.93053,1.68002,-1.41324,-6.03199,1.68002,-1.55458,-5.89065,2.02003,-1.66095,-5.94603,2.02003,-1.80229,-5.80469,2.36004,-1.95662,-5.88729,2.36004,-2.09796,-5.74595,2.70005,-2.28227,-5.80874,2.70005,-2.42361,-5.6674,3.04006,-2.60492,-5.71617,3.04006,-2.74625,-5.57483,3.38007,-2.89459,-5.61258,3.38007,-3.03593,-5.47124,3.72008,-3.18726,-5.50297,3.72008,-3.3286,-5.36163,4.06009,-3.53989,-5.37254,1.34001,-1.57381,-5.93053,1.34001,-1.71515,-6.07187,1.68002,-1.73562,-5.89065,1.68002,-1.87696,-6.03199,2.02003,-1.97537,-5.80469,2.02003,-2.1167,-5.94603,2.36004,-2.26307,-5.74595,2.36004,-2.40441,-5.88729,2.70005,-2.58075,-5.6674,2.70005,-2.72209,-5.80874,3.04006,-2.89544,-5.57483,3.04006,-3.03677,-5.71617,3.38007,-3.17715,-5.47124,3.38007,-3.31849,-5.61258,3.72008,-3.46186,-5.36163,3.72008,-3.60319,-5.50297,4.06009,-3.94785,-5.37254,4.14367,-4.04805,-5.17688,1.34001,-1.71515,-7.33247,1.34001,-1.57381,-7.47381,1.68002,-1.87696,-7.21566,1.68002,-1.73562,-7.35699,2.02003,-2.1167,-7.07817,2.02003,-1.97537,-7.21951,2.36004,-2.40441,-6.90545,2.36004,-2.26307,-7.04679,2.70005,-2.72209,-6.71918,2.70005,-2.58075,-6.86052,3.04006,-3.03677,-6.48141,3.04006,-2.89544,-6.62275,3.38007,-3.31849,-6.25448,3.38007,-3.17715,-6.39582,3.72008,-3.60319,-6.02777,3.72008,-3.46186,-6.16911,4.06009,-3.94785,-5.71779,4.06009,-3.80651,-5.85913,-1.34001,-1.3848,-7.47381,-1.34001,-1.24347,-7.33247,-1.68002,-1.55458,-7.35699,-1.68002,-1.41324,-7.21566,-2.02003,-1.80229,-7.21951,-2.02003,-1.66095,-7.07817,-2.36004,-2.09796,-7.04679,-2.36004,-1.95662,-6.90545,-2.70005,-2.42361,-6.86052,-2.70005,-2.28227,-6.71918,-3.04006,-2.74625,-6.62275,-3.04006,-2.60492,-6.48141,-3.38007,-3.03593,-6.39582,-3.38007,-2.89459,-6.25448,-3.72008,-3.3286,-6.16911,-3.72008,-3.18726,-6.02777,-4.06009,-3.68123,-5.85913,-4.06009,-3.53989,-5.71779,-1.34001,-1.57381,-7.47381,-1.34001,-1.71515,-7.33247,-1.68002,-1.73562,-7.35699,-1.68002,-1.87696,-7.21566,-2.02003,-1.97537,-7.21951,-2.02003,-2.1167,-7.07817,-2.36004,-2.26307,-7.04679,-2.36004,-2.40441,-6.90545,-2.70005,-2.58075,-6.86052,-2.70005,-2.72209,-6.71918,-3.04006,-2.89544,-6.62275,-3.04006,-3.03677,-6.48141,-3.38007,-3.17715,-6.39582,-3.38007,-3.31849,-6.25448,-3.72008,-3.46186,-6.16911,-3.72008,-3.60319,-6.02777,-4.06009,-3.80651,-5.85913,-4.06009,-3.94785,-5.71779,-1.34001,-1.71515,-6.07187,-1.34001,-1.57381,-5.93053};
			return value;
		}
		private double[] getCoordinate_7_51_point_17()
		{
			double[] value = {-1.68002,-1.87696,-6.03199,-1.68002,-1.73562,-5.89065,-2.02003,-2.1167,-5.94603,-2.02003,-1.97537,-5.80469,-2.36004,-2.40441,-5.88729,-2.36004,-2.26307,-5.74595,-2.70005,-2.72209,-5.80874,-2.70005,-2.58075,-5.6674,-3.04006,-3.03677,-5.71617,-3.04006,-2.89544,-5.57483,-3.38007,-3.31849,-5.61258,-3.38007,-3.17715,-5.47124,-3.72008,-3.60319,-5.50297,-3.72008,-3.46186,-5.36163,-4.06009,-3.94785,-5.37254,-4.06009,-3.80651,-5.2312,-1.34001,-1.3848,-5.93053,-1.34001,-1.24347,-6.07187,-1.68002,-1.55458,-5.89065,-1.68002,-1.41324,-6.03199,-2.02003,-1.80229,-5.80469,-2.02003,-1.66095,-5.94603,-2.36004,-2.09796,-5.74595,-2.36004,-1.95662,-5.88729,-2.70005,-2.42361,-5.6674,-2.70005,-2.28227,-5.80874,-3.04006,-2.74625,-5.57483,-3.04006,-2.60492,-5.71617,-3.38007,-3.03593,-5.47124,-3.38007,-2.89459,-5.61258,-3.72008,-3.3286,-5.36163,-3.72008,-3.18726,-5.50297,-4.06009,-3.68123,-5.2312,-4.06009,-3.53989,-5.37254,4.3106,-3.84607,-5.22123,4.3106,-3.84607,-5.39607,-4.3106,-3.84607,-5.39607,-4.3106,-3.84607,-5.22123,-4.30957,-4.24693,-5.22216,-4.30957,-4.24693,-5.39656,-4.30738,-4.06449,-5.57464,-4.30738,-4.02329,-5.57464,4.28159,-4.01299,-5.08724,4.1786,-3.88711,-5.15418,4.30957,-4.24693,-5.39656,3.92813,-3.61949,-5.28182,3.92813,-3.59977,-5.28182,4.30738,-4.02329,-5.57464,4.30738,-4.06449,-5.57464,-4.28159,-4.01299,-5.08724,-4.28159,-4.01299,-5.08724,-4.4001,-4.0968,-5.32663,-4.4001,-4.21412,-5.32663,-4.4001,-4.21412,-5.15155,-4.4001,-4.0968,-5.15155,4.4001,-4.0968,-5.32663,4.4001,-4.0968,-5.15155,4.4001,-4.21412,-5.15155,4.4001,-4.21412,-5.32663,-.24044,-.41119,-.08768,-.19644,-.39982,-.13018,-.24527,-.39547,-.17369,-.24044,-.35583,-.13018,-.24044,.03705,-.13018,-.24044,.06422,-.08953,-.19644,.08105,-.13018,-.24435,.09233,-.17252,.24044,.06422,-.08953,.19644,.08105,-.13018,.24435,.09233,-.17252,.24044,.03705,-.13018,.24044,-.35583,-.13018,.24044,-.41119,-.08768,.19644,-.39982,-.13018,.24527,-.39547,-.17369,-.24044,-.51564,1.31123,-.24044,-.57646,1.35188,-.24044,-.78507,1.30938,-.24044,-.75245,1.35188,.24044,-.78507,1.30938,.24044,-.75245,1.35188,.24044,-.51564,1.31123,.24044,-.57646,1.35188,2.06151,-.6386,1.07357,2.06151,-.36497,1.07357,-2.06151,-.95002,1.74465,-2.06151,-.36497,1.07357,-2.06151,-.69888,1.11444,-2.06151,-.6386,1.07357,1.15097,-.32601,.15487,1.15097,-.3833,.19681,1.15097,.00724,.15487,1.15097,.03373,.19523,-1.15097,.00724,.15487,-1.15097,.03373,.19523,-1.15097,-.32601,.15487,-1.15097,-.3833,.19681,.42254,-.34986,-.07317,.42254,-.40574,-.03081,.60465,-.3439,-.01616};
			return value;
		}
		private double[] getCoordinate_7_51_point_18()
		{
			double[] value = {.60465,-.40024,.02607,.78676,-.33794,.04085,.78676,-.39465,.08297,.96886,-.33198,.09786,.96886,-.38909,.13985,.42254,.03109,-.07317,.42254,.05793,-.03266,.60465,.02513,-.01616,.60465,.05173,.02425,.78676,.01917,.04085,.78676,.04564,.08121,.96886,.0132,.09786,.96886,.03954,.13816,-.42254,.03109,-.07317,-.42254,.05793,-.03266,-.60465,.02513,-.01616,-.60465,.05173,.02425,-.78676,.01917,.04085,-.78676,.04564,.08121,-.96886,.0132,.09786,-.96886,.03954,.13816,-.42254,-.34986,-.07317,-.42254,-.40574,-.03081,-.60465,-.3439,-.01616,-.60465,-.40024,.02607,-.78676,-.33794,.04085,-.78676,-.39465,.08297,-.96886,-.33198,.09786,-.96886,-.38909,.13985,1.33308,-.32005,.21188,1.33308,-.3775,.25377,1.51519,-.31409,.30549,1.51519,-.37205,.34721,1.69729,-.3341,.42785,1.69729,-.3929,.46929,1.8794,-.41759,.64384,1.8794,-.47697,.68506,1.33308,.00128,.21188,1.33308,.02792,.25231,1.51519,-.00469,.30549,1.51519,.0217,.34581,1.69729,-.03663,.42785,1.69729,-.01085,.4679,1.8794,-.13204,.64384,1.8794,-.1069,.68359,-1.33308,.00128,.21188,-1.33308,.02792,.25231,-1.51519,-.00469,.30549,-1.51519,.0217,.34581,-1.69729,-.03663,.42785,-1.69729,-.01085,.4679,-1.8794,-.13204,.64384,-1.8794,-.1069,.68359,-1.33308,-.32005,.21188,-1.33308,-.3775,.25377,-1.51519,-.31409,.30549,-1.51519,-.37205,.34721,-1.69729,-.3341,.42785,-1.69729,-.3929,.46929,-1.8794,-.41759,.64384,-1.8794,-.47697,.68506,.42254,-.51531,1.32132,.42254,-.57646,1.36184,.60465,-.51507,1.34079,.60465,-.57646,1.3812,.78676,-.51495,1.37276,.78676,-.57646,1.41312,.96886,-.51481,1.40317,.96886,-.57646,1.44346,1.15097,-.51496,1.46011,1.15097,-.57646,1.50047,1.33308,-.51511,1.51705,1.33308,-.57646,1.55748,1.51519,-.51485,1.57417,1.51519,-.57646,1.61449,1.69729,-.54022,1.63146,1.69729,-.60244,1.6715,1.8794,-.58356,1.68876,1.8794,-.6464,1.72851,.42254,-.75245,1.36184,.42254,-.78456,1.31948,.60465,-.75245,1.3812,.60465,-.7841,1.33898,.78676,-.75245,1.41312,.78676,-.78372,1.371,.96886,-.75245,1.44346,.96886,-.78332,1.40147,1.15097,-.75245,1.50047,1.15097,-.78315,1.45853,1.33308,-.75245,1.55748,1.33308,-.78299,1.5156,1.51519,-.75245,1.61449,1.51519,-.78247,1.57277,1.69729,-.77843,1.6715,1.69729,-.80762,1.63007,1.8794,-.82239,1.72851,1.8794,-.851,1.68729,-.42254,-.78456,1.31948,-.42254,-.75245,1.36184,-.60465,-.7841,1.33898};
			return value;
		}
		private double[] getCoordinate_7_51_point_19()
		{
			double[] value = {-.60465,-.75245,1.3812,-.78676,-.78372,1.371,-.78676,-.75245,1.41312,-.96886,-.78332,1.40147,-.96886,-.75245,1.44346,-1.15097,-.78315,1.45853,-1.15097,-.75245,1.50047,-1.33308,-.78299,1.5156,-1.33308,-.75245,1.55748,-1.51519,-.78247,1.57277,-1.51519,-.75245,1.61449,-1.69729,-.80762,1.63007,-1.69729,-.77843,1.6715,-1.8794,-.851,1.68729,-1.8794,-.82239,1.72851,-.42254,-.57646,1.36184,-.42254,-.51531,1.32132,-.60465,-.57646,1.3812,-.60465,-.51507,1.34079,-.78676,-.57646,1.41312,-.78676,-.51495,1.37276,-.96886,-.57646,1.44346,-.96886,-.51481,1.40317,-1.15097,-.57646,1.50047,-1.15097,-.51496,1.46011,-1.33308,-.57646,1.55748,-1.33308,-.51511,1.51705,-1.51519,-.57646,1.61449,-1.51519,-.51485,1.57417,-1.69729,-.60244,1.6715,-1.69729,-.54022,1.63146,-1.8794,-.6464,1.72851,-1.8794,-.58356,1.68876,.12022,-.75245,1.30169,0.0,-.75245,1.27503,-.12022,-.75245,1.30169,-.12022,-.57646,1.30169,-.12022,-.51514,1.26125,0.0,-.57646,1.27503,0.0,-.51486,1.23471,.12022,-.57646,1.30169,.12022,-.51514,1.26125,-2.01952,-.72895,1.77238,-2.01952,-.8936,1.77238,2.01952,-.8936,1.77238,2.01952,-.72895,1.77238,-2.06151,-.72867,1.74153,2.01811,-.66189,1.72597,2.0186,-.31605,1.085,-2.0186,-.31605,1.085,-2.01811,-.66189,1.72597,.13313,-.78521,1.26098,0.0,-.78448,1.23166,-.13313,-.78521,1.26098,2.06151,-.72867,1.74153,2.06151,-.90141,1.74153,2.01995,-.67224,1.08658,2.01963,-.92834,1.72678};
			return value;
		}


		/** Define subarrays using type double[] */
		private double[] getTextureCoordinate_7_52_point_1()
		{
			double[] value = {.466,.698,.534,.698,.391,.516,.396,.521,.408,.537,.392,.902,.392,.902,.392,.902,.392,.902,.608,.902,.608,.902,.608,.902,.608,.902,.609,.516,.604,.521,.592,.537,.386,.524,.392,.902,.392,.902,.608,.902,.608,.902,.614,.524,.462,.762,.439,.731,.42,.692,.398,.566,.464,.881,.442,.923,.424,.947,.402,.906,.536,.881,.558,.923,.576,.947,.598,.906,.538,.762,.561,.731,.58,.692,.602,.566,.434,.575,.441,.626,.449,.664,.457,.685,.566,.575,.559,.626,.551,.668,.543,.68,.469,.946,.531,.946,.46,.97,.54,.97,.465,.971,.535,.971,.5,1.0,.5,.954,.5,.978,.424,.532,.43,.54,.432,.558,.394,.9,.397,.897,.4,.895,.606,.9,.603,.897,.6,.895,.576,.532,.57,.54,.568,.558,.435,.588,.437,.605,.439,.619,.443,.634,.445,.645,.447,.658,.451,.671,.453,.674,.455,.681,.459,.683,.461,.683,.463,.692,.565,.588,.563,.605,.561,.619,.557,.634,.555,.645,.553,.658,.549,.671,.547,.674,.545,.678,.541,.683,.539,.683,.537,.692,.557,.492,.5,.483,.443,.492,.557,.492,.5,.483,.443,.492,.557,.494,.5,.485,.443,.494};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_2()
		{
			double[] value = {.557,.508,.5,.499,.443,.508,.443,.492,.5,.483,.557,.492,.443,.508,.5,.499,.557,.508,.433,.935,.567,.935,.437,.929,.563,.929,.454,.942,.44,.965,.485,.952,.546,.942,.48,.975,.56,.965,.463,.974,.537,.974,.467,.962,.533,.962,.518,.986,.482,.986,.515,.952,.52,.975,.5,.99,.5,.98,.429,.941,.571,.941,.447,.958,.553,.958,.451,.952,.519,.983,.556,.963,.484,.971,.481,.983,.516,.971,.444,.963,.549,.952,.5,.89,.5,.945,.472,.89,.481,.89,.491,.89,.423,.926,.449,.934,.474,.94,.509,.89,.519,.89,.528,.89,.526,.94,.551,.934,.577,.926,.5,.839,.48,.839,.486,.839,.493,.839,.507,.839,.514,.839,.52,.839,.5,.888,.5,.936,.5,.941,.5,.947,.5,.954,.5,.941,.5,.941,.5,.902,.5,.911,.5,.921,.5,.931,.5,.894,.5,.897,.5,.899,.5,.909,.5,.907,.5,.904,.5,.919,.5,.916,.5,.914,.5,.928,.5,.926,.5,.923,.5,.946,.5,.939,.5,.933,.462,.866,.474,.877,.487,.884,.415,.922,.443,.93,.472,.936,.415,.922,.443,.93,.472,.936,.415,.922,.443,.93,.472,.938};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_3()
		{
			double[] value = {.415,.922,.443,.932,.472,.942,.585,.922,.557,.93,.528,.936,.585,.922,.557,.93,.528,.936,.549,.88,.533,.89,.516,.897,.558,.89,.539,.9,.519,.907,.567,.899,.545,.91,.522,.917,.576,.909,.551,.919,.525,.926,.542,.873,.528,.883,.514,.89,.545,.875,.53,.886,.515,.893,.547,.878,.531,.888,.516,.895,.444,.887,.463,.898,.481,.905,.446,.885,.464,.895,.482,.902,.449,.882,.466,.893,.483,.9,.435,.897,.457,.907,.478,.914,.437,.894,.458,.905,.479,.912,.44,.892,.46,.902,.48,.909,.426,.906,.451,.917,.475,.924,.428,.904,.452,.915,.476,.922,.431,.902,.454,.912,.477,.919,.417,.916,.445,.927,.472,.936,.419,.914,.446,.925,.473,.933,.422,.911,.448,.922,.474,.929,.513,.884,.526,.877,.538,.866,.528,.936,.557,.93,.585,.922,.528,.936,.557,.93,.585,.922,.528,.938,.557,.93,.585,.922,.528,.942,.557,.932,.585,.922,.472,.936,.443,.93,.415,.922,.472,.936,.443,.93,.415,.922,.484,.897,.467,.89,.451,.88,.481,.907,.461,.9,.442,.89,.478,.917,.455,.91,.433,.899,.475,.926,.449,.919,.424,.909,.486,.89};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_4()
		{
			double[] value = {.472,.883,.458,.873,.485,.893,.47,.886,.455,.875,.484,.895,.469,.888,.453,.878,.519,.905,.537,.898,.556,.887,.518,.902,.536,.895,.554,.885,.517,.9,.534,.893,.551,.882,.522,.914,.543,.907,.565,.897,.521,.912,.542,.905,.563,.894,.52,.909,.54,.902,.56,.892,.525,.924,.549,.917,.574,.906,.524,.922,.548,.915,.572,.904,.523,.919,.546,.912,.569,.902,.528,.936,.555,.927,.583,.916,.527,.933,.554,.925,.581,.914,.526,.929,.552,.922,.578,.911,.455,.733,.449,.768,.449,.789,.449,.824,.551,.824,.551,.789,.551,.768,.545,.733,.619,.831,.624,.75,.624,.67,.619,.589,.619,.831,.625,.753,.624,.671,.619,.59,.614,.834,.619,.679,.614,.602,.381,.589,.375,.67,.375,.75,.381,.831,.381,.59,.375,.671,.375,.753,.381,.831,.386,.602,.38,.679,.386,.834,.619,.602,.624,.679,.624,.756,.619,.834,.381,.834,.375,.756,.375,.679,.381,.602,.538,.864,.538,.839,.538,.813,.538,.787,.564,.892,.567,.852,.567,.812,.564,.771,.583,.903,.587,.85,.587,.797,.583,.744,.607,.845,.612,.775,.612,.706,.607,.636,.462,.787,.462,.813};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_5()
		{
			double[] value = {.462,.839,.462,.864,.436,.771,.433,.812,.433,.852,.436,.892,.417,.744,.413,.797,.417,.85,.417,.903,.393,.636,.388,.706,.388,.775,.393,.845,.558,.721,.566,.763,.566,.79,.566,.831,.568,.694,.578,.741,.578,.788,.578,.835,.579,.66,.59,.718,.59,.776,.59,.834,.589,.632,.602,.7,.602,.767,.602,.834,.434,.834,.434,.795,.434,.769,.442,.73,.422,.834,.422,.786,.422,.739,.432,.691,.41,.834,.41,.776,.41,.718,.421,.66,.398,.834,.398,.767,.398,.7,.411,.632,.55,.729,.557,.767,.557,.79,.557,.828,.552,.723,.56,.762,.56,.788,.56,.828,.555,.723,.563,.763,.563,.79,.563,.83,.443,.828,.443,.79,.443,.767,.45,.729,.44,.828,.44,.788,.44,.762,.448,.723,.437,.83,.437,.79,.437,.763,.445,.723,.575,.835,.575,.791,.575,.746,.566,.701,.572,.835,.572,.793,.572,.75,.563,.708,.569,.834,.569,.792,.569,.751,.56,.71,.587,.834,.587,.778,.587,.722,.576,.666,.584,.834,.584,.781,.584,.728,.573,.674,.581,.835,.581,.784,.581,.734,.571,.684,.599,.834,.599,.769,.599,.703,.587,.638,.596,.833,.596,.77};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_6()
		{
			double[] value = {.596,.707,.584,.644,.593,.834,.593,.774,.593,.714,.581,.654,.611,.833,.611,.758,.611,.683,.597,.607,.608,.76,.608,.686,.595,.613,.605,.833,.605,.761,.605,.69,.592,.619,.434,.701,.425,.746,.425,.791,.425,.835,.437,.708,.428,.75,.428,.793,.428,.835,.44,.718,.431,.757,.431,.796,.431,.836,.424,.666,.413,.722,.413,.778,.413,.834,.427,.674,.416,.728,.416,.781,.416,.834,.429,.684,.419,.734,.419,.784,.419,.835,.413,.638,.401,.703,.401,.769,.401,.834,.416,.644,.404,.707,.404,.77,.404,.833,.419,.654,.407,.714,.407,.774,.407,.834,.403,.607,.389,.683,.389,.758,.389,.833,.405,.613,.392,.686,.392,.76,.408,.619,.395,.69,.395,.761,.395,.833,.619,.834,.624,.756,.624,.679,.381,.834,.375,.756,.375,.679,.375,.679,.375,.756,.381,.834,.624,.679,.624,.756,.619,.834,.416,.667,.411,.642,.407,.613,.402,.586,.42,.939,.415,.931,.411,.919,.407,.91,.58,.939,.585,.931,.589,.919,.593,.91,.584,.667,.589,.642,.593,.613,.598,.586,.5,.947,.5,.955,.5,.965,.5,.972,.479,.969,.478,.962,.477,.951,.476,.942};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_7()
		{
			double[] value = {.458,.963,.456,.956,.453,.945,.451,.936,.437,.958,.433,.95,.43,.938,.427,.929,.524,.942,.523,.951,.522,.962,.521,.969,.549,.936,.547,.945,.544,.956,.542,.963,.573,.929,.57,.938,.567,.95,.563,.958,.602,.852,.598,.865,.593,.88,.588,.892,.607,.786,.602,.802,.597,.821,.592,.836,.607,.719,.602,.739,.597,.761,.592,.779,.602,.653,.598,.676,.593,.702,.588,.723,.398,.653,.402,.676,.407,.702,.412,.723,.393,.719,.398,.739,.403,.761,.408,.779,.393,.786,.399,.802,.405,.821,.411,.836,.398,.852,.402,.865,.407,.88,.412,.892,.439,.926,.561,.926,.432,.956,.47,.972,.55,.967,.461,.973,.539,.973,.466,.967,.534,.967,.526,.979,.491,.993,.51,.976,.5,.996,.5,.99,.431,.938,.569,.938,.44,.946,.56,.946,.435,.932,.565,.932,.45,.967,.49,.976,.568,.956,.464,.973,.536,.973,.468,.956,.532,.956,.509,.993,.474,.979,.53,.972,.5,.987,.5,.97,.426,.944,.574,.944,.456,.968,.544,.968,.449,.955,.518,.985,.558,.964,.484,.964,.481,.982,.516,.964,.442,.964,.548,.947,.452,.947,.519,.982,.554,.961,.483,.979};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_8()
		{
			double[] value = {.482,.985,.517,.979,.446,.961,.551,.955,.444,.94,.528,.979,.547,.97,.492,.975,.472,.979,.525,.968,.436,.952,.556,.94,.459,.958,.509,.987,.564,.952,.475,.968,.491,.987,.508,.975,.453,.97,.541,.958,.442,.943,.527,.98,.548,.97,.492,.967,.471,.979,.524,.961,.434,.954,.554,.937,.46,.953,.51,.984,.562,.949,.474,.974,.491,.99,.509,.984,.455,.969,.543,.964,.446,.937,.529,.979,.545,.969,.491,.984,.473,.98,.526,.974,.438,.949,.558,.943,.457,.964,.509,.99,.566,.954,.476,.961,.49,.984,.508,.967,.452,.97,.54,.953,.448,.933,.477,.949,.538,.944,.508,.953,.462,.944,.492,.953,.552,.933,.523,.949,.496,.997,.5,.998,.5,.996,.504,.997,.504,.987,.496,.987,.505,.993,.495,.993,.491,.991,.491,.988,.509,.991,.509,.988,.496,.995,.504,.995,.504,.992,.496,.992,.479,.698,.5,.698,.521,.698,.474,.818,.5,.816,.526,.818,.474,.789,.5,.789,.526,.789,.474,.768,.5,.768,.526,.768,.474,.733,.5,.733,.526,.733,.519,.86,.5,.858,.481,.86,.513,.87,.5,.872,.487,.87,.506,.881,.5,.882,.494,.881};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_9()
		{
			double[] value = {.473,.698,.462,.821,.462,.789,.462,.768,.462,.733,.489,.698,.511,.698,.527,.698,.487,.816,.513,.816,.538,.821,.487,.789,.513,.789,.538,.789,.487,.768,.513,.768,.538,.768,.487,.733,.513,.733,.538,.733,.529,.864,.519,.874,.51,.881,.51,.858,.49,.858,.471,.864,.506,.871,.494,.871,.481,.874,.503,.882,.497,.882,.49,.881,.474,.676,.491,.673,.509,.673,.526,.673,.47,.657,.49,.656,.51,.657,.53,.659,.465,.619,.488,.617,.512,.617,.535,.619,.46,.567,.487,.566,.513,.566,.54,.567,.478,.684,.493,.682,.507,.682,.522,.684,.477,.675,.492,.673,.508,.673,.523,.675,.475,.675,.492,.673,.508,.673,.525,.675,.473,.672,.491,.67,.509,.669,.527,.671,.472,.667,.491,.665,.509,.665,.528,.667,.471,.663,.49,.661,.51,.661,.529,.663,.468,.65,.489,.649,.511,.649,.532,.65,.467,.638,.489,.636,.511,.636,.533,.638,.466,.626,.489,.625,.511,.625,.534,.626,.464,.611,.488,.609,.512,.609,.536,.611,.462,.597,.487,.595,.513,.595,.538,.597,.461,.58,.487,.578,.513,.578,.539,.58,.459,.55,.486,.548,.514,.548,.541,.55};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_10()
		{
			double[] value = {.458,.532,.486,.53,.514,.53,.542,.532,.457,.522,.486,.516,.514,.516,.543,.522,.486,.746,.5,.746,.514,.746,.519,.745,.5,.736,.481,.745,.531,.715,.5,.706,.469,.715,.54,.675,.5,.666,.46,.675,.551,.55,.5,.541,.449,.55,.451,.57,.5,.561,.549,.57,.453,.597,.5,.588,.547,.597,.456,.626,.5,.617,.544,.626,.458,.651,.5,.642,.542,.651,.453,.853,.455,.857,.457,.86,.459,.863,.438,.858,.436,.846,.435,.84,.427,.865,.424,.85,.423,.842,.415,.873,.412,.854,.411,.844,.404,.88,.4,.858,.399,.846,.552,.86,.549,.863,.547,.866,.545,.87,.554,.862,.552,.865,.55,.869,.547,.872,.557,.865,.555,.868,.552,.871,.55,.874,.447,.851,.444,.839,.444,.834,.444,.853,.441,.84,.441,.834,.441,.855,.439,.843,.438,.836,.571,.864,.573,.85,.574,.842,.568,.862,.57,.848,.571,.842,.565,.859,.567,.847,.568,.84,.582,.871,.585,.852,.586,.843,.579,.869,.582,.852,.583,.843,.576,.867,.579,.851,.58,.843,.593,.878,.597,.856,.598,.845,.59,.876,.594,.855,.595,.844,.587,.875,.591,.855,.592,.845,.6,.87};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_11()
		{
			double[] value = {.603,.858,.541,.863,.543,.86,.545,.857,.547,.853,.455,.87,.453,.866,.451,.863,.448,.86,.453,.872,.45,.869,.448,.865,.446,.862,.45,.874,.448,.871,.445,.868,.443,.865,.624,.719,.624,.703,.624,.687,.615,.818,.616,.803,.616,.773,.619,.741,.619,.725,.619,.71,.619,.694,.375,.687,.375,.703,.375,.719,.38,.694,.38,.71,.38,.725,.38,.741,.384,.773,.384,.803,.385,.818,.565,.838,.564,.844,.562,.857,.577,.843,.576,.85,.573,.865,.589,.844,.588,.854,.585,.873,.602,.78,.602,.794,.602,.807,.602,.821,.601,.846,.6,.858,.596,.88,.398,.821,.398,.807,.398,.794,.398,.78,.556,.834,.556,.839,.554,.851,.559,.834,.559,.84,.556,.853,.562,.836,.561,.843,.559,.855,.611,.818,.608,.789,.606,.819,.608,.789,.608,.774,.605,.818,.605,.804,.605,.79,.605,.776,.426,.842,.427,.85,.43,.864,.429,.842,.43,.848,.432,.862,.432,.842,.433,.848,.435,.86,.414,.843,.415,.852,.418,.871,.417,.843,.418,.852,.421,.869,.42,.843,.421,.851,.424,.867,.402,.845,.403,.856,.407,.878,.405,.844,.406,.855,.41,.876,.408,.845};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_12()
		{
			double[] value = {.409,.855,.413,.875,.392,.789,.389,.818,.392,.774,.392,.789,.395,.819,.395,.776,.395,.79,.395,.804,.395,.818,.397,.858,.4,.87,.52,.857,.521,.854,.522,.851,.523,.847,.5,.855,.5,.852,.5,.849,.5,.845,.48,.857,.479,.854,.478,.851,.477,.847,.53,.861,.532,.857,.534,.854,.535,.851,.512,.845,.511,.849,.511,.852,.51,.855,.488,.845,.489,.849,.489,.852,.49,.855,.465,.851,.466,.854,.468,.857,.47,.861,.548,.845,.55,.835,.551,.829,.449,.829,.45,.835,.452,.845,.524,.839,.525,.829,.525,.823,.5,.837,.5,.826,.5,.821,.476,.839,.475,.829,.475,.823,.536,.842,.538,.832,.538,.827,.513,.821,.513,.826,.512,.837,.487,.821,.487,.826,.488,.837,.462,.827,.462,.832,.464,.842,.62,.815,.621,.799,.622,.783,.607,.804,.604,.833,.566,.882,.549,.895,.557,.888,.559,.891,.575,.862,.574,.87,.572,.864,.575,.866,.613,.803,.606,.804,.393,.804,.396,.833,.378,.783,.379,.799,.38,.815,.391,.833,.402,.894,.452,.851,.451,.849,.548,.851,.549,.849,.403,.891,.404,.893,.403,.893,.415,.884,.415,.881,.427,.874};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_13()
		{
			double[] value = {.426,.872,.438,.865,.438,.862,.597,.893,.596,.893,.597,.891,.585,.881,.585,.884,.574,.872,.573,.874,.562,.862,.562,.865,.407,.891,.406,.888,.41,.889,.409,.886,.413,.886,.412,.884,.418,.882,.418,.879,.421,.879,.42,.876,.424,.877,.423,.874,.43,.872,.429,.869,.433,.87,.432,.867,.435,.867,.435,.864,.441,.863,.44,.86,.444,.86,.443,.857,.447,.858,.446,.855,.594,.888,.593,.891,.591,.886,.59,.889,.588,.884,.587,.886,.582,.879,.582,.882,.58,.876,.579,.879,.577,.874,.576,.877,.571,.869,.57,.872,.568,.867,.567,.87,.565,.864,.565,.867,.56,.86,.559,.863,.557,.857,.556,.86,.554,.855,.553,.858,.619,.754,.619,.756,.619,.758,.62,.756,.38,.754,.381,.756,.381,.758,.38,.756,.608,.833,.607,.835,.607,.833,.607,.831,.393,.833,.393,.831,.392,.833,.393,.835,.476,.846,.476,.843,.5,.844,.5,.841,.524,.846,.524,.843,.464,.849,.463,.846,.488,.844,.488,.841,.512,.844,.512,.841,.536,.849,.537,.846,.436,.85,.437,.853,.424,.856,.425,.86,.413,.862,.413,.865,.401,.867,.402,.871,.401,.869,.445,.847};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_14()
		{
			double[] value = {.445,.843,.442,.848,.442,.845,.44,.85,.439,.847,.572,.858,.573,.855,.569,.857,.57,.853,.566,.855,.567,.851,.584,.864,.584,.86,.581,.862,.581,.859,.578,.861,.579,.857,.595,.869,.596,.866,.593,.868,.593,.864,.59,.867,.59,.863,.601,.885,.601,.881,.601,.881,.601,.882,.603,.845,.604,.843,.604,.847,.624,.735,.624,.733,.625,.737,.617,.787,.617,.786,.617,.789,.375,.735,.375,.733,.375,.737,.383,.789,.383,.786,.383,.787,.563,.852,.564,.849,.575,.86,.576,.856,.587,.865,.587,.862,.599,.867,.598,.871,.599,.869,.555,.847,.555,.843,.558,.848,.558,.845,.56,.85,.561,.847,.61,.801,.61,.803,.611,.805,.611,.803,.61,.773,.611,.771,.611,.773,.61,.775,.607,.804,.608,.802,.608,.804,.607,.805,.428,.858,.427,.855,.431,.857,.43,.853,.433,.852,.434,.856,.416,.864,.416,.86,.419,.862,.419,.859,.421,.857,.422,.861,.405,.869,.404,.866,.407,.868,.407,.864,.41,.863,.41,.867,.39,.775,.389,.773,.389,.771,.39,.773,.39,.803,.39,.801,.389,.803,.389,.805,.393,.805,.393,.804,.392,.802,.393,.804,.397,.845};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_15()
		{
			double[] value = {.396,.843,.396,.847,.399,.882,.399,.881,.399,.881,.399,.885,.55,.838,.55,.841,.451,.841,.45,.838,.525,.832,.525,.835,.5,.83,.5,.833,.475,.832,.475,.835,.538,.835,.537,.838,.513,.83,.512,.833,.487,.83,.488,.833,.462,.835,.463,.838,.623,.767,.624,.765,.623,.769,.609,.79,.609,.789,.609,.789,.609,.817,.609,.818,.609,.818,.606,.818,.606,.818,.606,.82,.377,.767,.376,.765,.377,.769,.391,.818,.391,.817,.391,.818,.391,.79,.391,.789,.391,.789,.394,.818,.394,.818,.394,.82,.395,.833,.395,.833,.395,.835,.398,.858,.398,.858,.605,.833,.605,.833,.605,.835,.602,.858,.602,.858,.386,.509,.39,.504,.388,.511,.385,.536,.615,.536,.612,.511,.61,.504,.614,.509,.385,.536,.386,.512,.39,.504,.386,.509,.614,.509,.61,.504,.614,.512,.615,.536,.619,.602,.621,.629,.619,.597,.617,.574,.383,.574,.381,.602,.379,.629,.381,.597,.617,.574,.619,.602,.621,.629,.619,.602,.381,.602,.379,.629,.381,.602,.383,.574,.991,0.0,.652,.583,.652,.555,.691,.55,.691,.522,.73,.502,.73,.475,.768,.445,.768,.417,.807,.382};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_16()
		{
			double[] value = {.807,.354,.845,.319,.845,.292,.884,.263,.884,.236,.923,.207,.923,.179,.961,.138,.961,.111,.652,.583,.652,.555,.691,.55,.691,.522,.73,.502,.73,.475,.768,.445,.768,.417,.807,.382,.807,.354,.845,.319,.845,.292,.884,.263,.884,.236,.923,.207,.923,.179,.961,.138,.652,.519,.652,.491,.691,.487,.691,.46,.73,.441,.73,.414,.768,.385,.768,.358,.807,.324,.807,.297,.845,.263,.845,.236,.884,.209,.884,.181,.923,.153,.923,.126,.961,.059,.971,.04,.652,.491,.652,.519,.691,.46,.691,.487,.73,.414,.73,.441,.768,.358,.768,.385,.807,.297,.807,.324,.845,.236,.845,.263,.884,.181,.884,.209,.923,.126,.923,.153,.961,.059,.961,.087,.348,.555,.348,.583,.309,.522,.309,.55,.27,.475,.27,.502,.232,.417,.232,.445,.193,.354,.193,.382,.155,.292,.155,.319,.116,.236,.116,.263,.077,.179,.077,.207,.039,.111,.039,.138,.348,.519,.348,.491,.309,.487,.309,.46,.27,.441,.27,.414,.232,.385,.232,.358,.193,.324,.193,.297,.155,.263,.155,.236,.116,.209,.116,.181,.077,.153,.077,.126,.039,.087,.039,.059,.348,.491,.348,.519};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_17()
		{
			double[] value = {.309,.46,.309,.487,.27,.414,.27,.441,.232,.358,.232,.385,.193,.297,.193,.324,.155,.236,.155,.263,.116,.181,.116,.209,.077,.126,.077,.153,.039,.059,.039,.087,.348,.555,.348,.583,.309,.522,.309,.55,.27,.475,.27,.502,.232,.417,.232,.445,.193,.354,.193,.382,.155,.292,.155,.319,.116,.236,.116,.263,.077,.179,.077,.207,.039,.111,.039,.138,.99,.079,.99,.079,.01,.079,.01,.079,.01,.002,.01,.002,.011,.037,.011,.045,.987,.047,.975,.071,.99,.002,.946,.123,.946,.127,.989,.045,.989,.037,.013,.047,.013,.047,0.0,.031,0.0,.008,0.0,.008,0.0,.031,1.0,.031,1.0,.031,1.0,.008,1.0,.008,.473,.744,.478,.746,.472,.747,.473,.754,.473,.83,.473,.836,.478,.839,.472,.841,.527,.836,.522,.839,.528,.841,.527,.83,.527,.754,.527,.744,.522,.746,.528,.747,.473,.723,.473,.712,.473,.671,.473,.678,.527,.671,.527,.678,.527,.723,.527,.712,.734,.7,.734,.753,.266,.639,.266,.753,.266,.688,.266,.7,.631,.76,.631,.749,.631,.825,.631,.83,.369,.825,.369,.83,.369,.76,.369,.749,.548,.756,.548,.745,.569,.757};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_18()
		{
			double[] value = {.569,.746,.589,.758,.589,.747,.61,.759,.61,.748,.548,.829,.548,.834,.569,.828,.569,.833,.589,.827,.589,.832,.61,.826,.61,.831,.452,.829,.452,.834,.431,.828,.431,.833,.411,.827,.411,.832,.39,.826,.39,.831,.452,.756,.452,.745,.431,.757,.431,.746,.411,.758,.411,.747,.39,.759,.39,.748,.651,.761,.651,.75,.672,.762,.672,.751,.693,.759,.693,.747,.714,.742,.714,.731,.651,.823,.651,.829,.672,.822,.672,.827,.693,.816,.693,.821,.714,.798,.714,.803,.349,.823,.349,.829,.328,.822,.328,.827,.307,.816,.307,.821,.286,.798,.286,.803,.349,.761,.349,.75,.328,.762,.328,.751,.307,.759,.307,.747,.286,.742,.286,.731,.548,.724,.548,.712,.569,.724,.569,.712,.589,.724,.589,.712,.61,.724,.61,.712,.631,.724,.631,.712,.651,.724,.651,.712,.672,.724,.672,.712,.693,.719,.693,.707,.714,.71,.714,.698,.548,.678,.548,.671,.569,.678,.569,.672,.589,.678,.589,.672,.61,.678,.61,.672,.631,.678,.631,.672,.651,.678,.651,.672,.672,.678,.672,.672,.693,.673,.693,.667,.714,.664,.714,.659,.452,.671,.452,.678,.431,.672};
			return value;
		}
		private double[] getTextureCoordinate_7_52_point_19()
		{
			double[] value = {.431,.678,.411,.672,.411,.678,.39,.672,.39,.678,.369,.672,.369,.678,.349,.672,.349,.678,.328,.672,.328,.678,.307,.667,.307,.673,.286,.659,.286,.664,.452,.712,.452,.724,.431,.712,.431,.724,.411,.712,.411,.724,.39,.712,.39,.724,.369,.712,.369,.724,.349,.712,.349,.724,.328,.712,.328,.724,.307,.707,.307,.719,.286,.698,.286,.71,.514,.678,.5,.678,.486,.678,.486,.712,.486,.724,.5,.712,.5,.724,.514,.712,.514,.724,.271,.682,.271,.65,.729,.65,.729,.682,.266,.682,.729,.695,.729,.762,.271,.762,.271,.695,.515,.671,.5,.671,.485,.671,.734,.682,.734,.649,.73,.693,.729,.644};
			return value;
		}

		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=6, element #25, 768 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getIndexedFaceSet_6_25_coordIndex()
		{
			MFInt32 IndexedFaceSet_6_25_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_6_25_coordIndex_1()));
			return IndexedFaceSet_6_25_coordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #25, 294 total numbers made up of 98 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_25_point()
		{
			MFVec3f Coordinate_7_25_point = new MFVec3f(new double[] {-.88237,-.00709,-8.40367,-.88319,-.01485,-8.36446,-.88551,-.03694,-8.33122,-.88898,-.06999,-8.30902,-.89308,-.10898,-8.30122,-.89718,-.14798,-8.30902,-.90065,-.18103,-8.33122,-.90297,-.20312,-8.36446,-.90379,-.21088,-8.40367,-.90297,-.20312,-8.44288,-.90065,-.18103,-8.47611,-.89718,-.14798,-8.49832,-.89308,-.10898,-8.50612,-.88898,-.06999,-8.49832,-.88551,-.03694,-8.47611,-.88319,-.01485,-8.44288,-.88258,-.00907,-8.38369,-.88258,-.00907,-8.42365,-.88418,-.02428,-8.34676,-.88713,-.05239,-8.3185,-.89099,-.08911,-8.3032,-.89517,-.12886,-8.3032,-.89903,-.16558,-8.3185,-.90198,-.19369,-8.34676,-.90358,-.2089,-8.38369,-.90358,-.2089,-8.42365,-.90198,-.19369,-8.46058,-.89903,-.16558,-8.48884,-.89517,-.12886,-8.50413,-.89099,-.08911,-8.50413,-.88713,-.05239,-8.48884,-.88418,-.02428,-8.46058,-.89308,-.10898,-8.40367,-1.00668,-.09704,-8.40367,-1.04832,.01035,-8.40367,-1.04914,.00259,-8.36446,-1.05146,-.01949,-8.33122,-1.05493,-.05255,-8.30902,-1.05903,-.09154,-8.30122,-1.06313,-.13053,-8.30902,-1.0666,-.16359,-8.33122,-1.06892,-.18568,-8.36446,-1.06974,-.19343,-8.40367,-1.06892,-.18568,-8.44288,-1.0666,-.16359,-8.47611,-1.06313,-.13053,-8.49832,-1.05903,-.09154,-8.50612,-1.05493,-.05255,-8.49832,-1.05146,-.01949,-8.47611,-1.04914,.00259,-8.44288,-1.06512,-.02032,-8.38971,-1.04853,.00837,-8.38369,-1.04853,.00837,-8.42365,-1.06512,-.02032,-8.41763,-1.06624,-.03094,-8.3639,-1.05013,-.00684,-8.34676,-1.0683,-.05058,-8.34416,-1.05308,-.03495,-8.3185,-1.071,-.07624,-8.33347,-1.05694,-.07167,-8.3032,-1.07392,-.10402,-8.33347,-1.06112,-.11142,-8.3032,-1.07661,-.12968,-8.34416,-1.06498,-.14814,-8.3185,-1.07868,-.14932,-8.3639,-1.06793,-.17625,-8.34676,-1.0798,-.15995,-8.38971,-1.06953,-.19146,-8.38369,-1.0798,-.15995,-8.41763,-1.06953,-.19146,-8.42365,-1.07868,-.14932,-8.44343,-1.06793,-.17625,-8.46058,-1.07661,-.12968,-8.46318,-1.06498,-.14814,-8.48884,-1.07392,-.10402,-8.47387,-1.06112,-.11142,-8.50413,-1.071,-.07624,-8.47387,-1.05694,-.07167,-8.50413,-1.0683,-.05058,-8.46318,-1.05308,-.03495,-8.48884,-1.06624,-.03094,-8.44343,-1.05013,-.00684,-8.46058,-1.07767,-.14043,-8.45423,-1.07929,-.15584,-8.43103,-1.06491,-.01902,-8.40367,-1.06953,-.06292,-8.3376,-1.06548,-.02443,-8.3763,-1.0671,-.03985,-8.3531,-1.07239,-.09014,-8.47518,-1.06548,-.02443,-8.43103,-1.0671,-.03985,-8.45423,-1.07525,-.11735,-8.3376,-1.07239,-.09014,-8.33216,-1.07525,-.11735,-8.46973,-1.07986,-.16126,-8.40367,-1.07767,-.14043,-8.3531,-1.06953,-.06292,-8.46973,-1.07929,-.15584,-8.3763});
			return Coordinate_7_25_point;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=6, element #31, 768 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getIndexedFaceSet_6_31_coordIndex()
		{
			MFInt32 IndexedFaceSet_6_31_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_6_31_coordIndex_1()));
			return IndexedFaceSet_6_31_coordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #31, 294 total numbers made up of 98 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_31_point()
		{
			MFVec3f Coordinate_7_31_point = new MFVec3f(new double[] {.90168,-.21088,-8.40367,.90087,-.20312,-8.36446,.89855,-.18103,-8.33122,.89507,-.14798,-8.30902,.89097,-.10898,-8.30122,.88687,-.06999,-8.30902,.8834,-.03694,-8.33122,.88108,-.01485,-8.36446,.88026,-.00709,-8.40367,.88108,-.01485,-8.44288,.8834,-.03694,-8.47611,.88687,-.06999,-8.49832,.89097,-.10898,-8.50612,.89507,-.14798,-8.49832,.89855,-.18103,-8.47611,.90087,-.20312,-8.44288,.90147,-.2089,-8.38369,.90147,-.2089,-8.42365,.89987,-.19369,-8.34676,.89692,-.16558,-8.3185,.89306,-.12886,-8.3032,.88888,-.08911,-8.3032,.88502,-.05239,-8.3185,.88207,-.02428,-8.34676,.88047,-.00907,-8.38369,.88047,-.00907,-8.42365,.88207,-.02428,-8.46058,.88502,-.05239,-8.48884,.88888,-.08911,-8.50413,.89306,-.12886,-8.50413,.89692,-.16558,-8.48884,.89987,-.19369,-8.46058,.89097,-.10898,-8.40367,1.00457,-.09704,-8.40367,1.06763,-.19343,-8.40367,1.06682,-.18568,-8.36446,1.0645,-.16359,-8.33122,1.06102,-.13053,-8.30902,1.05692,-.09154,-8.30122,1.05282,-.05255,-8.30902,1.04935,-.01949,-8.33122,1.04703,.00259,-8.36446,1.04621,.01035,-8.40367,1.04703,.00259,-8.44288,1.04935,-.01949,-8.47611,1.05282,-.05255,-8.49832,1.05692,-.09154,-8.50612,1.06102,-.13053,-8.49832,1.0645,-.16359,-8.47611,1.06682,-.18568,-8.44288,1.07769,-.15995,-8.38971,1.06742,-.19146,-8.38369,1.06742,-.19146,-8.42365,1.07769,-.15995,-8.41763,1.07657,-.14932,-8.3639,1.06583,-.17625,-8.34676,1.07451,-.12968,-8.34416,1.06287,-.14814,-8.3185,1.07181,-.10402,-8.33347,1.05901,-.11142,-8.3032,1.06889,-.07624,-8.33347,1.05483,-.07167,-8.3032,1.06619,-.05058,-8.34416,1.05097,-.03495,-8.3185,1.06413,-.03094,-8.3639,1.04802,-.00684,-8.34676,1.06301,-.02032,-8.38971,1.04642,.00837,-8.38369,1.06301,-.02032,-8.41763,1.04642,.00837,-8.42365,1.06413,-.03094,-8.44343,1.04802,-.00684,-8.46058,1.06619,-.05058,-8.46318,1.05097,-.03495,-8.48884,1.06889,-.07624,-8.47387,1.05483,-.07167,-8.50413,1.07181,-.10402,-8.47387,1.05901,-.11142,-8.50413,1.07451,-.12968,-8.46318,1.06287,-.14814,-8.48884,1.07657,-.14932,-8.44343,1.06583,-.17625,-8.46058,1.06499,-.03985,-8.45423,1.06337,-.02443,-8.43103,1.07775,-.16126,-8.40367,1.07314,-.11735,-8.3376,1.07718,-.15584,-8.3763,1.07556,-.14043,-8.3531,1.07028,-.09014,-8.47518,1.07718,-.15584,-8.43103,1.07556,-.14043,-8.45423,1.06742,-.06292,-8.3376,1.07028,-.09014,-8.33216,1.06742,-.06292,-8.46973,1.0628,-.01902,-8.40367,1.06499,-.03985,-8.3531,1.07314,-.11735,-8.46973,1.06337,-.02443,-8.3763});
			return Coordinate_7_31_point;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=6, element #37, 3840 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getIndexedFaceSet_6_37_coordIndex()
		{
			MFInt32 IndexedFaceSet_6_37_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_6_37_coordIndex_1()))
				.append(new MFInt32(getIndexedFaceSet_6_37_coordIndex_2()))
				.append(new MFInt32(getIndexedFaceSet_6_37_coordIndex_3()))
				.append(new MFInt32(getIndexedFaceSet_6_37_coordIndex_4()));
			return IndexedFaceSet_6_37_coordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #37, 1446 total numbers made up of 482 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_37_point()
		{
			MFVec3f Coordinate_7_37_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_37_point_1()))
				.append(new MFVec3f(getCoordinate_7_37_point_2()))
				.append(new MFVec3f(getCoordinate_7_37_point_3()))
				.append(new MFVec3f(getCoordinate_7_37_point_4()))
				.append(new MFVec3f(getCoordinate_7_37_point_5()));
			return Coordinate_7_37_point;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=6, element #43, 3840 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getIndexedFaceSet_6_43_coordIndex()
		{
			MFInt32 IndexedFaceSet_6_43_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_6_43_coordIndex_1()))
				.append(new MFInt32(getIndexedFaceSet_6_43_coordIndex_2()))
				.append(new MFInt32(getIndexedFaceSet_6_43_coordIndex_3()))
				.append(new MFInt32(getIndexedFaceSet_6_43_coordIndex_4()));
			return IndexedFaceSet_6_43_coordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #43, 1446 total numbers made up of 482 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_43_point()
		{
			MFVec3f Coordinate_7_43_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_43_point_1()))
				.append(new MFVec3f(getCoordinate_7_43_point_2()))
				.append(new MFVec3f(getCoordinate_7_43_point_3()))
				.append(new MFVec3f(getCoordinate_7_43_point_4()))
				.append(new MFVec3f(getCoordinate_7_43_point_5()));
			return Coordinate_7_43_point;
		}
		/** Large attribute array: IndexedFaceSet coordIndex field, scene-graph level=6, element #51, 14848 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getIndexedFaceSet_6_51_coordIndex()
		{
			MFInt32 IndexedFaceSet_6_51_coordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_1()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_2()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_3()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_4()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_5()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_6()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_7()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_8()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_9()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_10()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_11()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_12()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_13()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_14()))
				.append(new MFInt32(getIndexedFaceSet_6_51_coordIndex_15()));
			return IndexedFaceSet_6_51_coordIndex;
		}
		/** Large attribute array: IndexedFaceSet texCoordIndex field, scene-graph level=6, element #51, 14848 total numbers.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFInt32 getIndexedFaceSet_6_51_texCoordIndex()
		{
			MFInt32 IndexedFaceSet_6_51_texCoordIndex = new MFInt32()/*2.finalize*/
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_1()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_2()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_3()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_4()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_5()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_6()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_7()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_8()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_9()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_10()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_11()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_12()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_13()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_14()))
				.append(new MFInt32(getIndexedFaceSet_6_51_texCoordIndex_15()));
			return IndexedFaceSet_6_51_texCoordIndex;
		}
		/** Large attribute array: Coordinate point field, scene-graph level=7, element #51, 5574 total numbers made up of 1858 3-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec3f getCoordinate_7_51_point()
		{
			MFVec3f Coordinate_7_51_point = new MFVec3f()/*2.finalize*/
				.append(new MFVec3f(getCoordinate_7_51_point_1()))
				.append(new MFVec3f(getCoordinate_7_51_point_2()))
				.append(new MFVec3f(getCoordinate_7_51_point_3()))
				.append(new MFVec3f(getCoordinate_7_51_point_4()))
				.append(new MFVec3f(getCoordinate_7_51_point_5()))
				.append(new MFVec3f(getCoordinate_7_51_point_6()))
				.append(new MFVec3f(getCoordinate_7_51_point_7()))
				.append(new MFVec3f(getCoordinate_7_51_point_8()))
				.append(new MFVec3f(getCoordinate_7_51_point_9()))
				.append(new MFVec3f(getCoordinate_7_51_point_10()))
				.append(new MFVec3f(getCoordinate_7_51_point_11()))
				.append(new MFVec3f(getCoordinate_7_51_point_12()))
				.append(new MFVec3f(getCoordinate_7_51_point_13()))
				.append(new MFVec3f(getCoordinate_7_51_point_14()))
				.append(new MFVec3f(getCoordinate_7_51_point_15()))
				.append(new MFVec3f(getCoordinate_7_51_point_16()))
				.append(new MFVec3f(getCoordinate_7_51_point_17()))
				.append(new MFVec3f(getCoordinate_7_51_point_18()))
				.append(new MFVec3f(getCoordinate_7_51_point_19()));
			return Coordinate_7_51_point;
		}
		/** Large attribute array: TextureCoordinate point field, scene-graph level=7, element #52, 3716 total numbers made up of 1858 2-tuple values.
		 * Reassemble split array as single method to improve readability and runnability.
		 * Provide large array values via separate methods, hoping to avoid 'code too large' Java compilation errors. 
		 * Individual Java methods (including aggregated initializations) are limited to 64KB.
		 * @see https://stackoverflow.com/questions/2407912/code-too-large-compilation-error-in-java
		 * @see https://stackoverflow.com/questions/11437905/java-too-many-constants-jvm-error
		 */
		private MFVec2f getTextureCoordinate_7_52_point()
		{
			MFVec2f TextureCoordinate_7_52_point = new MFVec2f()/*2.finalize*/
				.append(new MFVec2f(getTextureCoordinate_7_52_point_1()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_2()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_3()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_4()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_5()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_6()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_7()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_8()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_9()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_10()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_11()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_12()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_13()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_14()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_15()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_16()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_17()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_18()))
				.append(new MFVec2f(getTextureCoordinate_7_52_point_19()));
			return TextureCoordinate_7_52_point;
		}

	/** The initialized model object, created within initialize() method. */
	private X3D x3dModel;

	/** 
	 * Provide a 
	 * <a href="https://dzone.com/articles/java-copy-shallow-vs-deep-in-which-you-will-swim" target="_blank">shallow copy</a>
	 * of the X3D model.
	 * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html">X3D</a>
	 * @return HumpbackWhale model
	 */
	public X3D getX3dModel()
	{	  
		return x3dModel;
	}
	   
    /** 
     * Default main() method provided for test purposes, uses CommandLine to set global ConfigurationProperties for this object.
     * @param args array of input parameters, provided as arguments
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#handleArguments-java.lang.String:A-">X3D.handleArguments(args)</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/Core/X3D.html#validationReport--">X3D.validationReport()</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html">CommandLine</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/CommandLine.html#USAGE">CommandLine.USAGE</a>
     * @see <a href="https://www.web3d.org/specifications/java/javadoc/org/web3d/x3d/jsail/ConfigurationProperties.html">ConfigurationProperties</a>
     */
    public static void main(String args[])
    {
        System.out.println("Build this X3D model, showing validation diagnostics...");
        X3D thisExampleX3dModel = new HumpbackWhale().getX3dModel();
//      System.out.println("X3D model construction complete.");
	
        // next handle command line arguments
        boolean hasArguments = (args != null) && (args.length > 0);
        boolean validate = true; // default
        boolean argumentsLoadNewModel = false;
        String  fileName = new String();

        if (args != null)
        {
                for (String arg : args)
                {
                        if (arg.toLowerCase().startsWith("-v") || arg.toLowerCase().contains("validate"))
                        {
                                validate = true; // making sure
                        }
                        if (arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3D) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_CLASSICVRML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_X3DB) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_VRML97) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_EXI) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_GZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_ZIP) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_HTML) ||
                                arg.toLowerCase().endsWith(X3D.FILE_EXTENSION_XHTML))
                        {
                                argumentsLoadNewModel = true;
                                fileName = arg;
                        }
                }
        }
        if      (argumentsLoadNewModel)
                System.out.println("WARNING: \"Savage.Biologics.Whales.HumpbackWhale\" model invocation is attempting to load file \"" + fileName + "\" instead of simply validating itself... file loading ignored.");
        else if (hasArguments) // if no arguments provided, this method produces usage warning
                thisExampleX3dModel.handleArguments(args);
	
        if (validate)
        {
            //  System.out.println("--- TODO fix duplicated outputs ---"); // omit when duplicated outputs problem is solved/refactored
		String validationResults = thisExampleX3dModel.validationReport();
            //  System.out.println("-----------------------------------"); // omit when duplicated outputs problem is solved/refactored
                System.out.print("Savage.Biologics.Whales.HumpbackWhale self-validation test confirmation: ");
                if (!validationResults.equals("success"))
                    System.out.println();
                System.out.println(validationResults.trim());

                // experimental: test X3DJSAIL output files
                // Biologics/Whales/HumpbackWhale_JavaExport.* file validation is checked when building X3D Example Archives
                String filenameX3D  = "Biologics/Whales/HumpbackWhale_JavaExport.x3d"; 
                String filenameX3DV = "Biologics/Whales/HumpbackWhale_JavaExport.x3dv"; 
                String filenameJSON = "Biologics/Whales/HumpbackWhale_JavaExport.json";
                thisExampleX3dModel.toFileX3D        (filenameX3D);
                thisExampleX3dModel.toFileClassicVRML(filenameX3DV);
// TODO         thisExampleX3dModel.toFileJSON       (filenameJSON);
        }
    }
}
