diff --git a/examples/js/ShaderTerrain.js b/examples/js/ShaderTerrain.js new file mode 100644 index 0000000000000000000000000000000000000000..8287c603e34d6d3cc8ca41bf2a4afd61d7330fdd --- /dev/null +++ b/examples/js/ShaderTerrain.js @@ -0,0 +1,308 @@ +/** + * @author alteredq / http://alteredqualia.com/ + * + */ + +THREE.ShaderTerrain = { + + /* ------------------------------------------------------------------------- + // Dynamic terrain shader + // - Blinn-Phong + // - height + normal + diffuse1 + diffuse2 + specular + detail maps + // - point and directional lights (use with "lights: true" material option) + ------------------------------------------------------------------------- */ + + 'terrain' : { + + uniforms: THREE.UniformsUtils.merge( [ + + THREE.UniformsLib[ "fog" ], + THREE.UniformsLib[ "lights" ], + + { + + "enableDiffuse1" : { type: "i", value: 0 }, + "enableDiffuse2" : { type: "i", value: 0 }, + "enableSpecular" : { type: "i", value: 0 }, + "enableReflection": { type: "i", value: 0 }, + + "tDiffuse1" : { type: "t", value: 0, texture: null }, + "tDiffuse2" : { type: "t", value: 1, texture: null }, + "tDetail" : { type: "t", value: 2, texture: null }, + "tNormal" : { type: "t", value: 3, texture: null }, + "tSpecular" : { type: "t", value: 4, texture: null }, + "tDisplacement": { type: "t", value: 5, texture: null }, + + "uNormalScale": { type: "f", value: 1.0 }, + + "uDisplacementBias": { type: "f", value: 0.0 }, + "uDisplacementScale": { type: "f", value: 1.0 }, + + "uDiffuseColor": { type: "c", value: new THREE.Color( 0xeeeeee ) }, + "uSpecularColor": { type: "c", value: new THREE.Color( 0x111111 ) }, + "uAmbientColor": { type: "c", value: new THREE.Color( 0x050505 ) }, + "uShininess": { type: "f", value: 30 }, + "uOpacity": { type: "f", value: 1 }, + + "uRepeatBase" : { type: "v2", value: new THREE.Vector2( 1, 1 ) }, + "uRepeatOverlay" : { type: "v2", value: new THREE.Vector2( 1, 1 ) }, + + "uOffset" : { type: "v2", value: new THREE.Vector2( 0, 0 ) } + + } + + ] ), + + fragmentShader: [ + + "uniform vec3 uAmbientColor;", + "uniform vec3 uDiffuseColor;", + "uniform vec3 uSpecularColor;", + "uniform float uShininess;", + "uniform float uOpacity;", + + "uniform bool enableDiffuse1;", + "uniform bool enableDiffuse2;", + "uniform bool enableSpecular;", + + "uniform sampler2D tDiffuse1;", + "uniform sampler2D tDiffuse2;", + "uniform sampler2D tDetail;", + "uniform sampler2D tNormal;", + "uniform sampler2D tSpecular;", + "uniform sampler2D tDisplacement;", + + "uniform float uNormalScale;", + + "uniform vec2 uRepeatOverlay;", + "uniform vec2 uRepeatBase;", + + "uniform vec2 uOffset;", + + "varying vec3 vTangent;", + "varying vec3 vBinormal;", + "varying vec3 vNormal;", + "varying vec2 vUv;", + + "uniform vec3 ambientLightColor;", + + "#if MAX_DIR_LIGHTS > 0", + "uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];", + "uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];", + "#endif", + + "#if MAX_POINT_LIGHTS > 0", + "uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];", + "uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];", + "uniform float pointLightDistance[ MAX_POINT_LIGHTS ];", + "#endif", + + "varying vec3 vViewPosition;", + + THREE.ShaderChunk[ "fog_pars_fragment" ], + + "void main() {", + + "gl_FragColor = vec4( vec3( 1.0 ), uOpacity );", + + "vec3 specularTex = vec3( 1.0 );", + + "vec2 uvOverlay = uRepeatOverlay * vUv + uOffset;", + "vec2 uvBase = uRepeatBase * vUv;", + + "vec3 normalTex = texture2D( tDetail, uvOverlay ).xyz * 2.0 - 1.0;", + "normalTex.xy *= uNormalScale;", + "normalTex = normalize( normalTex );", + + "if( enableDiffuse1 && enableDiffuse2 ) {", + + "vec4 colDiffuse1 = texture2D( tDiffuse1, uvOverlay );", + "vec4 colDiffuse2 = texture2D( tDiffuse2, uvOverlay );", + + "#ifdef GAMMA_INPUT", + + "colDiffuse1.xyz *= colDiffuse1.xyz;", + "colDiffuse2.xyz *= colDiffuse2.xyz;", + + "#endif", + + "gl_FragColor = gl_FragColor * mix ( colDiffuse1, colDiffuse2, 1.0 - texture2D( tDisplacement, uvBase ) );", + + " } else if( enableDiffuse1 ) {", + + "gl_FragColor = gl_FragColor * texture2D( tDiffuse1, uvOverlay );", + + "} else if( enableDiffuse2 ) {", + + "gl_FragColor = gl_FragColor * texture2D( tDiffuse2, uvOverlay );", + + "}", + + "if( enableSpecular )", + "specularTex = texture2D( tSpecular, uvOverlay ).xyz;", + + "mat3 tsb = mat3( vTangent, vBinormal, vNormal );", + "vec3 finalNormal = tsb * normalTex;", + + "vec3 normal = normalize( finalNormal );", + "vec3 viewPosition = normalize( vViewPosition );", + + // point lights + + "#if MAX_POINT_LIGHTS > 0", + + "vec3 pointDiffuse = vec3( 0.0 );", + "vec3 pointSpecular = vec3( 0.0 );", + + "for ( int i = 0; i < MAX_POINT_LIGHTS; i ++ ) {", + + "vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );", + + "vec3 lVector = lPosition.xyz + vViewPosition.xyz;", + + "float lDistance = 1.0;", + + "if ( pointLightDistance[ i ] > 0.0 )", + "lDistance = 1.0 - min( ( length( lVector ) / pointLightDistance[ i ] ), 1.0 );", + + "lVector = normalize( lVector );", + + "vec3 pointHalfVector = normalize( lVector + viewPosition );", + "float pointDistance = lDistance;", + + "float pointDotNormalHalf = max( dot( normal, pointHalfVector ), 0.0 );", + "float pointDiffuseWeight = max( dot( normal, lVector ), 0.0 );", + + "float pointSpecularWeight = specularTex.r * pow( pointDotNormalHalf, uShininess );", + + "pointDiffuse += pointDistance * pointLightColor[ i ] * uDiffuseColor * pointDiffuseWeight;", + "pointSpecular += pointDistance * pointLightColor[ i ] * uSpecularColor * pointSpecularWeight * pointDiffuseWeight;", + + "}", + + "#endif", + + // directional lights + + "#if MAX_DIR_LIGHTS > 0", + + "vec3 dirDiffuse = vec3( 0.0 );", + "vec3 dirSpecular = vec3( 0.0 );", + + "for( int i = 0; i < MAX_DIR_LIGHTS; i++ ) {", + + "vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );", + + "vec3 dirVector = normalize( lDirection.xyz );", + "vec3 dirHalfVector = normalize( lDirection.xyz + viewPosition );", + + "float dirDotNormalHalf = max( dot( normal, dirHalfVector ), 0.0 );", + "float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );", + + "float dirSpecularWeight = specularTex.r * pow( dirDotNormalHalf, uShininess );", + + "dirDiffuse += directionalLightColor[ i ] * uDiffuseColor * dirDiffuseWeight;", + "dirSpecular += directionalLightColor[ i ] * uSpecularColor * dirSpecularWeight * dirDiffuseWeight;", + + "}", + + "#endif", + + // all lights contribution summation + + "vec3 totalDiffuse = vec3( 0.0 );", + "vec3 totalSpecular = vec3( 0.0 );", + + "#if MAX_DIR_LIGHTS > 0", + + "totalDiffuse += dirDiffuse;", + "totalSpecular += dirSpecular;", + + "#endif", + + "#if MAX_POINT_LIGHTS > 0", + + "totalDiffuse += pointDiffuse;", + "totalSpecular += pointSpecular;", + + "#endif", + + //"gl_FragColor.xyz = gl_FragColor.xyz * ( totalDiffuse + ambientLightColor * uAmbientColor) + totalSpecular;", + "gl_FragColor.xyz = gl_FragColor.xyz * ( totalDiffuse + ambientLightColor * uAmbientColor + totalSpecular );", + + THREE.ShaderChunk[ "linear_to_gamma_fragment" ], + THREE.ShaderChunk[ "fog_fragment" ], + + "}" + + ].join("\n"), + + vertexShader: [ + + "attribute vec4 tangent;", + + "uniform vec2 uRepeatBase;", + + "uniform sampler2D tNormal;", + + "#ifdef VERTEX_TEXTURES", + + "uniform sampler2D tDisplacement;", + "uniform float uDisplacementScale;", + "uniform float uDisplacementBias;", + + "#endif", + + "varying vec3 vTangent;", + "varying vec3 vBinormal;", + "varying vec3 vNormal;", + "varying vec2 vUv;", + + "varying vec3 vViewPosition;", + + "void main() {", + + "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );", + + "vViewPosition = -mvPosition.xyz;", + + "vNormal = normalize( normalMatrix * normal );", + + // tangent and binormal vectors + + "vTangent = normalize( normalMatrix * tangent.xyz );", + + "vBinormal = cross( vNormal, vTangent ) * tangent.w;", + "vBinormal = normalize( vBinormal );", + + // texture coordinates + + "vUv = uv;", + + "vec2 uvBase = uv * uRepeatBase;", + + // displacement mapping + + "#ifdef VERTEX_TEXTURES", + + "vec3 dv = texture2D( tDisplacement, uvBase ).xyz;", + "float df = uDisplacementScale * dv.x + uDisplacementBias;", + "vec4 displacedPosition = vec4( vNormal.xyz * df, 0.0 ) + mvPosition;", + "gl_Position = projectionMatrix * displacedPosition;", + + "#else", + + "gl_Position = projectionMatrix * mvPosition;", + + "#endif", + + "vec3 normalTex = texture2D( tNormal, uvBase ).xyz * 2.0 - 1.0;", + "vNormal = normalMatrix * normalTex;", + + "}" + + ].join("\n") + + } + +}; diff --git a/examples/models/animated/flamingo.js b/examples/models/animated/flamingo.js new file mode 100644 index 0000000000000000000000000000000000000000..ebbe53005b14bb2d083a975dd9b273be42f8c440 --- /dev/null +++ b/examples/models/animated/flamingo.js @@ -0,0 +1,47 @@ +{ + + "metadata" : { + "formatVersion" : 3, + "description" : "3D assets and textures for ROME - 3 Dreams of Black - at http://ro.me are licensed under a Creative CommonsAttribution-NonCommercial-ShareAlike 3.0 Unported License ( http://creativecommons.org/licenses/by-nc-sa/3.0/ )." + }, + + "scale" : 10.000000, + + "materials": [ { + "DbgColor" : 15658734, + "DbgIndex" : 0, + "DbgName" : "initialShadingGroup" + }], + + "vertices": [0,101,79,0,55,189,0,-80,-186,0,88,-85,-110,-66,-79,1,-50,328,-25,-14,426,-95,-81,54,5,2,914,-64,-117,28,2,27,542,0,-102,-122,-70,-70,-148,-110,72,62,-27,-45,290,0,-133,29,-23,93,828,2,-24,551,5,104,825,6,10,1004,3,53,713,-82,27,-197,-82,-116,-132,6,-13,953,6,97,899,0,30,231,-129,-16,-100,-20,15,719,-55,-18,196,-18,-16,974,0,57,-181,5,-90,979,-18,13,423,0,107,-17,4,18,819,-93,60,133,-66,-53,-156,1,19,417,0,-26,-266,-24,43,911,-32,6,285,-31,-38,-259,-26,40,832,-57,17,195,-24,-10,553,-64,-116,-150,1,-36,425,-20,77,909,-40,57,-160,-36,-7,303,-25,39,715,-137,-33,-51,6,48,974,4,70,765,-115,18,85,-30,-20,354,-34,-73,-187,1,-38,362,-24,12,550,-63,82,-99,-30,-68,-252,-119,59,92,5,-4,882,-69,-84,-152,-40,-69,-290,0,-67,-283,-85,97,-25,-16,13,986,0,20,272,-65,-85,-345,0,-72,247,0,-56,-364,-56,-102,-159,-89,-97,-138,-80,-169,-348,-69,-168,-348,-63,-158,-351,-74,-152,-353,-85,-158,-351,-91,-277,-688,-63,-278,-688,-95,-241,-698,-58,-243,-700,-57,-175,-407,-74,-155,-413,-65,-188,-464,-75,-182,-465,-100,-174,-407,-86,-196,-461,-92,-197,-401,-81,-203,-460,-66,-196,-401,-70,-202,-460,-67,-253,-676,-75,-248,-677,-83,-254,-676,-81,-262,-673,-71,-261,-673,-28,38,191,-38,-66,-292,-130,-398,200,-212,-350,-59,-169,-48,-22,-255,-355,-108,-102,-393,204,-101,-5,100,-189,-394,68,-203,-239,35,-158,-169,160,-130,-166,170,-120,-171,143,-216,-221,-147,-250,-357,-78,-231,-206,-151,-212,-198,-182,-105,-396,217,-219,-469,-64,-215,-472,-78,-64,-641,224,-193,-541,-19,-36,-636,228,-40,-638,241,-158,-387,60,-161,-534,-29,-48,-635,196,-73,-640,205,-100,-603,161,-75,-597,151,-119,-628,105,-92,-622,92,-146,-584,67,-119,-577,51,-162,-587,26,-132,-581,14,-60,-765,131,-101,-721,56,-135,-669,5,-163,-615,-33,-24,-726,238,-25,-784,203,-136,4,27,-162,-191,22,124,-59,-80,28,-14,426,95,-56,76,64,-117,28,70,-70,-148,113,74,62,28,-45,290,34,93,828,85,28,-198,79,-116,-132,129,-16,-100,28,15,719,55,-18,196,30,-16,973,22,13,423,93,60,133,66,-53,-156,36,43,911,34,6,284,31,-38,-259,37,40,831,57,17,195,29,-10,552,62,-116,-150,33,76,908,40,57,-160,37,-7,303,33,39,715,137,-33,-51,115,18,85,33,-20,354,36,-72,-188,29,11,549,63,82,-99,30,-68,-252,122,61,92,67,-84,-152,40,-69,-290,85,97,-25,28,12,986,65,-85,-345,53,-102,-159,87,-97,-137,78,-169,-348,67,-168,-348,61,-158,-351,72,-152,-353,83,-159,-351,84,-275,-688,60,-275,-688,88,-243,-697,56,-245,-700,55,-175,-407,71,-155,-413,61,-188,-464,71,-182,-465,97,-174,-407,82,-196,-461,89,-197,-401,77,-203,-460,63,-196,-401,66,-202,-460,64,-253,-676,73,-248,-677,80,-254,-676,78,-262,-673,68,-261,-673,28,38,191,38,-66,-292,143,-392,194,224,-342,-65,178,-64,-4,267,-347,-114,115,-387,198,109,-2,99,201,-387,62,217,-233,34,172,-162,159,144,-160,169,133,-165,143,230,-213,-148,263,-350,-84,245,-199,-153,226,-190,-183,118,-389,211,231,-462,-71,227,-464,-84,77,-635,217,205,-534,-26,49,-630,221,53,-632,234,170,-381,54,173,-527,-36,61,-629,189,86,-634,198,113,-596,154,87,-591,144,131,-622,98,105,-616,85,158,-577,60,131,-570,44,175,-580,19,145,-574,7,73,-759,123,114,-714,49,147,-662,-2,176,-608,-40,37,-720,231,38,-778,195,139,5,27,176,-184,21,72,-272,-762,-77,-272,-758,40,58,900,46,65,844,44,72,875,45,39,864,43,54,869,41,61,882,38,67,860,47,83,856,33,64,871,-33,40,864,-27,59,901,-34,65,845,-36,84,856,-21,64,871,-29,61,883,-31,55,870,-27,68,860,-32,73,875], + + "morphTargets": [ + { "name": "flamingo_flyA_000", "vertices": [0,101,79,0,55,189,0,-80,-186,0,88,-85,-110,-66,-79,1,-50,328,-25,-14,426,-95,-81,54,5,2,914,-64,-117,28,2,27,542,0,-102,-122,-70,-70,-148,-110,72,62,-27,-45,290,0,-133,29,-23,93,828,2,-24,551,5,104,825,6,10,1004,3,53,713,-82,27,-197,-82,-116,-132,6,-13,953,6,97,899,0,30,231,-129,-16,-100,-20,15,719,-55,-18,196,-18,-16,974,0,57,-181,5,-90,979,-18,13,423,0,107,-17,4,18,819,-93,60,133,-66,-53,-156,1,19,417,0,-26,-266,-24,43,911,-32,6,285,-31,-38,-259,-26,40,832,-57,17,195,-24,-10,553,-64,-116,-150,1,-36,425,-20,77,909,-40,57,-160,-36,-7,303,-25,39,715,-137,-33,-51,6,48,974,4,70,765,-115,18,85,-30,-20,354,-34,-73,-187,1,-38,362,-24,12,550,-63,82,-99,-30,-68,-252,-119,59,92,5,-4,882,-69,-84,-152,-40,-69,-290,0,-67,-283,-85,97,-25,-16,13,986,0,20,272,-65,-85,-345,0,-72,247,0,-56,-364,-56,-102,-159,-89,-97,-138,-80,-169,-348,-69,-168,-348,-63,-158,-351,-74,-152,-353,-85,-158,-351,-91,-277,-688,-63,-278,-688,-95,-241,-698,-58,-243,-700,-57,-175,-407,-74,-155,-413,-65,-188,-464,-75,-182,-465,-100,-174,-407,-86,-196,-461,-92,-197,-401,-81,-203,-460,-66,-196,-401,-70,-202,-460,-67,-253,-676,-75,-248,-677,-83,-254,-676,-81,-262,-673,-71,-261,-673,-28,38,191,-38,-66,-292,-130,-398,200,-212,-350,-59,-169,-48,-22,-255,-355,-108,-102,-393,204,-101,-5,100,-189,-394,68,-203,-239,35,-158,-169,160,-130,-166,170,-120,-171,143,-216,-221,-147,-250,-357,-78,-231,-206,-151,-212,-198,-182,-105,-396,217,-219,-469,-64,-215,-472,-78,-64,-641,224,-193,-541,-19,-36,-636,228,-40,-638,241,-158,-387,60,-161,-534,-29,-48,-635,196,-73,-640,205,-100,-603,161,-75,-597,151,-119,-628,105,-92,-622,92,-146,-584,67,-119,-577,51,-162,-587,26,-132,-581,14,-60,-765,131,-101,-721,56,-135,-669,5,-163,-615,-33,-24,-726,238,-25,-784,203,-136,4,27,-162,-191,22,124,-59,-80,28,-14,426,95,-56,76,64,-117,28,70,-70,-148,113,74,62,28,-45,290,34,93,828,85,28,-198,79,-116,-132,129,-16,-100,28,15,719,55,-18,196,30,-16,973,22,13,423,93,60,133,66,-53,-156,36,43,911,34,6,284,31,-38,-259,37,40,831,57,17,195,29,-10,552,62,-116,-150,33,76,908,40,57,-160,37,-7,303,33,39,715,137,-33,-51,115,18,85,33,-20,354,36,-72,-188,29,11,549,63,82,-99,30,-68,-252,122,61,92,67,-84,-152,40,-69,-290,85,97,-25,28,12,986,65,-85,-345,53,-102,-159,87,-97,-137,78,-169,-348,67,-168,-348,61,-158,-351,72,-152,-353,83,-159,-351,84,-275,-688,60,-275,-688,88,-243,-697,56,-245,-700,55,-175,-407,71,-155,-413,61,-188,-464,71,-182,-465,97,-174,-407,82,-196,-461,89,-197,-401,77,-203,-460,63,-196,-401,66,-202,-460,64,-253,-676,73,-248,-677,80,-254,-676,78,-262,-673,68,-261,-673,28,38,191,38,-66,-292,143,-392,194,224,-342,-65,178,-64,-4,267,-347,-114,115,-387,198,109,-2,99,201,-387,62,217,-233,34,172,-162,159,144,-160,169,133,-165,143,230,-213,-148,263,-350,-84,245,-199,-153,226,-190,-183,118,-389,211,231,-462,-71,227,-464,-84,77,-635,217,205,-534,-26,49,-630,221,53,-632,234,170,-381,54,173,-527,-36,61,-629,189,86,-634,198,113,-596,154,87,-591,144,131,-622,98,105,-616,85,158,-577,60,131,-570,44,175,-580,19,145,-574,7,73,-759,123,114,-714,49,147,-662,-2,176,-608,-40,37,-720,231,38,-778,195,139,5,27,176,-184,21,72,-272,-762,-77,-272,-758,40,58,900,46,65,844,44,72,875,45,39,864,43,54,869,41,61,882,38,67,860,47,83,856,33,64,871,-33,40,864,-27,59,901,-34,65,845,-36,84,856,-21,64,871,-29,61,883,-31,55,870,-27,68,860,-32,73,875] }, + { "name": "flamingo_flyA_001", "vertices": [0,112,79,0,65,189,0,-69,-186,0,99,-84,-107,-52,-76,1,-40,328,-25,-5,426,-95,-70,54,5,13,914,-64,-106,27,2,35,543,0,-91,-122,-70,-59,-148,-111,84,63,-27,-34,290,0,-122,29,-23,104,827,2,-16,552,5,115,825,6,21,1004,3,63,713,-80,39,-197,-82,-105,-133,6,-2,953,6,108,899,0,40,231,-129,-5,-100,-20,25,719,-55,-7,196,-18,-5,974,0,68,-181,5,-79,979,-18,22,423,0,117,-17,4,29,819,-93,70,133,-66,-42,-156,1,28,417,0,-15,-266,-24,54,911,-32,17,285,-31,-26,-259,-26,51,831,-57,27,195,-24,-2,553,-64,-104,-150,1,-27,425,-20,88,908,-40,68,-160,-36,2,303,-25,49,715,-137,-22,-51,6,59,974,4,81,764,-115,28,85,-30,-10,354,-31,-62,-186,1,-28,361,-24,19,550,-63,93,-98,-30,-56,-252,-121,71,93,5,6,882,-69,-73,-152,-40,-58,-290,0,-56,-283,-85,108,-25,-16,24,986,0,30,272,-65,-73,-346,0,-62,247,0,-44,-364,-56,-91,-159,-89,-86,-138,-80,-156,-348,-69,-156,-349,-63,-146,-352,-74,-139,-354,-85,-146,-352,-91,-265,-689,-63,-265,-689,-95,-228,-698,-58,-230,-700,-57,-162,-408,-74,-142,-414,-65,-175,-464,-75,-169,-466,-100,-161,-408,-86,-183,-462,-92,-184,-401,-81,-190,-460,-66,-183,-402,-70,-189,-460,-67,-241,-676,-75,-236,-678,-83,-242,-676,-81,-250,-674,-71,-249,-674,-28,48,192,-38,-54,-292,-164,-392,203,-223,-317,-55,-169,-34,-15,-261,-318,-109,-136,-386,211,-107,6,103,-210,-375,68,-219,-219,31,-182,-152,160,-155,-151,173,-142,-156,148,-216,-199,-151,-260,-324,-79,-230,-185,-156,-209,-178,-186,-141,-390,223,-222,-435,-75,-217,-435,-88,-84,-631,205,-195,-510,-36,-56,-626,213,-61,-630,225,-179,-366,64,-163,-500,-42,-66,-621,180,-90,-629,186,-116,-588,144,-90,-580,137,-127,-608,84,-100,-599,75,-153,-560,49,-126,-550,36,-166,-560,6,-136,-550,-1,-62,-743,99,-99,-692,27,-131,-636,-21,-159,-580,-55,-39,-715,213,-33,-768,171,-137,15,28,-176,-172,23,121,-44,-77,28,-6,426,95,-45,76,64,-106,27,70,-59,-148,114,85,63,28,-35,290,34,104,827,82,40,-197,79,-105,-133,129,-5,-100,28,25,719,55,-7,196,30,-5,973,22,22,423,93,70,133,66,-42,-156,36,53,910,34,16,285,31,-26,-259,37,51,831,57,27,195,29,-2,553,62,-104,-150,33,87,908,40,68,-160,37,2,303,33,49,714,137,-22,-51,115,28,85,33,-10,354,33,-61,-186,29,19,550,63,93,-98,30,-56,-252,124,72,93,67,-73,-152,40,-58,-290,85,108,-25,28,23,985,65,-73,-346,53,-91,-159,87,-86,-138,78,-156,-348,67,-156,-349,61,-146,-352,72,-139,-354,83,-146,-352,84,-263,-690,60,-263,-690,88,-231,-697,56,-232,-700,55,-162,-408,71,-142,-414,61,-175,-464,71,-169,-466,97,-161,-408,82,-183,-462,89,-184,-401,77,-190,-460,63,-183,-402,66,-189,-460,64,-241,-676,73,-236,-678,80,-242,-676,78,-250,-674,68,-249,-674,28,48,192,38,-54,-292,163,-382,197,228,-310,-61,181,-45,-5,267,-313,-114,136,-375,204,114,10,102,211,-367,62,230,-213,30,194,-144,159,168,-143,171,155,-147,146,230,-192,-152,265,-319,-84,244,-177,-158,222,-171,-187,140,-379,217,222,-428,-81,217,-428,-94,73,-618,198,192,-502,-42,45,-611,206,50,-615,218,180,-357,58,160,-491,-48,55,-607,173,80,-616,179,108,-576,138,82,-567,130,119,-596,77,92,-586,68,147,-550,42,120,-539,30,160,-550,0,130,-539,-8,48,-729,92,87,-679,20,122,-625,-27,153,-570,-62,24,-700,206,17,-753,164,140,17,28,188,-164,21,72,-257,-763,-77,-256,-759,40,69,900,46,76,844,44,83,875,45,50,864,43,65,869,41,71,882,38,78,860,47,94,855,33,75,870,-33,51,864,-27,70,900,-34,76,845,-36,95,856,-21,75,871,-29,72,883,-31,66,869,-27,79,860,-32,84,875] }, + { "name": "flamingo_flyA_002", "vertices": [0,121,80,0,73,189,0,-58,-186,0,109,-84,-109,-28,-66,1,-33,327,-25,-2,426,-95,-61,53,5,22,914,-64,-97,27,2,35,543,0,-80,-123,-70,-48,-148,-112,96,65,-27,-27,290,0,-113,28,-23,113,826,2,-16,552,5,124,823,6,30,1003,3,69,711,-76,52,-195,-82,-94,-134,6,6,952,6,117,898,0,48,232,-129,4,-100,-20,32,719,-55,0,196,-18,3,973,0,79,-180,5,-69,979,-18,25,424,0,127,-16,4,38,818,-93,79,133,-66,-31,-157,1,32,418,0,-3,-266,-24,63,910,-32,24,285,-31,-15,-259,-26,60,830,-57,35,195,-24,-1,553,-64,-94,-151,1,-23,425,-20,97,907,-40,79,-160,-36,9,303,-25,55,713,-137,-12,-51,6,68,973,4,89,762,-115,37,86,-30,-4,354,-28,-54,-182,1,-23,361,-24,20,550,-63,103,-98,-30,-45,-253,-123,83,95,5,15,881,-69,-62,-152,-40,-45,-291,0,-44,-284,-85,118,-24,-16,33,985,0,38,273,-65,-59,-347,0,-54,246,0,-29,-364,-56,-80,-160,-89,-75,-138,-80,-142,-350,-69,-141,-351,-63,-131,-353,-74,-125,-355,-85,-131,-353,-91,-249,-692,-63,-249,-692,-95,-212,-699,-58,-213,-702,-57,-147,-410,-74,-126,-415,-65,-160,-466,-75,-153,-468,-100,-146,-410,-86,-168,-464,-92,-169,-404,-81,-174,-462,-66,-168,-404,-70,-174,-462,-67,-225,-678,-75,-220,-680,-83,-226,-678,-81,-234,-676,-71,-234,-676,-28,56,192,-38,-41,-293,-261,-351,219,-276,-250,-37,-178,-34,-4,-305,-243,-95,-235,-349,231,-117,19,109,-285,-319,80,-265,-166,23,-234,-108,158,-210,-112,174,-196,-118,150,-238,-147,-156,-309,-252,-66,-248,-130,-163,-223,-129,-190,-241,-353,242,-278,-365,-68,-271,-365,-80,-196,-596,208,-263,-445,-33,-170,-593,221,-177,-597,232,-253,-312,82,-229,-437,-34,-174,-584,187,-200,-591,188,-217,-545,148,-189,-538,146,-220,-558,85,-191,-550,81,-237,-506,51,-207,-497,44,-243,-500,8,-211,-492,5,-166,-699,96,-188,-638,24,-209,-576,-21,-228,-515,-54,-159,-683,214,-149,-732,169,-141,27,31,-215,-126,22,119,-21,-68,28,-2,426,95,-36,76,64,-97,27,70,-48,-148,114,98,65,28,-27,290,34,113,826,78,53,-195,79,-94,-134,129,4,-100,28,32,718,55,0,196,30,3,973,22,25,424,93,79,133,66,-31,-157,36,63,909,34,24,285,31,-15,-259,37,60,830,57,35,195,29,-1,553,62,-94,-151,33,97,907,40,79,-160,37,9,303,33,55,713,137,-12,-51,115,37,86,33,-4,353,30,-52,-182,29,20,550,63,103,-98,30,-45,-253,125,84,95,67,-62,-152,40,-45,-291,85,118,-24,28,33,985,65,-59,-347,53,-80,-160,87,-75,-138,78,-142,-350,67,-141,-351,61,-131,-353,72,-125,-355,83,-131,-353,84,-247,-692,60,-247,-692,88,-214,-699,56,-215,-701,55,-147,-410,71,-126,-415,61,-159,-466,71,-153,-468,97,-146,-410,82,-168,-464,89,-169,-404,77,-174,-462,63,-168,-404,66,-174,-462,64,-225,-678,73,-220,-680,80,-226,-678,78,-234,-676,68,-233,-676,28,56,192,38,-41,-293,255,-343,214,276,-244,-42,188,-27,-5,307,-239,-100,228,-339,226,122,23,109,281,-313,76,273,-161,22,243,-101,157,219,-104,172,204,-110,149,248,-140,-158,310,-248,-71,258,-123,-164,233,-122,-191,235,-344,237,275,-360,-72,268,-359,-85,181,-585,205,256,-439,-37,154,-581,217,161,-586,228,250,-305,77,222,-430,-38,159,-573,183,184,-580,185,203,-535,144,177,-527,142,207,-549,81,179,-540,77,227,-498,47,197,-488,40,234,-493,4,202,-484,1,147,-687,93,173,-629,21,196,-568,-25,219,-508,-58,139,-671,211,129,-720,166,143,28,30,224,-120,20,72,-238,-765,-77,-237,-762,40,78,899,46,85,843,44,92,874,45,59,863,43,74,868,41,80,881,38,87,859,47,103,854,33,84,869,-33,60,863,-27,79,899,-34,85,843,-35,104,855,-21,84,870,-29,81,882,-31,75,868,-27,88,859,-32,93,874] }, + { "name": "flamingo_flyA_003", "vertices": [0,121,82,0,72,190,0,-55,-187,0,111,-82,-114,-4,-54,1,-37,326,-25,-9,426,-95,-61,53,5,21,912,-64,-97,25,2,24,543,0,-78,-124,-70,-45,-149,-112,101,69,-27,-30,289,0,-112,26,-23,112,824,2,-27,552,6,123,821,6,30,1002,3,65,709,-72,57,-192,-82,-92,-135,6,6,951,6,116,895,0,47,232,-129,6,-100,-20,28,717,-55,-1,196,-18,3,971,0,82,-179,5,-69,978,-18,18,425,0,128,-15,5,38,816,-93,78,134,-66,-29,-157,1,25,419,0,0,-266,-24,62,908,-32,22,285,-31,-11,-259,-26,60,828,-57,34,195,-25,-13,553,-64,-91,-152,1,-31,423,-20,96,905,-40,81,-159,-36,6,303,-25,51,711,-137,-10,-52,6,68,971,4,87,759,-115,37,86,-30,-9,353,-28,-54,-178,1,-28,360,-24,8,550,-63,105,-97,-30,-41,-254,-126,87,99,5,15,880,-69,-59,-153,-40,-40,-292,0,-39,-285,-85,119,-23,-16,33,983,0,36,274,-65,-51,-348,0,-56,245,0,-22,-365,-56,-77,-161,-89,-73,-139,-80,-135,-353,-69,-134,-353,-63,-124,-356,-74,-117,-357,-85,-124,-355,-91,-234,-697,-63,-235,-696,-95,-197,-703,-58,-199,-705,-57,-138,-412,-74,-118,-417,-65,-150,-469,-75,-144,-471,-100,-137,-412,-86,-158,-467,-92,-160,-407,-81,-165,-465,-66,-160,-407,-70,-164,-465,-67,-211,-682,-75,-206,-684,-83,-212,-682,-81,-220,-680,-71,-219,-680,-28,55,193,-38,-36,-294,-404,-258,225,-349,-148,-22,-189,14,-1,-365,-131,-83,-380,-263,241,-130,29,116,-395,-215,87,-318,-80,9,-290,-35,150,-272,-46,168,-257,-57,147,-263,-70,-164,-376,-139,-56,-266,-52,-171,-239,-60,-194,-390,-266,250,-375,-257,-62,-366,-258,-73,-403,-510,205,-387,-339,-31,-380,-515,222,-389,-518,231,-363,-217,94,-353,-340,-26,-376,-504,189,-402,-504,186,-399,-453,147,-371,-454,149,-395,-463,83,-365,-463,84,-393,-407,51,-361,-406,49,-390,-399,8,-357,-400,11,-382,-613,91,-375,-547,22,-371,-480,-21,-369,-415,-52,-391,-604,210,-387,-653,163,-146,32,33,-259,-58,17,119,0,-54,28,-9,425,95,-36,75,64,-97,25,70,-45,-149,113,102,69,28,-30,289,34,112,824,72,58,-192,79,-92,-135,129,6,-100,28,28,717,55,-1,196,30,3,971,22,18,424,93,78,134,66,-29,-157,36,62,908,34,22,285,31,-11,-259,37,60,828,57,34,195,29,-13,553,62,-91,-152,33,96,905,40,81,-159,37,6,303,33,51,711,137,-10,-52,115,37,86,33,-9,353,29,-54,-178,29,8,550,63,105,-97,30,-41,-254,127,89,99,67,-59,-153,40,-40,-292,85,119,-23,28,33,983,65,-51,-348,53,-77,-161,87,-73,-139,78,-135,-353,67,-134,-353,61,-124,-356,72,-117,-357,83,-124,-355,84,-232,-697,60,-232,-697,88,-199,-702,56,-201,-705,55,-138,-412,71,-118,-417,61,-150,-469,71,-144,-471,97,-137,-412,82,-158,-467,89,-160,-407,77,-165,-465,63,-160,-407,66,-164,-465,64,-211,-682,73,-206,-684,80,-212,-682,78,-220,-680,68,-219,-680,28,55,193,38,-36,-294,406,-252,220,350,-144,-26,194,19,-1,366,-126,-88,383,-257,236,133,32,116,397,-210,82,323,-76,9,294,-31,150,276,-43,168,261,-54,147,268,-65,-164,376,-134,-61,271,-47,-172,244,-55,-195,392,-260,246,379,-251,-66,369,-253,-77,411,-504,201,392,-334,-36,387,-509,217,397,-512,226,365,-212,89,358,-336,-30,383,-499,184,410,-498,181,406,-448,142,378,-449,145,402,-458,79,372,-458,79,399,-402,46,367,-401,45,396,-394,3,363,-395,6,392,-608,87,384,-542,17,379,-475,-26,375,-410,-56,400,-599,206,398,-647,159,147,33,33,263,-55,16,72,-221,-769,-77,-221,-766,40,78,897,46,84,841,44,92,872,45,59,861,43,74,866,41,80,879,38,87,856,48,103,852,33,83,867,-33,59,861,-27,78,897,-34,85,841,-35,103,852,-21,84,868,-29,80,880,-31,74,866,-27,87,857,-32,92,872] }, + { "name": "flamingo_flyA_004", "vertices": [0,112,83,0,63,191,0,-60,-188,0,105,-81,-122,19,-41,1,-49,324,-25,-24,425,-95,-68,52,6,12,909,-64,-104,24,2,3,542,0,-83,-125,-70,-50,-150,-111,99,73,-27,-40,288,0,-120,25,-23,103,821,2,-47,552,6,114,818,6,21,999,3,53,705,-69,54,-188,-82,-98,-136,6,-3,948,6,107,893,0,37,233,-129,0,-100,-20,16,716,-55,-10,196,-17,-5,969,0,77,-178,5,-79,975,-18,3,425,0,121,-13,5,29,814,-93,69,135,-66,-34,-158,1,10,420,0,-3,-266,-24,53,905,-32,11,286,-31,-14,-259,-26,51,825,-57,24,195,-25,-33,553,-64,-96,-154,1,-46,422,-20,87,903,-40,76,-158,-36,-4,303,-25,39,708,-137,-17,-52,6,59,969,4,76,755,-115,29,86,-30,-22,353,-33,-62,-175,1,-41,358,-24,-11,549,-63,99,-95,-30,-45,-255,-127,86,102,5,5,877,-69,-64,-153,-40,-42,-293,0,-42,-286,-85,112,-21,-16,24,981,0,26,275,-65,-51,-350,0,-66,244,0,-21,-365,-56,-82,-162,-89,-78,-140,-80,-135,-355,-69,-134,-355,-63,-124,-358,-74,-117,-359,-85,-124,-358,-91,-223,-702,-63,-223,-701,-95,-186,-708,-58,-188,-710,-57,-137,-415,-74,-116,-419,-65,-147,-472,-75,-140,-473,-100,-136,-415,-86,-155,-470,-92,-159,-410,-81,-161,-469,-66,-158,-410,-70,-161,-469,-67,-200,-687,-75,-195,-688,-83,-201,-687,-81,-209,-685,-71,-208,-685,-28,45,193,-38,-38,-294,-536,-78,210,-405,-7,-20,-188,66,4,-402,18,-81,-520,-95,228,-144,37,122,-491,-43,78,-346,35,-4,-320,60,141,-311,41,161,-299,25,140,-270,22,-170,-419,15,-56,-265,40,-176,-241,22,-197,-531,-93,236,-476,-85,-71,-467,-90,-82,-659,-296,170,-531,-151,-49,-643,-312,188,-654,-310,197,-465,-61,88,-503,-169,-40,-630,-305,157,-652,-291,151,-620,-248,117,-597,-262,122,-613,-257,54,-588,-272,57,-580,-209,27,-552,-224,28,-568,-202,-14,-540,-219,-8,-678,-394,51,-631,-338,-11,-589,-281,-49,-550,-226,-74,-696,-384,169,-711,-426,118,-151,32,36,-284,27,11,123,20,-40,28,-25,425,95,-44,75,64,-104,24,70,-50,-150,111,99,73,28,-40,288,34,102,820,69,55,-188,79,-98,-136,129,0,-100,28,16,715,55,-10,196,30,-5,968,22,3,425,93,69,135,66,-34,-158,36,53,905,34,11,286,31,-14,-259,37,50,825,57,24,195,29,-33,552,62,-96,-154,33,86,902,40,76,-158,37,-4,303,33,38,708,137,-17,-52,115,29,86,33,-22,352,33,-62,-174,29,-11,549,63,99,-95,30,-45,-255,127,86,102,67,-64,-153,40,-42,-293,85,112,-21,29,23,980,65,-51,-350,53,-82,-162,87,-78,-140,78,-135,-355,67,-134,-355,61,-124,-358,72,-117,-359,83,-124,-358,84,-221,-702,60,-221,-702,88,-188,-707,56,-190,-710,55,-137,-415,71,-116,-419,61,-146,-472,71,-140,-473,97,-136,-415,82,-155,-470,89,-159,-410,77,-161,-469,63,-158,-410,66,-161,-469,64,-200,-687,73,-195,-688,80,-201,-687,78,-209,-685,68,-208,-685,28,45,193,38,-38,-294,550,-58,200,406,1,-26,189,67,5,399,28,-86,536,-76,218,144,38,123,497,-25,69,348,39,-4,321,59,142,314,39,162,304,22,141,270,22,-168,416,27,-61,265,41,-175,241,22,-196,547,-73,226,485,-65,-80,477,-71,-90,697,-258,153,548,-125,-60,683,-276,171,694,-273,179,475,-46,79,522,-147,-52,669,-270,140,689,-253,134,652,-214,102,630,-231,107,645,-222,38,621,-240,42,605,-178,13,579,-197,14,591,-172,-28,566,-192,-22,725,-350,31,670,-299,-29,621,-247,-65,576,-196,-87,744,-341,149,763,-380,97,151,32,36,287,24,12,72,-210,-774,-77,-210,-771,40,68,894,46,75,838,44,82,869,45,49,858,43,64,863,41,70,877,38,77,854,48,93,849,33,74,865,-33,50,858,-27,69,895,-34,75,838,-35,94,849,-21,74,865,-29,71,877,-31,65,864,-26,78,854,-32,83,869] }, + { "name": "flamingo_flyA_005", "vertices": [0,99,84,0,48,192,0,-70,-189,0,94,-80,-128,42,-30,1,-65,323,-25,-44,424,-95,-81,51,6,-3,907,-64,-116,23,2,-19,542,0,-94,-126,-70,-61,-150,-110,91,77,-27,-56,288,0,-132,23,-23,87,818,2,-71,551,6,98,815,6,5,996,3,34,702,-68,46,-184,-82,-108,-138,6,-19,946,6,91,890,0,22,234,-129,-9,-100,-20,-1,714,-55,-25,196,-17,-21,966,0,67,-177,5,-95,973,-18,-16,425,0,109,-12,5,13,811,-93,56,136,-66,-44,-158,1,-8,420,0,-11,-266,-24,37,903,-32,-3,286,-31,-23,-259,-26,35,823,-57,10,196,-25,-56,552,-64,-106,-155,1,-66,421,-20,71,900,-40,66,-157,-36,-20,303,-25,20,706,-137,-28,-52,6,43,966,4,59,751,-115,15,87,-30,-39,352,-41,-72,-173,1,-58,357,-24,-34,549,-63,88,-94,-30,-54,-256,-127,79,106,5,-10,875,-69,-74,-154,-40,-49,-294,0,-50,-286,-85,100,-20,-16,7,978,0,11,276,-65,-57,-351,0,-81,243,0,-26,-365,-56,-92,-163,-89,-88,-141,-80,-140,-357,-69,-140,-357,-63,-129,-360,-74,-123,-361,-85,-130,-359,-91,-216,-706,-63,-216,-706,-95,-179,-713,-58,-180,-715,-57,-141,-417,-74,-120,-421,-65,-148,-474,-75,-142,-476,-100,-140,-417,-86,-157,-473,-92,-164,-413,-81,-163,-472,-66,-163,-413,-70,-163,-472,-67,-193,-692,-75,-187,-693,-83,-194,-692,-81,-201,-690,-71,-201,-690,-28,31,194,-38,-46,-295,-557,166,192,-408,152,-38,-172,112,14,-386,177,-96,-557,142,207,-153,45,127,-497,175,61,-325,157,-8,-306,158,141,-312,136,159,-308,116,139,-248,112,-167,-401,183,-70,-236,127,-173,-220,101,-193,-564,150,216,-512,152,-92,-509,144,-103,-795,100,140,-598,140,-72,-795,75,155,-802,83,164,-491,144,68,-590,107,-67,-780,75,123,-786,101,121,-733,113,89,-726,86,91,-733,109,25,-725,81,25,-675,124,0,-665,93,-1,-661,125,-40,-653,93,-38,-874,56,12,-800,71,-46,-730,87,-82,-663,103,-103,-882,62,132,-922,48,79,-154,29,38,-280,116,11,127,37,-27,28,-44,424,95,-57,74,64,-116,23,70,-61,-150,109,90,77,28,-56,288,34,86,818,67,45,-184,79,-108,-138,129,-9,-100,28,-1,714,55,-25,196,30,-22,966,22,-16,425,93,56,136,66,-44,-158,36,36,902,34,-3,286,31,-23,-259,37,35,822,57,10,196,29,-56,552,62,-106,-155,33,70,900,40,66,-157,37,-20,303,33,20,706,137,-28,-52,115,15,87,33,-39,352,41,-73,-173,28,-34,549,63,88,-94,30,-54,-256,127,78,106,67,-74,-154,40,-49,-294,85,100,-20,29,7,978,65,-57,-351,53,-92,-163,87,-88,-141,78,-140,-357,67,-140,-357,61,-129,-360,72,-123,-361,83,-130,-359,84,-214,-707,60,-214,-707,88,-181,-712,56,-182,-715,55,-141,-417,71,-120,-421,61,-148,-474,71,-142,-476,97,-140,-417,82,-157,-473,89,-164,-413,77,-163,-472,63,-163,-413,66,-163,-472,64,-193,-692,73,-187,-693,80,-194,-692,78,-202,-690,69,-201,-690,28,31,194,38,-46,-295,546,202,191,400,168,-38,171,106,16,373,191,-96,552,177,205,152,42,129,484,204,61,321,157,-5,304,150,144,312,128,162,311,109,140,248,106,-165,386,199,-69,234,121,-170,219,95,-190,557,186,215,501,192,-93,500,183,-104,792,186,135,588,196,-74,797,161,149,802,170,158,484,172,66,587,162,-71,782,160,118,783,187,116,728,189,85,726,161,86,728,189,21,725,159,20,667,192,-2,664,160,-5,653,192,-43,651,159,-42,876,165,6,800,167,-52,727,170,-86,659,174,-107,885,167,125,926,163,71,153,28,38,283,108,13,72,-204,-779,-77,-204,-776,40,52,892,46,59,835,44,66,866,45,33,856,43,48,861,41,54,874,39,61,851,48,77,846,33,58,862,-33,34,856,-27,53,892,-34,59,836,-35,78,847,-21,58,862,-29,55,874,-31,49,861,-26,62,851,-32,66,867] }, + { "name": "flamingo_flyA_006", "vertices": [0,84,85,0,32,192,0,-83,-189,0,80,-79,-132,61,-21,1,-83,322,-25,-63,424,-95,-96,50,6,-24,906,-64,-131,22,2,-40,541,0,-107,-127,-70,-74,-151,-108,79,80,-27,-73,287,0,-147,22,-23,66,818,2,-92,550,6,77,815,6,-15,996,3,14,701,-69,33,-182,-82,-122,-139,6,-40,945,6,70,890,0,5,234,-129,-23,-100,-20,-21,713,-55,-41,196,-17,-42,965,0,54,-177,5,-116,972,-18,-35,425,0,95,-11,5,-6,810,-93,40,136,-66,-57,-158,1,-28,420,0,-24,-265,-24,16,902,-32,-21,286,-31,-36,-259,-26,15,822,-57,-6,196,-25,-78,551,-64,-119,-156,1,-85,420,-20,50,900,-40,53,-156,-36,-37,303,-25,0,705,-137,-42,-52,6,22,965,4,39,751,-115,0,87,-30,-58,352,-51,-82,-173,1,-77,357,-24,-55,548,-63,74,-93,-30,-66,-256,-126,69,109,5,-31,874,-69,-88,-154,-40,-61,-295,0,-62,-287,-85,86,-19,-15,-13,977,0,-6,276,-65,-66,-352,0,-98,242,0,-35,-365,-56,-105,-164,-89,-102,-142,-80,-150,-359,-69,-149,-359,-63,-139,-361,-74,-132,-362,-85,-139,-361,-91,-213,-709,-63,-213,-709,-95,-176,-717,-58,-178,-719,-57,-149,-419,-74,-129,-422,-65,-154,-476,-75,-148,-477,-100,-148,-419,-86,-163,-475,-92,-172,-415,-81,-169,-474,-66,-171,-415,-70,-169,-474,-67,-190,-695,-75,-184,-696,-83,-191,-696,-81,-198,-694,-71,-198,-694,-28,14,194,-38,-57,-296,-441,358,177,-347,293,-72,-147,141,25,-313,309,-129,-460,338,188,-155,51,132,-392,350,42,-263,248,0,-258,228,150,-276,211,166,-281,194,144,-209,178,-159,-318,318,-100,-190,187,-163,-185,157,-183,-458,346,199,-416,381,-109,-421,376,-121,-651,496,152,-484,430,-78,-670,476,163,-669,484,174,-411,324,42,-504,402,-80,-659,473,130,-644,495,133,-598,472,95,-613,449,92,-600,484,32,-616,459,27,-550,458,2,-565,431,-6,-539,458,-40,-557,430,-44,-735,553,34,-673,523,-33,-613,491,-75,-555,459,-104,-738,535,152,-775,566,104,-155,23,40,-250,187,18,131,50,-18,28,-63,424,95,-73,74,64,-131,22,70,-74,-151,108,77,81,28,-73,287,34,66,817,69,31,-181,79,-122,-139,129,-23,-100,28,-21,713,55,-41,196,30,-42,965,22,-35,425,93,40,136,66,-57,-158,36,16,902,34,-21,286,31,-36,-259,37,15,822,57,-6,196,29,-78,551,62,-119,-156,33,50,899,40,53,-156,37,-37,303,33,0,705,137,-42,-52,115,0,87,33,-58,352,51,-84,-172,28,-56,548,63,74,-93,30,-66,-256,126,66,109,67,-88,-154,40,-61,-295,85,86,-19,29,-13,977,65,-66,-352,53,-105,-164,87,-102,-142,78,-150,-359,67,-149,-359,61,-139,-361,72,-132,-362,83,-139,-361,84,-211,-710,60,-211,-710,88,-178,-716,56,-180,-719,55,-149,-419,71,-129,-422,61,-154,-476,71,-148,-477,97,-149,-418,82,-163,-475,89,-172,-415,77,-169,-474,63,-171,-415,66,-169,-474,64,-190,-695,73,-184,-696,80,-191,-696,78,-198,-694,69,-198,-694,28,14,194,38,-57,-296,405,375,188,325,305,-65,146,129,28,288,317,-121,427,359,197,155,45,133,357,365,52,256,240,5,255,214,154,275,198,169,283,182,146,210,167,-156,291,325,-92,190,175,-160,184,146,-180,424,366,209,374,408,-96,379,405,-109,581,555,172,430,469,-63,603,540,181,600,546,193,381,343,51,455,445,-66,593,536,148,574,554,152,533,524,113,553,505,109,532,540,51,553,519,44,489,505,19,509,483,9,477,505,-23,501,482,-29,650,635,57,595,597,-11,542,556,-56,493,514,-87,657,612,174,686,653,128,154,20,40,253,176,20,72,-203,-782,-77,-202,-779,40,32,891,46,39,835,44,46,866,45,13,855,43,28,860,41,34,873,39,41,850,48,57,846,33,37,861,-33,14,855,-27,32,892,-34,39,835,-35,57,846,-21,38,862,-29,34,874,-31,28,860,-26,41,851,-32,46,866] }, + { "name": "flamingo_flyA_007", "vertices": [0,68,86,0,16,192,0,-97,-189,0,65,-78,-132,71,-18,1,-99,323,-25,-79,424,-95,-112,50,6,-45,907,-64,-146,21,2,-56,541,0,-122,-127,-70,-89,-151,-107,66,81,-27,-89,287,0,-162,22,-23,46,820,2,-107,550,6,57,817,6,-37,997,3,-4,703,-71,20,-181,-82,-136,-139,6,-61,946,6,49,892,0,-10,234,-129,-38,-100,-20,-40,714,-55,-57,196,-17,-64,966,0,39,-176,5,-138,972,-18,-51,425,0,80,-10,5,-27,812,-93,24,137,-66,-72,-158,1,-44,420,0,-38,-265,-24,-4,904,-32,-37,286,-31,-50,-259,-26,-5,823,-57,-22,196,-25,-93,551,-64,-134,-157,1,-101,420,-20,29,901,-40,38,-156,-36,-53,303,-25,-18,707,-137,-57,-52,6,0,967,4,20,753,-115,-14,87,-30,-74,352,-58,-92,-173,1,-93,357,-24,-71,549,-63,60,-93,-30,-80,-256,-125,57,110,5,-52,875,-69,-102,-155,-40,-74,-295,0,-76,-287,-85,71,-19,-16,-34,978,0,-22,276,-65,-79,-352,0,-114,242,0,-48,-365,-56,-119,-164,-89,-116,-142,-80,-162,-360,-69,-161,-360,-63,-151,-362,-74,-144,-363,-85,-151,-362,-91,-215,-711,-63,-215,-711,-95,-178,-720,-58,-180,-722,-57,-161,-419,-74,-140,-422,-65,-164,-477,-75,-157,-478,-100,-160,-419,-86,-172,-476,-92,-183,-416,-81,-179,-476,-66,-183,-416,-70,-178,-476,-67,-191,-697,-75,-185,-698,-83,-192,-698,-81,-200,-696,-71,-200,-696,-28,-1,194,-38,-71,-296,-297,440,151,-252,376,-112,-124,150,29,-213,380,-168,-324,435,159,-154,52,133,-257,429,12,-195,289,7,-205,261,155,-230,252,170,-241,240,147,-169,208,-155,-214,384,-138,-147,210,-158,-150,181,-179,-319,438,171,-249,495,-128,-255,497,-141,-373,681,167,-273,569,-84,-400,675,175,-395,679,188,-288,421,10,-306,560,-89,-392,672,142,-367,679,147,-344,640,103,-370,632,96,-334,662,43,-362,654,34,-311,616,4,-339,607,-6,-300,617,-37,-331,608,-45,-396,798,67,-364,749,-8,-335,695,-61,-309,640,-99,-416,765,180,-422,820,142,-154,14,40,-211,227,21,133,55,-15,28,-79,424,95,-88,74,64,-146,21,70,-89,-151,107,63,82,28,-89,287,34,46,819,71,17,-181,79,-136,-139,129,-38,-100,28,-40,714,55,-57,196,30,-64,966,22,-51,425,93,24,137,66,-72,-158,36,-4,903,34,-37,286,31,-50,-259,37,-5,823,57,-22,196,29,-93,551,62,-134,-157,33,29,901,40,38,-156,37,-53,303,33,-18,706,137,-57,-52,115,-14,87,33,-74,352,58,-94,-173,28,-71,548,63,60,-93,30,-80,-256,125,54,110,67,-102,-155,40,-74,-295,85,71,-19,29,-35,978,65,-79,-352,53,-119,-164,87,-116,-142,78,-162,-360,67,-161,-360,61,-151,-362,72,-144,-363,83,-151,-362,84,-213,-711,60,-213,-711,88,-180,-719,56,-182,-721,55,-161,-419,71,-140,-422,61,-164,-477,71,-157,-478,97,-160,-419,82,-172,-476,89,-184,-416,77,-179,-476,63,-183,-416,66,-178,-476,64,-191,-697,73,-185,-698,80,-192,-698,78,-200,-696,69,-200,-696,28,-1,194,38,-71,-296,271,431,160,233,371,-104,125,134,32,194,371,-160,299,429,169,154,44,135,232,419,22,191,273,12,205,244,159,230,235,173,242,225,150,171,193,-152,194,375,-130,148,195,-155,151,165,-176,293,431,181,216,489,-116,221,491,-129,317,678,184,230,563,-70,344,676,193,339,678,205,264,415,19,264,559,-75,337,673,159,311,677,164,292,636,119,319,632,113,280,659,60,309,655,51,262,612,20,291,607,8,251,613,-22,283,608,-30,325,801,88,298,751,11,276,696,-42,257,639,-82,349,767,201,349,823,164,154,11,41,214,213,23,72,-207,-784,-77,-206,-781,40,10,893,46,18,836,44,25,867,45,-7,856,43,7,862,41,13,875,39,20,852,48,36,848,33,16,863,-33,-6,857,-27,11,893,-34,18,837,-35,37,848,-21,17,863,-29,13,875,-31,7,862,-26,20,852,-32,25,868] }, + { "name": "flamingo_flyA_008", "vertices": [0,56,86,0,3,192,0,-111,-189,0,51,-79,-131,68,-25,1,-111,323,-25,-89,424,-95,-125,50,6,-62,909,-64,-159,22,2,-63,542,0,-135,-127,-70,-102,-151,-107,54,80,-27,-102,287,0,-175,22,-23,30,823,2,-115,550,6,41,820,6,-54,999,3,-17,706,-72,6,-182,-82,-150,-139,6,-78,948,6,33,895,0,-22,234,-129,-51,-100,-20,-54,716,-55,-70,196,-17,-81,968,0,26,-177,5,-155,973,-18,-61,425,0,67,-11,5,-43,814,-93,12,136,-66,-85,-158,1,-53,420,0,-51,-265,-24,-20,906,-32,-49,286,-31,-63,-259,-26,-21,826,-57,-34,196,-25,-101,552,-64,-147,-156,1,-110,421,-20,13,904,-40,25,-156,-36,-65,303,-25,-31,709,-137,-70,-52,6,-16,969,4,5,756,-115,-27,87,-30,-85,352,-61,-103,-174,1,-104,357,-24,-78,549,-63,46,-93,-30,-94,-256,-124,46,108,5,-68,877,-69,-116,-154,-40,-89,-295,0,-90,-287,-85,58,-19,-16,-51,981,0,-34,275,-65,-94,-352,0,-126,243,0,-62,-365,-56,-132,-164,-89,-130,-142,-80,-175,-360,-69,-174,-360,-63,-164,-362,-74,-157,-363,-85,-164,-361,-91,-221,-711,-63,-222,-710,-95,-185,-721,-58,-187,-723,-57,-173,-419,-74,-152,-422,-65,-175,-477,-75,-169,-478,-100,-172,-419,-86,-183,-477,-92,-196,-416,-81,-190,-476,-66,-195,-417,-70,-190,-476,-67,-197,-698,-75,-192,-698,-83,-198,-698,-81,-206,-697,-71,-206,-697,-28,-13,194,-38,-85,-296,-218,452,122,-191,397,-145,-112,145,23,-153,391,-201,-245,456,131,-152,47,129,-181,438,-15,-158,292,2,-177,264,149,-203,260,163,-217,251,139,-146,210,-162,-152,393,-170,-124,208,-164,-131,180,-185,-239,456,143,-146,509,-151,-151,513,-163,-203,702,159,-143,582,-101,-231,706,167,-225,706,180,-213,442,-19,-177,586,-107,-224,702,133,-198,700,139,-189,658,91,-216,661,85,-171,680,34,-199,683,25,-164,632,-8,-193,635,-20,-152,633,-50,-184,636,-58,-181,827,69,-166,776,-10,-156,720,-67,-151,662,-109,-214,794,180,-199,851,146,-153,5,39,-189,236,13,134,51,-22,28,-89,424,95,-101,74,64,-159,22,70,-102,-151,107,51,80,28,-102,287,34,30,822,72,4,-182,79,-150,-139,129,-51,-100,28,-54,715,55,-70,196,30,-81,968,22,-61,425,93,12,136,66,-85,-158,36,-21,906,34,-49,286,31,-63,-259,37,-21,826,57,-34,196,29,-101,552,62,-147,-156,33,12,904,40,25,-156,37,-65,303,33,-31,709,137,-70,-52,115,-27,87,33,-85,352,61,-106,-174,29,-78,549,63,46,-93,30,-94,-256,124,42,109,67,-116,-154,40,-89,-295,85,58,-19,29,-52,980,65,-94,-352,53,-132,-164,87,-130,-142,78,-175,-360,67,-174,-360,61,-164,-362,72,-157,-363,83,-164,-361,84,-219,-711,60,-219,-711,88,-187,-720,56,-189,-722,55,-173,-419,71,-152,-422,61,-175,-477,71,-169,-478,97,-173,-419,82,-184,-476,89,-196,-416,77,-190,-476,63,-195,-417,66,-190,-476,64,-197,-698,73,-192,-698,80,-199,-698,78,-206,-697,69,-206,-697,28,-13,194,38,-85,-296,221,430,131,195,381,-137,114,128,26,157,377,-194,249,433,140,154,38,131,185,419,-7,161,274,6,179,245,152,204,239,167,218,231,143,149,194,-159,156,379,-163,126,191,-161,133,162,-182,243,433,152,154,494,-141,159,498,-154,214,679,173,153,566,-90,242,682,181,236,682,194,217,422,-10,186,569,-95,235,679,147,209,677,153,199,637,104,226,639,98,182,661,47,211,663,38,174,614,3,204,616,-8,163,616,-38,195,618,-46,197,806,85,180,758,4,170,703,-53,163,647,-97,227,770,195,215,828,162,154,1,39,190,217,16,72,-216,-784,-77,-215,-781,40,-5,895,46,2,839,44,9,870,45,-23,859,43,-8,864,41,-2,878,39,4,855,48,20,851,33,0,866,-33,-22,859,-27,-4,896,-34,2,840,-35,21,851,-21,1,866,-29,-2,878,-31,-8,865,-26,4,855,-32,9,870] }, + { "name": "flamingo_flyA_009", "vertices": [0,48,85,0,-2,192,0,-121,-189,0,42,-80,-133,49,-37,1,-116,324,-25,-91,425,-95,-133,51,6,-70,911,-64,-168,23,2,-61,543,0,-145,-126,-70,-112,-150,-107,45,76,-27,-108,288,0,-184,23,-23,22,826,2,-113,551,6,33,823,6,-63,1001,3,-22,709,-71,-3,-185,-82,-159,-138,6,-87,950,6,24,897,0,-29,233,-129,-61,-100,-20,-59,717,-55,-76,196,-18,-90,970,0,16,-177,5,-164,975,-18,-63,425,0,58,-12,5,-51,816,-93,4,136,-66,-95,-158,1,-56,419,0,-62,-266,-24,-29,909,-32,-55,286,-31,-74,-259,-26,-30,829,-57,-41,196,-25,-99,552,-64,-157,-156,1,-113,422,-20,4,907,-40,15,-157,-36,-71,303,-25,-36,712,-137,-79,-52,6,-25,972,4,-1,760,-115,-35,87,-30,-89,352,-59,-115,-176,1,-108,358,-24,-77,550,-63,37,-94,-30,-104,-256,-124,36,105,5,-76,879,-69,-125,-154,-40,-100,-294,0,-101,-286,-85,49,-20,-16,-60,983,0,-41,275,-65,-107,-351,0,-133,243,0,-76,-365,-56,-142,-163,-89,-139,-141,-80,-185,-359,-69,-185,-359,-63,-175,-361,-74,-168,-362,-85,-175,-361,-91,-231,-709,-63,-231,-709,-95,-195,-720,-58,-197,-723,-57,-184,-418,-74,-163,-421,-65,-186,-476,-75,-179,-477,-100,-184,-418,-86,-194,-476,-92,-207,-416,-81,-201,-475,-66,-206,-416,-70,-200,-475,-67,-207,-697,-75,-201,-697,-83,-208,-697,-81,-215,-696,-71,-215,-696,-28,-20,194,-38,-96,-295,-259,412,119,-236,377,-152,-121,128,11,-199,379,-210,-286,412,128,-153,31,123,-225,411,-21,-184,269,-6,-196,236,139,-221,228,154,-234,219,130,-166,191,-172,-197,379,-179,-143,191,-175,-147,162,-197,-280,412,140,-205,493,-152,-211,498,-165,-273,659,170,-209,563,-98,-301,659,180,-295,659,192,-258,411,-23,-243,563,-103,-295,659,146,-269,659,150,-256,622,100,-284,622,94,-243,649,43,-272,649,35,-232,605,-1,-262,605,-13,-222,609,-44,-255,609,-51,-270,791,88,-251,747,5,-237,696,-55,-226,643,-101,-294,748,197,-288,808,167,-154,-6,36,-207,209,3,134,33,-34,28,-91,425,95,-109,74,64,-168,23,70,-112,-150,107,41,77,28,-108,288,34,21,825,72,-5,-184,79,-159,-138,129,-61,-100,28,-59,717,55,-76,196,30,-90,970,22,-63,425,93,4,136,66,-95,-158,36,-29,908,34,-55,286,31,-74,-259,37,-30,828,57,-41,196,29,-99,552,62,-157,-156,33,4,906,40,15,-157,37,-71,303,33,-36,711,137,-79,-52,115,-35,87,33,-89,352,59,-117,-175,29,-77,549,63,37,-94,30,-104,-256,124,33,106,67,-125,-154,40,-100,-294,85,49,-20,28,-61,983,65,-107,-351,53,-142,-163,87,-140,-141,78,-185,-359,67,-185,-359,61,-174,-361,72,-168,-362,83,-175,-361,84,-229,-710,60,-229,-710,88,-197,-720,56,-199,-722,55,-184,-418,71,-163,-421,61,-186,-476,71,-179,-477,97,-184,-418,82,-194,-476,89,-207,-416,77,-201,-475,63,-206,-416,66,-200,-475,64,-207,-697,73,-201,-697,80,-208,-697,78,-215,-696,69,-215,-696,28,-20,194,38,-96,-295,279,383,126,256,354,-145,123,112,14,220,362,-203,306,379,136,154,23,125,248,388,-14,189,252,-2,196,218,143,220,207,158,232,196,134,167,176,-169,218,362,-173,144,175,-172,149,146,-194,300,380,148,241,474,-144,248,477,-156,327,625,182,254,542,-89,354,621,191,348,622,203,280,383,-15,288,537,-93,348,622,157,322,625,161,306,591,110,333,587,105,298,621,54,326,617,46,281,579,8,311,575,-2,273,585,-34,305,581,-41,343,757,101,320,717,17,300,669,-43,282,618,-91,359,710,210,362,770,180,154,-9,37,206,190,7,72,-227,-783,-77,-227,-780,40,-13,898,46,-6,842,44,0,873,45,-32,861,43,-17,867,41,-11,880,38,-4,858,48,11,853,33,-7,868,-33,-31,862,-27,-13,898,-34,-5,842,-35,12,854,-21,-7,869,-29,-11,881,-31,-16,867,-26,-3,858,-32,0,873] }, + { "name": "flamingo_flyA_010", "vertices": [0,48,83,0,-1,191,0,-124,-188,0,41,-81,-136,15,-49,1,-112,326,-25,-84,425,-95,-133,52,5,-69,913,-64,-168,24,2,-50,543,0,-147,-125,-70,-114,-150,-107,40,73,-27,-105,289,0,-184,25,-23,23,828,2,-102,551,5,34,825,6,-62,1003,3,-18,712,-70,-6,-189,-82,-162,-137,6,-86,952,6,25,899,0,-27,233,-129,-63,-100,-20,-55,719,-55,-75,196,-18,-89,972,0,13,-178,5,-162,977,-18,-56,424,0,57,-13,4,-50,818,-93,5,135,-66,-98,-158,1,-49,419,0,-66,-266,-24,-28,910,-32,-53,285,-31,-78,-259,-26,-28,831,-57,-39,196,-25,-88,553,-64,-159,-155,1,-106,423,-20,5,909,-40,12,-158,-36,-68,303,-25,-32,714,-137,-81,-52,6,-24,974,4,0,763,-115,-35,86,-30,-84,353,-51,-123,-178,1,-103,360,-24,-65,550,-63,35,-95,-30,-108,-255,-125,29,102,5,-75,881,-69,-128,-153,-40,-105,-293,0,-106,-286,-85,48,-21,-16,-59,985,0,-39,274,-65,-114,-350,0,-131,244,0,-84,-365,-56,-145,-162,-89,-142,-140,-80,-191,-357,-69,-190,-357,-63,-180,-359,-74,-173,-361,-85,-180,-359,-91,-241,-707,-63,-241,-707,-95,-205,-719,-58,-207,-721,-57,-191,-417,-74,-170,-420,-65,-193,-475,-75,-186,-475,-100,-190,-417,-86,-201,-474,-92,-213,-414,-81,-208,-473,-66,-213,-414,-70,-207,-474,-67,-217,-695,-75,-211,-696,-83,-218,-696,-81,-226,-694,-71,-225,-694,-28,-18,193,-38,-102,-295,-396,273,135,-386,265,-139,-154,91,2,-361,287,-198,-418,258,146,-151,4,118,-382,294,-6,-273,192,-4,-254,156,140,-271,136,155,-280,122,132,-236,134,-176,-357,287,-168,-215,142,-179,-208,114,-202,-412,261,158,-423,378,-132,-431,379,-144,-538,470,206,-459,433,-72,-560,455,217,-554,458,229,-409,277,-6,-488,414,-75,-558,459,183,-536,473,186,-510,450,132,-534,435,128,-520,482,77,-545,466,71,-491,452,27,-517,436,18,-490,463,-14,-517,445,-19,-615,585,134,-584,561,47,-551,527,-17,-517,489,-68,-601,533,241,-632,587,215,-154,-17,34,-263,128,3,134,5,-48,28,-84,425,95,-109,75,64,-168,24,70,-114,-150,107,38,73,28,-105,289,34,23,828,70,-7,-188,79,-162,-137,129,-63,-100,28,-55,719,55,-75,196,30,-89,972,22,-56,424,93,5,135,66,-98,-158,36,-28,910,34,-53,285,31,-78,-259,37,-29,830,57,-39,196,29,-88,552,62,-159,-155,33,5,908,40,12,-158,37,-68,303,33,-32,714,137,-81,-52,115,-35,86,33,-84,353,51,-125,-178,29,-66,550,63,35,-95,30,-108,-255,124,27,102,67,-128,-153,40,-105,-293,85,48,-21,28,-60,985,65,-114,-350,53,-145,-162,87,-142,-140,78,-191,-357,67,-190,-357,61,-180,-359,72,-173,-361,83,-180,-359,84,-239,-708,60,-239,-708,88,-208,-718,56,-209,-720,55,-191,-417,71,-170,-420,61,-193,-475,71,-186,-475,97,-190,-417,82,-201,-474,89,-214,-414,77,-208,-473,63,-213,-414,66,-207,-474,64,-217,-695,73,-211,-696,80,-218,-696,78,-226,-694,69,-225,-694,28,-18,193,38,-102,-295,413,234,139,403,229,-134,152,80,3,383,256,-194,431,214,150,150,0,119,404,258,-2,277,178,-2,252,145,142,265,123,158,272,108,134,234,124,-174,379,256,-164,213,132,-178,207,104,-200,426,218,162,461,332,-127,470,331,-139,590,398,213,507,378,-67,609,378,224,603,383,235,427,235,-2,532,354,-69,608,383,189,589,401,192,560,384,138,580,365,134,576,414,83,597,393,77,542,390,33,564,369,24,543,401,-8,566,378,-13,689,495,142,655,478,54,615,452,-11,575,422,-62,664,446,248,705,493,222,154,-19,34,257,116,5,72,-239,-781,-77,-238,-778,40,-12,900,46,-4,844,44,1,875,45,-30,863,43,-16,869,41,-10,882,38,-2,860,47,13,856,33,-6,870,-33,-30,864,-27,-12,900,-34,-4,845,-35,13,856,-21,-6,871,-29,-9,883,-31,-15,869,-27,-2,860,-32,2,875] }, + { "name": "flamingo_flyA_011", "vertices": [0,57,82,0,9,190,0,-118,-187,0,48,-82,-135,-21,-61,1,-100,327,-25,-68,426,-95,-124,53,5,-57,914,-64,-160,25,2,-30,543,0,-140,-124,-70,-108,-149,-108,42,69,-27,-93,289,0,-175,26,-23,35,829,2,-82,551,5,47,826,6,-50,1004,3,-3,714,-73,0,-193,-82,-155,-136,6,-73,953,6,38,900,0,-16,232,-129,-56,-100,-20,-41,719,-55,-64,196,-18,-76,973,0,19,-179,5,-150,978,-18,-40,424,0,65,-15,4,-38,819,-93,15,134,-66,-91,-157,1,-33,418,0,-62,-266,-24,-15,911,-32,-41,285,-31,-73,-259,-26,-17,832,-57,-29,195,-24,-68,553,-64,-153,-153,1,-90,424,-20,17,910,-40,19,-159,-36,-56,303,-25,-17,715,-137,-73,-52,6,-12,975,4,13,765,-115,-25,86,-30,-70,353,-41,-118,-181,1,-89,361,-24,-45,550,-63,42,-96,-30,-103,-254,-123,29,98,5,-63,882,-69,-122,-152,-40,-102,-292,0,-101,-285,-85,56,-23,-16,-47,986,0,-27,273,-65,-113,-349,0,-120,245,0,-83,-365,-56,-139,-161,-89,-135,-139,-80,-190,-355,-69,-189,-355,-63,-179,-357,-74,-172,-359,-85,-179,-357,-91,-253,-703,-63,-253,-703,-95,-217,-715,-58,-219,-717,-57,-191,-415,-74,-171,-418,-65,-196,-472,-75,-189,-473,-100,-190,-415,-86,-204,-471,-92,-214,-411,-81,-211,-470,-66,-213,-411,-70,-210,-470,-67,-228,-692,-75,-223,-692,-83,-229,-692,-81,-237,-691,-71,-237,-691,-28,-8,193,-38,-98,-294,-471,17,172,-487,26,-101,-185,30,-1,-492,59,-160,-474,-9,183,-138,-19,113,-491,44,32,-341,44,12,-284,27,150,-281,1,165,-282,-15,141,-299,23,-166,-486,62,-130,-287,41,-171,-269,21,-197,-470,-3,195,-593,73,-82,-600,68,-94,-703,43,268,-651,82,-16,-706,16,279,-703,23,291,-497,12,32,-657,48,-19,-711,21,245,-706,47,248,-678,51,191,-683,24,188,-713,67,140,-719,38,134,-677,69,86,-683,39,77,-688,78,45,-694,46,40,-847,64,211,-817,73,120,-777,76,51,-731,77,-4,-788,37,312,-851,52,292,-151,-21,32,-291,1,13,134,-23,-60,28,-68,426,95,-99,75,64,-160,25,70,-108,-149,107,42,69,28,-93,289,34,35,829,72,0,-193,79,-155,-136,129,-56,-100,28,-41,719,55,-64,196,30,-77,973,22,-40,424,93,15,134,66,-91,-157,36,-16,911,34,-41,285,31,-73,-259,37,-17,832,57,-29,195,29,-68,552,62,-153,-153,33,17,909,40,19,-159,37,-56,303,33,-18,715,137,-73,-52,115,-25,86,33,-71,353,41,-119,-181,29,-45,550,63,42,-96,30,-103,-254,123,29,98,67,-122,-152,40,-102,-292,85,56,-23,28,-47,986,65,-113,-349,53,-139,-161,87,-135,-139,78,-190,-355,67,-189,-355,61,-179,-357,72,-172,-359,83,-179,-357,84,-251,-704,60,-251,-704,88,-219,-714,56,-221,-716,55,-191,-415,71,-171,-418,61,-196,-472,71,-189,-473,97,-191,-414,82,-204,-471,89,-214,-411,77,-211,-470,63,-213,-411,66,-210,-470,64,-228,-692,73,-223,-692,80,-229,-692,78,-237,-690,69,-237,-691,28,-8,193,38,-98,-294,468,-22,169,480,-10,-104,184,28,-1,491,21,-162,465,-49,179,137,-20,113,491,3,29,343,34,12,285,26,150,279,0,166,278,-15,142,297,21,-166,487,24,-132,286,39,-171,268,19,-197,463,-42,191,594,12,-87,600,5,-98,702,-48,261,654,7,-22,699,-75,271,697,-68,283,489,-29,28,653,-26,-25,704,-71,237,705,-44,240,677,-33,184,677,-60,180,714,-24,132,714,-53,126,678,-13,80,678,-43,70,690,-5,38,689,-38,33,845,-56,201,817,-40,110,777,-26,42,732,-14,-12,784,-73,302,849,-72,281,150,-22,32,286,2,13,72,-251,-777,-77,-250,-774,40,0,901,46,7,845,44,14,876,45,-18,864,43,-3,870,41,2,883,38,9,861,47,25,857,33,5,871,-33,-18,865,-27,0,901,-34,7,846,-35,25,857,-21,5,872,-29,2,884,-31,-3,870,-27,9,861,-32,14,876] }, + { "name": "flamingo_flyA_012", "vertices": [0,72,81,0,25,190,0,-106,-187,0,61,-83,-127,-52,-70,1,-81,328,-25,-47,426,-95,-109,53,5,-37,915,-64,-145,26,2,-6,543,0,-128,-123,-70,-96,-149,-108,50,65,-27,-76,290,0,-161,28,-23,54,829,2,-58,551,5,66,827,6,-30,1004,3,16,714,-78,9,-195,-82,-143,-134,6,-54,953,6,57,900,0,0,232,-129,-43,-100,-20,-21,719,-55,-48,196,-18,-57,974,0,31,-180,5,-131,978,-18,-19,423,0,79,-16,4,-20,819,-93,31,133,-66,-79,-157,1,-12,417,0,-51,-266,-24,3,912,-32,-24,285,-31,-62,-259,-26,1,832,-57,-12,195,-24,-44,552,-64,-141,-152,1,-69,425,-20,37,910,-40,31,-159,-36,-39,303,-25,2,716,-137,-60,-51,6,7,975,4,32,766,-115,-10,86,-30,-52,354,-35,-104,-185,1,-70,361,-24,-21,550,-63,55,-97,-30,-92,-253,-121,36,95,5,-43,882,-69,-110,-152,-40,-93,-291,0,-91,-284,-85,70,-24,-16,-27,986,0,-10,272,-65,-106,-347,0,-103,246,0,-77,-364,-56,-127,-160,-89,-123,-138,-80,-184,-352,-69,-184,-352,-63,-174,-355,-74,-167,-357,-85,-174,-355,-91,-264,-698,-63,-265,-698,-95,-228,-709,-58,-230,-712,-57,-188,-412,-74,-167,-416,-65,-195,-469,-75,-189,-470,-100,-187,-412,-86,-204,-468,-92,-210,-407,-81,-210,-466,-66,-209,-407,-70,-210,-467,-67,-240,-686,-75,-234,-687,-83,-241,-687,-81,-248,-685,-71,-248,-685,-28,8,192,-38,-89,-293,-381,-242,202,-421,-219,-68,-189,-37,-2,-454,-198,-122,-361,-262,209,-118,-26,106,-427,-225,66,-321,-119,30,-248,-95,159,-227,-112,171,-220,-125,146,-301,-109,-153,-450,-195,-92,-301,-87,-158,-279,-93,-187,-363,-256,222,-524,-273,-46,-525,-281,-58,-543,-412,296,-563,-319,19,-523,-432,303,-525,-426,316,-406,-250,62,-541,-345,12,-533,-429,270,-549,-409,276,-539,-379,221,-522,-400,214,-578,-392,171,-560,-414,161,-561,-357,119,-543,-380,106,-578,-356,79,-558,-380,70,-656,-502,239,-651,-465,150,-633,-425,83,-609,-384,28,-589,-484,337,-642,-521,317,-144,-18,30,-256,-117,21,132,-47,-71,28,-47,426,95,-85,76,64,-145,26,70,-96,-149,109,51,65,28,-76,290,34,54,829,78,9,-195,79,-143,-134,129,-43,-100,28,-21,719,55,-48,196,30,-57,973,22,-19,423,93,31,133,66,-79,-157,36,3,911,34,-24,285,31,-62,-259,37,1,832,57,-12,195,29,-44,552,62,-141,-152,33,36,910,40,31,-159,37,-39,303,33,2,715,137,-60,-51,115,-10,86,33,-52,354,36,-103,-185,29,-21,550,63,55,-97,30,-92,-253,122,37,95,67,-110,-152,40,-93,-291,85,70,-24,28,-28,986,65,-106,-347,53,-127,-160,87,-123,-138,78,-184,-352,67,-184,-352,61,-174,-355,72,-167,-357,83,-174,-355,84,-262,-699,60,-262,-699,88,-231,-709,56,-232,-711,55,-188,-412,71,-167,-416,61,-195,-469,71,-189,-470,97,-187,-412,82,-204,-468,89,-210,-407,77,-210,-466,63,-209,-407,66,-210,-467,64,-240,-686,73,-234,-687,80,-241,-687,78,-248,-685,69,-248,-685,28,8,192,38,-89,-293,364,-262,191,404,-232,-79,194,-32,-3,439,-214,-132,341,-279,198,120,-24,106,410,-247,55,323,-121,28,256,-91,159,234,-106,171,226,-118,146,304,-103,-154,436,-212,-102,306,-82,-159,284,-88,-188,344,-275,210,495,-305,-62,495,-312,-74,495,-463,272,527,-360,0,473,-479,278,476,-475,291,385,-267,50,501,-381,-7,482,-477,245,502,-460,252,496,-426,199,476,-443,191,531,-442,147,510,-460,137,520,-402,98,498,-421,84,537,-402,57,512,-422,47,590,-568,207,591,-526,121,579,-480,56,562,-433,4,529,-544,308,575,-589,285,145,-17,29,260,-110,21,72,-261,-772,-77,-260,-769,40,18,901,46,26,845,44,33,876,45,0,865,43,15,870,41,21,883,38,28,861,47,44,857,33,24,872,-33,0,865,-27,19,901,-35,26,846,-36,44,857,-21,25,872,-29,21,884,-31,15,871,-27,28,861,-32,33,876] }, + { "name": "flamingo_flyA_013", "vertices": [0,89,80,0,42,189,0,-92,-186,0,76,-84,-116,-68,-77,1,-63,328,-25,-27,426,-95,-93,54,5,-15,915,-64,-129,27,2,15,543,0,-113,-122,-70,-81,-148,-109,62,63,-27,-58,290,0,-145,29,-23,76,829,2,-37,551,5,87,826,6,-8,1004,3,38,714,-82,18,-197,-82,-128,-133,6,-31,953,6,79,900,0,17,231,-129,-28,-100,-20,0,719,-55,-30,196,-18,-34,974,0,45,-181,5,-108,979,-18,0,423,0,95,-17,4,1,819,-93,47,133,-66,-65,-156,1,7,417,0,-38,-266,-24,25,911,-32,-6,284,-31,-49,-259,-26,23,832,-57,4,195,-24,-22,552,-64,-127,-150,1,-49,425,-20,59,909,-40,45,-160,-36,-20,303,-25,23,715,-137,-44,-51,6,30,975,4,54,766,-115,5,85,-30,-32,354,-34,-86,-187,1,-51,362,-24,0,550,-63,70,-98,-30,-79,-252,-119,48,93,5,-21,882,-69,-95,-152,-40,-80,-290,0,-78,-283,-85,85,-25,-16,-5,986,0,7,272,-65,-95,-346,0,-85,247,0,-66,-364,-56,-113,-159,-89,-108,-138,-80,-176,-349,-69,-176,-350,-63,-166,-353,-74,-159,-354,-85,-166,-352,-91,-273,-692,-63,-273,-692,-95,-237,-703,-58,-239,-705,-57,-182,-409,-74,-161,-414,-65,-192,-466,-75,-186,-467,-100,-181,-409,-86,-200,-464,-92,-204,-403,-81,-207,-462,-66,-203,-403,-70,-206,-462,-67,-249,-680,-75,-243,-682,-83,-250,-680,-81,-257,-678,-71,-257,-678,-28,25,192,-38,-77,-292,-211,-372,206,-280,-337,-58,-192,-56,-21,-323,-335,-108,-183,-376,210,-104,-17,101,-268,-368,73,-245,-217,36,-185,-157,160,-157,-161,170,-148,-169,144,-250,-198,-147,-319,-334,-78,-261,-180,-151,-241,-176,-182,-187,-375,223,-323,-448,-49,-320,-453,-62,-221,-618,263,-318,-518,5,-192,-622,267,-196,-621,280,-237,-372,65,-286,-522,-4,-204,-621,234,-229,-618,243,-245,-580,195,-219,-584,184,-271,-606,142,-244,-610,129,-284,-561,98,-257,-565,82,-302,-564,58,-272,-569,45,-256,-750,187,-283,-705,106,-300,-653,47,-312,-598,2,-207,-709,288,-227,-768,261,-138,-6,28,-193,-180,23,128,-60,-78,28,-27,426,95,-68,76,64,-129,27,70,-81,-148,112,63,63,28,-58,290,34,76,828,84,19,-197,79,-128,-133,129,-28,-100,28,0,719,55,-30,196,30,-35,973,22,0,423,93,47,133,66,-65,-156,36,25,911,34,-6,284,31,-49,-259,37,23,832,57,4,195,29,-22,552,62,-127,-150,33,59,909,40,45,-160,37,-20,303,33,23,715,137,-44,-51,115,5,85,33,-33,354,36,-85,-187,29,0,549,63,70,-98,30,-79,-252,122,50,93,67,-95,-152,40,-80,-290,85,85,-25,28,-5,986,65,-95,-346,53,-113,-159,87,-108,-138,78,-176,-349,67,-176,-350,61,-166,-353,72,-159,-354,83,-166,-352,84,-271,-693,60,-271,-693,88,-239,-702,56,-241,-705,55,-181,-409,71,-161,-414,61,-192,-466,71,-186,-467,97,-181,-409,82,-200,-464,89,-204,-403,77,-207,-462,63,-203,-403,66,-206,-462,64,-249,-680,73,-243,-682,80,-250,-680,78,-257,-678,69,-257,-678,28,25,192,38,-77,-292,209,-372,195,279,-331,-68,184,-74,-5,323,-330,-118,181,-374,199,110,-13,101,266,-366,62,254,-213,34,198,-153,160,171,-156,170,161,-162,144,261,-190,-148,319,-330,-88,273,-173,-152,252,-168,-183,185,-374,212,314,-445,-63,311,-450,-76,202,-620,242,305,-516,-11,173,-622,246,177,-622,259,235,-368,55,273,-518,-21,185,-621,214,210,-619,223,228,-581,176,202,-582,165,253,-607,122,226,-608,109,269,-561,79,241,-562,63,286,-564,39,255,-566,26,228,-750,161,257,-704,82,278,-651,25,294,-596,-18,182,-711,264,197,-770,234,140,-5,27,205,-173,22,72,-269,-766,-77,-268,-763,40,41,901,46,48,845,44,55,876,45,22,864,43,37,870,41,43,883,38,50,861,47,66,856,33,46,871,-33,22,865,-27,41,901,-35,48,846,-36,66,857,-21,47,872,-29,43,883,-31,37,870,-27,50,861,-32,55,876] } + ], + + "morphColors": [ + { "name": "flamingo_colorMap", "colors": [0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.000,0.000,0.050,1.000,0.660,0.670,0.000,0.000,0.050,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.000,0.000,0.050,1.000,0.660,0.670,0.000,0.000,0.050,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.280,0.230,0.280,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,1.000,0.660,0.670,0.890,0.450,0.550,1.000,0.660,0.670,1.000,0.660,0.670,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.000,0.000,0.050,1.000,0.660,0.670,0.000,0.000,0.050,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,0.000,0.000,0.050,0.000,0.000,0.050,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.280,0.230,0.280,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.280,0.230,0.280,0.890,0.450,0.550,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,0.000,0.000,0.050,1.000,0.660,0.670,1.000,0.660,0.670,0.000,0.000,0.050,0.890,0.450,0.550,0.890,0.450,0.550,0.000,0.000,0.050,0.000,0.000,0.050,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670,0.890,0.450,0.550,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670,0.000,0.000,0.050,0.000,0.000,0.050,0.000,0.000,0.050,0.000,0.000,0.050,1.000,0.660,0.670,0.890,0.450,0.550,0.890,0.450,0.550,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670,1.000,0.660,0.670] } + ], + + "normals": [], + + "colors": [], + + "uvs": [[0.460780,0.345547,0.492206,0.346869,0.491029,0.397292,0.513205,0.366790,0.967919,0.886500,0.926208,0.884392,0.974633,0.861964,0.923128,0.822731,0.379789,0.550301,0.361380,0.530215,0.405596,0.514803,0.393524,0.491377,0.642090,0.808686,0.678787,0.830538,0.654733,0.868257,0.706256,0.872820,0.401226,0.457470,0.435629,0.473494,0.890657,0.865590,0.819363,0.835755,0.414137,0.418273,0.456547,0.444722,0.717196,0.920102,0.627139,0.899235,0.723649,0.909818,0.360307,0.491121,0.665075,0.775378,0.640107,0.775621,0.581751,0.817514,0.615645,0.860017,0.592416,0.787245,0.603164,0.776672,0.641433,0.765926,0.515660,0.799679,0.517541,0.785997,0.548346,0.870048,0.553064,0.833365,0.581690,0.869293,0.380487,0.817625,0.396316,0.802512,0.457495,0.839560,0.459160,0.811129,0.917002,0.893457,0.912104,0.890556,0.863667,0.885845,0.920271,0.887383,0.903012,0.902104,0.896243,0.916866,0.767618,0.873739,0.912667,0.918699,0.460629,0.806369,0.393092,0.775959,0.463709,0.784420,0.402965,0.759661,0.922360,0.908785,0.335869,0.732939,0.343891,0.721838,0.384768,0.740057,0.516702,0.859802,0.519957,0.835144,0.290271,0.732869,0.293828,0.722451,0.221387,0.746815,0.347062,0.774178,0.320942,0.755179,0.305607,0.744024,0.297943,0.764999,0.299668,0.783012,0.289405,0.761939,0.268680,0.766382,0.196512,0.780294,0.252274,0.791846,0.207653,0.802503,0.643269,0.758189,0.743696,0.813074,0.828719,0.813152,0.024890,0.870378,0.249839,0.818311,0.215550,0.805902,0.433332,0.367387,0.437057,0.346910,0.185019,0.774126,0.346842,0.537644,0.366414,0.525375,0.993717,0.887374,0.312556,0.822855,0.299111,0.661271,0.376500,0.554823,0.301534,0.065927,0.395386,0.140998,0.324419,0.079171,0.397535,0.139592,0.405030,0.128142,0.344995,0.070876,0.409642,0.120788,0.346999,0.044974,0.403580,0.128864,0.320942,0.048648,0.502410,0.190408,0.507147,0.183268,0.453000,0.162430,0.468391,0.138901,0.496095,0.199886,0.453328,0.161352,0.491179,0.207246,0.435955,0.187887,0.491537,0.206806,0.436663,0.186956,0.822919,0.413358,0.827039,0.407171,0.822576,0.414829,0.816261,0.423173,0.816566,0.422783,0.855610,0.407298,0.825209,0.447259,0.824952,0.447569,0.857798,0.410789,0.347091,0.539613,0.260062,0.616281,0.695299,0.794724,0.684908,0.761541,0.291707,0.325536,0.230573,0.261817,0.336039,0.233353,0.371848,0.302046,0.342691,0.224084,0.322306,0.333420,0.234230,0.256422,0.368671,0.304068,0.364503,0.382067,0.376809,0.293254,0.427576,0.345286,0.403616,0.367502,0.279719,0.392597,0.185841,0.348300,0.176432,0.361098,0.283360,0.408381,0.345691,0.219945,0.377869,0.421981,0.280279,0.385033,0.199360,0.329423,0.140080,0.306490,0.144404,0.302443,0.124596,0.101411,0.120437,0.112637,0.130107,0.148060,0.120285,0.269917,0.130284,0.085900,0.128509,0.090694,0.118158,0.206959,0.107659,0.226879,0.122006,0.264691,0.103973,0.171234,0.025494,0.110758,0.103223,0.173620,0.131210,0.144795,0.076450,0.178755,0.117916,0.208045,0.086127,0.216536,0.106489,0.230527,0.096394,0.254774,0.121625,0.109206,0.021786,0.022503,0.026961,0.065536,0.538631,0.380622,0.549582,0.410108,0.923129,0.822731,0.926208,0.884392,0.974633,0.861964,0.967919,0.886500,0.404573,0.561617,0.431604,0.519062,0.642091,0.808686,0.654733,0.868257,0.678788,0.830538,0.706256,0.872820,0.461483,0.501277,0.890657,0.865590,0.819364,0.835755,0.494787,0.476907,0.912104,0.890556,0.723649,0.909818,0.442092,0.550581,0.640107,0.775621,0.665075,0.775378,0.615645,0.860017,0.581752,0.817514,0.592417,0.787245,0.515660,0.799679,0.553064,0.833365,0.459160,0.811129,0.396316,0.802512,0.917003,0.893457,0.903013,0.902104,0.767619,0.873739,0.896244,0.916866,0.912668,0.918699,0.460629,0.806369,0.393092,0.775959,0.922360,0.908785,0.335869,0.732939,0.519958,0.835144,0.290272,0.732869,0.268782,0.766223,0.282160,0.764093,0.294948,0.762057,0.306094,0.744378,0.196513,0.780294,0.252275,0.791846,0.207654,0.802503,0.743697,0.813074,0.828720,0.813152,0.347062,0.774178,0.537271,0.442953,0.555602,0.433094,0.401990,0.577737,0.407624,0.555336,0.301534,0.065927,0.324420,0.079171,0.395386,0.140999,0.397535,0.139592,0.344995,0.070876,0.405031,0.128142,0.409643,0.120789,0.347000,0.044974,0.403581,0.128865,0.320943,0.048649,0.468391,0.138901,0.507147,0.183268,0.453001,0.162430,0.502410,0.190408,0.453329,0.161353,0.496096,0.199887,0.435956,0.187887,0.491180,0.207247,0.436664,0.186957,0.491538,0.206806,0.827039,0.407171,0.822920,0.413358,0.822577,0.414830,0.816262,0.423173,0.816567,0.422784,0.827274,0.444925,0.853904,0.409921,0.827048,0.445197,0.855821,0.412979,0.293329,0.784193,0.400040,0.578108,0.353952,0.684541,0.695300,0.794724,0.684908,0.761541,0.620762,0.564767,0.696311,0.494555,0.704991,0.608151,0.708995,0.603008,0.703076,0.485368,0.603826,0.538090,0.617315,0.482215,0.616372,0.485861,0.544536,0.512955,0.624149,0.474785,0.560071,0.441612,0.546327,0.471257,0.551809,0.592068,0.631833,0.672315,0.535671,0.593472,0.622560,0.685212,0.706088,0.481238,0.558831,0.589202,0.502446,0.512551,0.645620,0.653633,0.680884,0.702879,0.681865,0.697038,0.883432,0.647755,0.874220,0.655442,0.837335,0.658517,0.718707,0.707843,0.891169,0.639488,0.895489,0.636556,0.784229,0.688413,0.768885,0.704894,0.721581,0.703107,0.823023,0.689502,0.822324,0.692199,0.901260,0.743739,0.838826,0.655265,0.784666,0.690268,0.838723,0.738260,0.767275,0.708541,0.790639,0.725178,0.749604,0.724851,0.875911,0.652120,0.992303,0.711033,0.956024,0.723714,0.919160,0.477087,0.915443,0.474702,0.324032,0.757426,0.296407,0.761825,0.307995,0.759980,0.295625,0.761949,0.294481,0.748824,0.307022,0.758163,0.297485,0.760207]], + + "faces": [10,0,35,1,0,2,0,3,10,1,35,98,0,3,0,1,10,60,36,41,0,4,5,6,10,41,36,21,0,6,5,7,10,38,41,30,0,8,9,10,10,30,41,48,0,10,9,11,10,43,54,28,0,12,13,14,10,28,54,7,0,14,13,15,10,59,3,48,0,16,17,11,10,48,3,30,0,11,17,10,10,21,36,26,0,7,5,19,10,26,36,12,0,19,5,18,10,59,66,3,0,16,20,17,10,3,66,33,0,17,20,21,10,15,70,9,0,22,23,24,10,59,48,21,0,16,11,25,10,21,48,41,0,25,11,9,10,54,43,35,0,13,12,26,10,35,43,98,0,26,12,27,10,49,28,14,0,28,14,29,10,49,40,43,0,28,30,12,10,68,25,40,0,31,32,30,10,40,25,43,0,30,32,12,10,32,37,40,0,33,34,30,10,40,37,68,0,30,34,31,10,57,55,5,0,35,36,37,10,5,55,49,0,37,36,28,10,34,27,17,0,38,39,40,10,17,27,44,0,40,39,41,10,63,56,11,0,42,43,44,10,2,11,56,0,45,44,43,10,73,22,51,0,46,47,48,10,51,22,7,0,48,47,15,10,22,9,7,0,47,24,15,10,7,9,28,0,15,24,14,10,9,45,15,0,24,49,22,10,58,50,10,0,50,51,52,10,10,50,20,0,52,51,53,10,12,36,63,0,18,5,42,10,63,36,56,0,42,5,43,10,9,70,28,0,24,23,14,10,28,70,14,0,14,23,29,10,49,14,5,0,28,29,37,10,5,14,70,0,37,29,23,10,72,63,11,0,54,42,44,10,16,18,53,0,55,56,57,10,46,6,57,0,58,59,35,10,57,6,55,0,35,59,36,10,47,24,18,0,60,61,56,10,47,52,24,0,60,62,61,10,42,266,16,0,63,64,55,10,16,266,267,0,55,64,65,10,270,264,269,0,66,67,68,10,269,264,265,0,68,67,69,10,47,265,67,0,60,69,70,10,67,39,29,0,70,71,72,10,1,98,25,0,73,27,32,10,25,98,43,0,32,27,12,10,51,140,26,0,48,74,19,10,26,140,4,0,19,74,75,10,42,53,50,0,63,57,51,10,50,53,20,0,51,57,53,10,50,27,42,0,51,39,63,10,29,31,67,0,72,76,70,10,8,23,39,0,77,78,71,10,23,31,29,0,78,76,72,10,58,10,32,0,50,52,33,10,32,10,37,0,33,52,34,10,40,49,32,0,30,28,33,10,49,55,32,0,28,36,33,10,55,6,32,0,36,59,33,10,0,13,35,0,2,79,0,10,35,13,61,0,0,79,80,10,44,58,6,0,41,50,59,10,6,58,32,0,59,50,33,10,46,44,6,0,58,41,59,10,23,29,39,0,78,72,71,10,16,53,42,0,55,57,63,10,50,58,27,0,51,50,39,10,27,58,44,0,39,50,41,10,22,45,9,0,47,49,24,10,17,44,46,0,40,41,58,10,54,140,7,0,13,74,15,10,7,140,51,0,15,74,48,10,19,52,67,0,81,62,70,10,67,52,47,0,70,62,60,10,67,31,19,0,70,76,81,10,64,60,41,0,82,83,9,10,56,60,2,0,43,4,45,10,2,60,65,0,45,4,84,10,62,42,34,0,85,63,38,10,34,42,27,0,38,63,39,10,71,41,38,0,86,9,8,10,65,60,64,0,87,83,82,10,22,74,45,0,88,89,90,10,45,74,75,0,90,89,91,10,76,72,75,0,92,93,91,10,75,72,45,0,91,93,90,10,76,77,72,0,92,94,93,10,72,77,63,0,93,94,95,10,77,78,63,0,94,96,95,10,63,78,73,0,95,96,97,10,78,74,73,0,96,89,97,10,73,74,22,0,97,89,88,10,85,86,83,0,98,99,100,10,83,86,84,0,100,99,101,10,88,87,86,0,102,103,99,10,86,87,84,0,99,103,101,10,90,89,88,0,104,105,102,10,88,89,87,0,102,105,103,10,92,91,90,0,106,107,104,10,90,91,89,0,104,107,105,10,85,83,92,0,98,100,106,10,92,83,91,0,106,100,107,10,78,87,74,0,96,103,89,10,74,87,89,0,89,103,105,10,89,91,74,0,105,107,89,10,74,91,75,0,89,107,91,10,91,83,75,0,107,100,91,10,75,83,76,0,91,100,92,10,84,77,83,0,101,94,100,10,83,77,76,0,100,94,92,10,87,78,84,0,103,96,101,10,84,78,77,0,101,96,94,10,93,94,85,0,108,109,98,10,85,94,86,0,98,109,99,10,95,88,94,0,110,102,109,10,94,88,86,0,109,102,99,10,95,96,88,0,110,111,102,10,88,96,90,0,102,111,104,10,96,97,90,0,111,112,104,10,90,97,92,0,104,112,106,10,97,93,92,0,112,108,106,10,92,93,85,0,106,108,98,10,81,79,95,0,113,114,110,10,95,79,96,0,110,114,111,10,80,97,79,0,115,112,114,10,79,97,96,0,114,112,111,10,82,93,80,0,116,108,115,10,80,93,97,0,115,108,112,10,82,81,94,0,116,113,109,10,81,95,94,0,113,110,109,10,42,62,264,0,63,85,67,10,264,62,39,0,67,85,71,10,39,62,8,0,71,85,77,10,51,26,73,0,48,19,46,10,63,73,12,0,42,46,18,10,26,12,73,0,19,18,46,10,21,26,4,0,7,19,75,10,33,66,0,0,21,20,2,10,0,66,13,0,2,20,79,10,82,94,93,0,116,109,108,10,72,11,45,0,54,44,49,10,15,45,11,0,22,49,44,10,99,71,69,0,117,86,118,10,41,99,64,0,9,117,82,10,71,99,41,0,86,117,9,10,64,99,69,0,82,117,118,10,69,71,64,0,118,86,82,10,64,71,65,0,82,86,87,10,54,35,105,0,13,26,119,10,105,35,61,0,119,26,120,10,107,106,100,0,121,122,123,10,110,104,141,0,124,125,126,10,141,104,122,0,126,125,127,10,108,13,102,0,128,79,129,10,102,13,66,0,129,79,20,10,13,108,61,0,79,128,80,10,61,108,109,0,80,128,130,10,110,105,109,0,124,131,130,10,109,105,61,0,130,131,80,10,105,110,140,0,131,124,132,10,140,110,141,0,132,124,126,10,21,113,102,0,25,133,129,10,102,113,107,0,129,133,121,10,113,112,107,0,133,134,121,10,107,112,106,0,121,134,122,10,112,113,103,0,134,133,135,10,103,113,114,0,135,133,136,10,66,59,102,0,20,16,129,10,102,59,21,0,129,16,25,10,115,109,100,0,137,130,123,10,100,109,108,0,123,130,128,10,115,104,109,0,137,125,130,10,109,104,110,0,130,125,124,10,21,4,114,0,25,138,136,10,114,4,111,0,136,138,139,10,102,107,108,0,129,121,128,10,108,107,100,0,128,121,123,10,101,103,111,0,140,135,139,10,111,103,114,0,139,135,136,10,103,117,112,0,135,141,134,10,112,117,116,0,134,141,142,10,118,100,125,0,143,123,144,10,126,125,100,0,145,144,123,10,112,116,106,0,134,142,122,10,106,116,119,0,122,142,146,10,121,120,115,0,147,148,137,10,115,120,104,0,137,148,125,10,100,118,115,0,123,143,137,10,115,118,121,0,137,143,147,10,131,133,122,0,149,150,127,10,133,123,122,0,150,151,127,10,101,122,123,0,140,127,151,10,117,123,116,0,141,151,142,10,116,123,119,0,142,151,146,10,129,134,128,0,152,153,154,10,128,134,126,0,154,153,145,10,126,134,127,0,145,153,155,10,127,134,129,0,155,153,152,10,131,135,130,0,149,156,157,10,130,135,128,0,157,156,154,10,128,135,129,0,154,156,152,10,129,135,131,0,152,156,149,10,133,136,132,0,150,158,159,10,132,136,130,0,159,158,157,10,130,136,131,0,157,158,149,10,131,136,133,0,149,158,150,10,123,137,119,0,151,160,146,10,119,137,132,0,146,160,159,10,132,137,133,0,159,160,150,10,133,137,123,0,150,160,151,10,124,138,125,0,161,162,144,10,125,138,118,0,144,162,143,10,118,138,121,0,143,162,147,10,121,138,120,0,147,162,148,10,120,138,124,0,148,162,161,10,127,139,126,0,155,163,145,10,126,139,125,0,145,163,144,10,125,139,124,0,144,163,161,10,124,139,127,0,161,163,155,10,103,101,117,0,135,140,141,10,117,101,123,0,141,140,151,10,126,100,128,0,145,123,154,10,130,128,100,0,157,154,123,10,100,106,130,0,123,122,157,10,130,106,132,0,157,122,159,10,106,119,132,0,122,146,159,10,21,114,113,0,25,136,133,10,104,127,122,0,125,155,127,10,127,129,122,0,155,152,127,10,129,131,122,0,152,149,127,10,120,124,104,0,148,161,125,10,104,124,127,0,125,161,155,10,140,54,105,0,74,13,119,10,111,4,141,0,139,138,126,10,141,4,140,0,126,138,132,10,111,141,101,0,139,126,140,10,101,141,122,0,140,126,127,10,47,18,16,0,60,56,55,10,0,1,157,0,2,3,165,10,157,1,209,0,165,3,164,10,150,158,161,0,166,167,168,10,161,158,176,0,168,167,169,10,38,30,161,0,8,10,170,10,161,30,167,0,170,10,171,10,163,154,171,0,172,173,174,10,171,154,144,0,174,173,175,10,175,167,3,0,176,171,17,10,3,167,30,0,17,171,10,10,146,158,152,0,177,167,178,10,152,158,150,0,178,167,166,10,33,180,3,0,21,179,17,10,3,180,175,0,17,179,176,10,173,176,158,0,180,169,167,10,15,145,70,0,22,181,23,10,161,167,150,0,170,171,182,10,150,167,175,0,182,171,176,10,209,163,157,0,183,172,184,10,157,163,171,0,184,172,174,10,148,154,168,0,185,173,186,10,163,160,168,0,172,187,186,10,163,25,160,0,172,32,187,10,160,25,68,0,187,32,31,10,68,37,160,0,31,34,187,10,160,37,156,0,187,34,188,10,168,172,5,0,186,189,37,10,5,172,57,0,37,189,35,10,164,153,17,0,190,191,40,10,17,153,34,0,40,191,38,10,178,11,173,0,192,44,180,10,2,173,11,0,45,180,44,10,184,170,151,0,193,194,195,10,151,170,144,0,195,194,175,10,154,145,144,0,173,181,175,10,144,145,151,0,175,181,195,10,145,15,165,0,181,22,196,10,174,10,169,0,197,52,198,10,169,10,20,0,198,52,53,10,146,178,158,0,177,192,167,10,158,178,173,0,167,192,180,10,148,70,154,0,185,23,173,10,154,70,145,0,173,23,181,10,70,148,5,0,23,185,37,10,5,148,168,0,37,185,186,10,183,11,178,0,199,44,192,10,149,53,18,0,200,57,56,10,46,57,143,0,58,35,201,10,143,57,172,0,201,35,189,10,166,18,24,0,202,56,61,10,166,24,52,0,202,61,62,10,255,260,257,0,203,204,205,10,166,262,149,0,202,206,200,10,255,181,159,0,203,207,208,10,159,181,155,0,208,207,209,10,1,25,209,0,73,32,183,10,209,25,163,0,183,32,172,10,170,152,251,0,194,178,210,10,251,152,142,0,210,178,211,10,162,169,53,0,212,198,57,10,53,169,20,0,57,198,53,10,169,162,153,0,198,212,191,10,155,181,31,0,209,207,76,10,8,159,23,0,77,208,78,10,23,155,31,0,78,209,76,10,174,156,10,0,197,188,52,10,10,156,37,0,52,188,34,10,160,156,168,0,187,188,186,10,168,156,172,0,186,188,189,10,156,143,172,0,188,201,189,10,0,157,147,0,2,165,213,10,147,157,177,0,213,165,214,10,164,143,174,0,190,201,197,10,143,156,174,0,201,188,197,10,46,143,164,0,58,201,190,10,23,159,155,0,78,208,209,10,71,38,161,0,86,8,170,10,149,162,53,0,200,212,57,10,164,174,153,0,190,197,191,10,153,174,169,0,191,197,198,10,151,145,165,0,195,181,196,10,17,46,164,0,40,58,190,10,170,251,144,0,194,210,175,10,144,251,171,0,175,210,174,10,166,52,181,0,202,62,207,10,181,52,19,0,207,62,81,10,181,19,31,0,207,81,76,10,173,2,176,0,180,45,169,10,176,2,65,0,169,45,84,10,179,161,176,0,215,170,216,10,153,162,34,0,191,212,38,10,34,162,62,0,38,212,85,10,65,179,176,0,87,215,216,10,151,165,185,0,217,218,219,10,185,165,186,0,219,218,220,10,165,183,186,0,218,221,220,10,186,183,187,0,220,221,222,10,187,183,188,0,222,221,223,10,188,183,178,0,223,221,224,10,188,178,189,0,223,224,225,10,189,178,184,0,225,224,226,10,189,184,185,0,225,226,219,10,185,184,151,0,219,226,217,10,195,197,194,0,227,228,229,10,194,197,196,0,229,228,230,10,195,198,197,0,227,231,228,10,197,198,199,0,228,231,232,10,198,200,199,0,231,233,232,10,199,200,201,0,232,233,234,10,200,202,201,0,233,235,234,10,201,202,203,0,234,235,236,10,202,194,203,0,235,229,236,10,203,194,196,0,236,229,230,10,189,185,198,0,225,219,231,10,198,185,200,0,231,219,233,10,200,185,202,0,233,219,235,10,202,185,186,0,235,219,220,10,202,186,194,0,235,220,229,10,194,186,187,0,229,220,222,10,187,188,194,0,222,223,229,10,194,188,195,0,229,223,227,10,188,189,195,0,223,225,227,10,195,189,198,0,227,225,231,10,197,205,196,0,228,237,230,10,196,205,204,0,230,237,238,10,197,199,205,0,228,232,237,10,205,199,206,0,237,232,239,10,206,199,207,0,239,232,240,10,207,199,201,0,240,232,234,10,207,201,208,0,240,234,241,10,208,201,203,0,241,234,236,10,208,203,204,0,241,236,238,10,204,203,196,0,238,236,230,10,207,190,206,0,240,242,239,10,206,190,192,0,239,242,243,10,207,208,190,0,240,241,242,10,190,208,191,0,242,241,244,10,193,191,204,0,245,244,238,10,204,191,208,0,238,244,241,10,193,205,192,0,245,237,243,10,192,205,206,0,243,237,239,10,162,258,62,0,212,246,85,10,62,258,159,0,85,246,208,10,62,159,8,0,85,208,77,10,170,184,152,0,194,193,178,10,178,146,184,0,192,177,193,10,184,146,152,0,193,177,178,10,150,142,152,0,166,211,178,10,33,0,180,0,21,2,179,10,180,0,147,0,179,2,213,10,193,204,205,0,245,238,237,10,183,165,11,0,199,196,44,10,15,11,165,0,22,44,196,10,210,182,71,0,247,248,86,10,161,179,210,0,170,215,247,10,71,161,210,0,86,170,247,10,179,182,210,0,215,248,247,10,65,71,179,0,87,86,215,10,179,71,182,0,215,86,248,10,171,216,157,0,174,249,184,10,157,216,177,0,184,249,250,10,218,211,217,0,251,252,253,10,233,215,252,0,254,255,256,10,252,215,221,0,256,255,257,10,219,213,147,0,258,259,213,10,147,213,180,0,213,259,179,10,220,219,177,0,260,258,214,10,177,219,147,0,214,258,213,10,177,216,220,0,214,261,260,10,220,216,221,0,260,261,257,10,216,251,221,0,261,262,257,10,221,251,252,0,257,262,256,10,218,224,213,0,251,263,259,10,213,224,150,0,259,263,182,10,224,218,223,0,263,251,264,10,223,218,217,0,264,251,253,10,225,224,214,0,265,263,266,10,214,224,223,0,266,263,264,10,180,213,175,0,179,259,176,10,175,213,150,0,176,259,182,10,219,220,211,0,258,260,252,10,211,220,226,0,252,260,267,10,221,215,220,0,257,255,260,10,220,215,226,0,260,255,267,10,222,142,225,0,268,269,265,10,225,142,150,0,265,269,182,10,211,218,219,0,252,251,258,10,219,218,213,0,258,251,259,10,212,222,214,0,270,268,266,10,214,222,225,0,266,268,265,10,214,223,228,0,266,264,271,10,228,223,227,0,271,264,272,10,229,236,211,0,273,274,252,10,237,211,236,0,275,252,274,10,230,227,217,0,276,272,253,10,223,217,227,0,264,253,272,10,215,231,226,0,255,277,267,10,226,231,232,0,267,277,278,10,211,226,229,0,252,267,273,10,229,226,232,0,273,267,278,10,242,233,244,0,279,254,280,10,233,234,244,0,254,281,280,10,212,234,233,0,270,281,254,10,227,230,228,0,272,276,271,10,228,230,234,0,271,276,281,10,240,239,245,0,282,283,284,10,239,237,245,0,283,275,284,10,237,238,245,0,275,285,284,10,238,240,245,0,285,282,284,10,242,241,246,0,279,286,287,10,241,239,246,0,286,283,287,10,239,240,246,0,283,282,287,10,240,242,246,0,282,279,287,10,244,243,247,0,280,288,289,10,243,241,247,0,288,286,289,10,241,242,247,0,286,279,289,10,242,244,247,0,279,280,289,10,234,230,248,0,281,276,290,10,230,243,248,0,276,288,290,10,243,244,248,0,288,280,290,10,244,234,248,0,280,281,290,10,235,236,249,0,291,274,292,10,236,229,249,0,274,273,292,10,229,232,249,0,273,278,292,10,232,231,249,0,278,277,292,10,231,235,249,0,277,291,292,10,238,237,250,0,285,275,293,10,237,236,250,0,275,274,293,10,236,235,250,0,274,291,293,10,235,238,250,0,291,285,293,10,234,212,228,0,281,270,271,10,228,212,214,0,271,270,266,10,241,217,211,0,286,253,252,10,211,237,239,0,252,275,283,10,241,211,239,0,286,252,283,10,241,243,217,0,286,288,253,10,217,243,230,0,253,288,276,10,150,224,225,0,182,263,265,10,215,233,238,0,255,254,285,10,238,233,240,0,285,254,282,10,233,242,240,0,254,279,282,10,231,215,235,0,277,255,291,10,215,238,235,0,255,285,291,10,251,216,171,0,210,249,174,10,251,142,252,0,262,269,256,10,252,142,222,0,256,269,268,10,233,252,212,0,254,256,270,10,212,252,222,0,270,256,268,10,166,149,18,0,202,200,56,10,190,253,192,0,242,294,243,10,191,193,253,0,244,245,294,10,253,193,192,0,294,245,243,10,191,253,190,0,244,294,242,10,82,254,81,0,116,295,113,10,80,79,254,0,115,114,295,10,254,79,81,0,295,114,113,10,80,254,82,0,115,295,116,2,60,56,36,0,10,168,154,163,0,186,173,172,10,43,28,49,0,12,14,28,10,257,262,166,0,205,206,202,10,159,258,255,0,208,246,203,10,258,162,256,0,246,212,296,10,259,256,261,0,297,296,298,10,260,263,257,0,204,299,205,10,259,260,258,0,297,204,246,10,258,260,255,0,246,204,203,10,263,261,257,0,299,298,205,10,262,256,149,0,206,296,200,10,149,256,162,0,200,296,212,10,260,259,263,0,204,297,299,10,259,261,263,0,297,298,299,10,257,261,262,0,205,298,206,10,262,261,256,0,206,298,296,10,258,256,259,0,246,296,297,10,255,257,166,0,203,205,202,10,265,272,269,0,69,300,68,10,16,267,47,0,55,65,60,10,272,267,271,0,300,65,301,10,271,267,266,0,301,65,64,10,266,264,270,0,64,67,66,10,268,270,269,0,302,66,68,10,271,270,268,0,301,66,302,10,272,271,268,0,300,301,302,10,269,272,268,0,68,300,302,10,266,270,271,0,64,66,301,10,266,42,264,0,64,63,67,10,265,264,39,0,69,67,71,10,47,272,265,0,60,300,69,10,47,267,272,0,60,65,300,10,67,265,39,0,70,69,71,2,166,181,255,0] + +} \ No newline at end of file diff --git a/examples/models/animated/parrot.js b/examples/models/animated/parrot.js new file mode 100644 index 0000000000000000000000000000000000000000..ee4b59621902a6bf94aba59ef8e0d326a280a466 --- /dev/null +++ b/examples/models/animated/parrot.js @@ -0,0 +1,45 @@ +{ + + "metadata" : { + "formatVersion" : 3, + "description" : "3D assets and textures for ROME - 3 Dreams of Black - at http://ro.me are licensed under a Creative CommonsAttribution-NonCommercial-ShareAlike 3.0 Unported License ( http://creativecommons.org/licenses/by-nc-sa/3.0/ )." + }, + + "scale" : 10.000000, + + "materials": [ { + "DbgColor" : 15658734, + "DbgIndex" : 0, + "DbgName" : "initialShadingGroup" + }], + + "vertices": [-30,61,124,-29,54,105,0,59,98,0,65,121,-27,61,162,0,69,155,0,68,207,-35,44,127,-32,45,88,-42,5,127,-39,18,150,-23,-10,157,-25,-12,125,-21,14,203,-16,57,212,-9,17,236,-14,5,214,0,14,199,0,9,219,0,53,228,0,22,244,0,-28,124,0,-17,158,-23,18,191,-19,-7,168,-27,19,188,0,58,78,0,-15,238,-7,-10,233,-9,-8,216,0,-7,217,0,19,186,0,18,189,0,-17,170,-27,46,157,-28,43,164,-25,39,160,-20,63,206,0,61,214,0,14,201,-18,14,202,0,-14,201,0,9,215,-7,9,215,0,-8,214,0,-36,213,0,7,220,-25,41,171,-27,49,172,-24,37,167,-27,52,162,-26,48,169,-26,50,162,0,59,26,0,58,44,0,34,-143,0,-57,-100,0,-74,-7,0,-40,98,0,62,-68,0,15,-204,0,-22,-191,0,-61,49,0,-1,-761,0,0,-360,0,-19,-327,-73,8,-110,-41,-63,-9,-289,101,26,-56,-28,-96,-57,75,22,-246,68,-129,-106,70,-59,-71,10,-170,-54,-64,-64,-73,-19,-72,-43,-31,62,-276,98,40,-54,37,49,-83,52,34,-81,8,-158,-50,1,-211,-55,8,65,-33,-74,-65,-72,-26,-24,-68,13,29,-50,3,80,-32,-17,-197,-66,69,40,-47,-40,-78,-54,31,-95,-66,-12,-415,-274,81,-79,-211,125,-80,-181,185,19,-182,183,37,-181,167,33,-190,52,-132,-30,-61,-86,-58,-50,-70,-54,-66,-78,-42,-68,-79,-57,-51,-77,-43,-70,-113,-48,-67,-115,-54,-72,-112,-52,-75,-110,-45,-75,-110,-40,40,58,-255,73,-136,-283,102,45,-35,44,69,-39,-13,-489,-15,-1,-730,-32,0,-351,-42,-3,-325,-54,-6,-299,-53,-20,-297,-33,-20,-321,-18,-19,-328,-361,-63,45,-284,38,-101,-350,-71,58,-357,-71,62,-257,71,-68,-267,30,-94,-340,-66,38,-356,-59,33,-337,-27,10,-321,-34,16,-342,-32,9,-325,-39,13,-326,0,-28,-311,-6,-23,-302,21,-71,-285,13,-67,-336,-40,13,-345,-83,0,-311,-4,-51,-287,20,-86,-390,-139,72,-373,-125,37,-189,54,-140,-123,13,-161,-128,7,-154,-234,64,-139,-235,59,-132,-277,43,-109,-262,36,-101,-91,11,-162,-96,3,-158,-264,41,-118,-248,59,-142,-218,52,-142,-155,2,-158,-108,5,-164,73,8,-110,41,-63,-9,273,130,7,56,-28,-96,54,75,21,230,75,-142,88,74,-70,27,61,162,68,11,-171,54,-64,-64,73,-19,-72,25,-13,126,43,-31,62,21,14,203,261,127,21,54,37,49,82,52,28,27,19,188,74,9,-161,50,1,-211,39,18,150,55,8,65,33,-74,-65,42,5,127,30,61,124,72,-26,-24,68,13,27,50,3,80,32,-17,-197,65,69,38,47,-40,-78,19,-7,168,43,32,-97,16,57,212,66,-12,-415,258,97,-94,192,133,-100,155,198,-7,155,198,11,156,182,9,126,33,-172,30,-61,-86,58,-50,-70,54,-66,-78,42,-68,-79,57,-51,-77,54,-81,-116,52,-97,-119,49,-100,-136,43,-81,-116,46,-97,-119,40,-89,-122,44,-95,-124,48,-93,-125,57,-88,-122,53,-94,-124,56,-71,-123,64,-88,-141,48,-80,-128,35,-86,-143,41,-69,-125,43,-70,-113,48,-67,-115,54,-72,-112,52,-75,-110,45,-75,-110,40,40,58,238,80,-150,267,132,25,35,44,69,32,45,88,29,54,105,9,17,236,14,5,214,39,-13,-489,15,-1,-730,32,0,-351,42,-3,-325,54,-6,-299,53,-20,-297,33,-20,-321,18,-19,-328,365,-21,40,272,53,-112,356,-29,54,364,-27,59,243,86,-82,257,43,-104,346,-27,34,360,-20,28,337,6,3,322,-1,10,342,2,2,326,-5,7,321,28,-38,307,19,-32,293,42,-82,278,31,-77,337,-5,7,351,-48,-1,306,19,-59,278,36,-96,405,-90,74,385,-82,39,117,35,-178,173,57,-156,173,56,-149,100,18,-171,104,13,-166,222,71,-153,224,66,-145,264,56,-121,251,48,-112,81,13,-166,84,6,-163,251,51,-130,233,74,-161,201,58,-159,136,42,-180,109,15,-171,91,8,-171,114,56,-99,75,15,-55,-138,50,-80,-80,14,-51,23,-10,157,20,63,206,42,-18,93,-42,-18,93,23,18,191,18,14,202,-46,-97,-119,-43,-81,-116,-54,-81,-116,-52,-97,-119,-49,-100,-136,-57,-88,-122,-53,-94,-124,-48,-80,-128,-48,-93,-125,-40,-89,-122,-44,-95,-124,-35,-86,-143,-41,-69,-125,-64,-88,-141,-56,-71,-123,9,-8,216,7,-10,233,7,9,215,24,37,167,26,50,162,25,41,171,27,46,157,25,39,160,26,48,169,28,43,164,27,49,172,27,52,162,35,44,127], + + "morphTargets": [ + { "name": "parrot_A_001", "vertices": [-30,61,124,-29,54,105,0,59,98,0,65,121,-27,61,162,0,69,155,0,68,207,-35,44,127,-32,45,88,-42,5,127,-39,18,150,-23,-10,157,-25,-12,125,-21,14,203,-16,57,212,-9,17,236,-14,5,214,0,14,199,0,9,219,0,53,228,0,22,244,0,-28,124,0,-17,158,-23,18,191,-19,-7,168,-27,19,188,0,58,78,0,-15,238,-7,-10,233,-9,-8,216,0,-7,217,0,19,186,0,18,189,0,-17,170,-27,46,157,-28,43,164,-25,39,160,-20,63,206,0,61,214,0,14,201,-18,14,202,0,-14,201,0,9,215,-7,9,215,0,-8,214,0,-36,213,0,7,220,-25,41,171,-27,49,172,-24,37,167,-27,52,162,-26,48,169,-26,50,162,0,59,26,0,58,44,0,34,-143,0,-57,-100,0,-74,-7,0,-40,98,0,62,-68,0,15,-204,0,-22,-191,0,-61,49,0,-1,-761,0,0,-360,0,-19,-327,-73,8,-110,-41,-63,-9,-289,101,26,-56,-28,-96,-57,75,22,-246,68,-129,-106,70,-59,-71,10,-170,-54,-64,-64,-73,-19,-72,-43,-31,62,-276,98,40,-54,37,49,-83,52,34,-81,8,-158,-50,1,-211,-55,8,65,-33,-74,-65,-72,-26,-24,-68,13,29,-50,3,80,-32,-17,-197,-66,69,40,-47,-40,-78,-54,31,-95,-66,-12,-415,-274,81,-79,-211,125,-80,-181,185,19,-182,183,37,-181,167,33,-190,52,-132,-30,-61,-86,-58,-50,-70,-54,-66,-78,-42,-68,-79,-57,-51,-77,-43,-70,-113,-48,-67,-115,-54,-72,-112,-52,-75,-110,-45,-75,-110,-40,40,58,-255,73,-136,-283,102,45,-35,44,69,-39,-13,-489,-15,-1,-730,-32,0,-351,-42,-3,-325,-54,-6,-299,-53,-20,-297,-33,-20,-321,-18,-19,-328,-361,-63,45,-284,38,-101,-350,-71,58,-357,-71,62,-257,71,-68,-267,30,-94,-340,-66,38,-356,-59,33,-337,-27,10,-321,-34,16,-342,-32,9,-325,-39,13,-326,0,-28,-311,-6,-23,-302,21,-71,-285,13,-67,-336,-40,13,-345,-83,0,-311,-4,-51,-287,20,-86,-390,-139,72,-373,-125,37,-189,54,-140,-123,13,-161,-128,7,-154,-234,64,-139,-235,59,-132,-277,43,-109,-262,36,-101,-91,11,-162,-96,3,-158,-264,41,-118,-248,59,-142,-218,52,-142,-155,2,-158,-108,5,-164,73,8,-110,41,-63,-9,273,130,7,56,-28,-96,54,75,21,230,75,-142,88,74,-70,27,61,162,68,11,-171,54,-64,-64,73,-19,-72,25,-13,126,43,-31,62,21,14,203,261,127,21,54,37,49,82,52,28,27,19,188,74,9,-161,50,1,-211,39,18,150,55,8,65,33,-74,-65,42,5,127,30,61,124,72,-26,-24,68,13,27,50,3,80,32,-17,-197,65,69,38,47,-40,-78,19,-7,168,43,32,-97,16,57,212,66,-12,-415,258,97,-94,192,133,-100,155,198,-7,155,198,11,156,182,9,126,33,-172,30,-61,-86,58,-50,-70,54,-66,-78,42,-68,-79,57,-51,-77,54,-81,-116,52,-97,-119,49,-100,-136,43,-81,-116,46,-97,-119,40,-89,-122,44,-95,-124,48,-93,-125,57,-88,-122,53,-94,-124,56,-71,-123,64,-88,-141,48,-80,-128,35,-86,-143,41,-69,-125,43,-70,-113,48,-67,-115,54,-72,-112,52,-75,-110,45,-75,-110,40,40,58,238,80,-150,267,132,25,35,44,69,32,45,88,29,54,105,9,17,236,14,5,214,39,-13,-489,15,-1,-730,32,0,-351,42,-3,-325,54,-6,-299,53,-20,-297,33,-20,-321,18,-19,-328,365,-21,40,272,53,-112,356,-29,54,364,-27,59,243,86,-82,257,43,-104,346,-27,34,360,-20,28,337,6,3,322,-1,10,342,2,2,326,-5,7,321,28,-38,307,19,-32,293,42,-82,278,31,-77,337,-5,7,351,-48,-1,306,19,-59,278,36,-96,405,-90,74,385,-82,39,117,35,-178,173,57,-156,173,56,-149,100,18,-171,104,13,-166,222,71,-153,224,66,-145,264,56,-121,251,48,-112,81,13,-166,84,6,-163,251,51,-130,233,74,-161,201,58,-159,136,42,-180,109,15,-171,91,8,-171,114,56,-99,75,15,-55,-138,50,-80,-80,14,-51,23,-10,157,20,63,206,42,-18,93,-42,-18,93,23,18,191,18,14,202,-46,-97,-119,-43,-81,-116,-54,-81,-116,-52,-97,-119,-49,-100,-136,-57,-88,-122,-53,-94,-124,-48,-80,-128,-48,-93,-125,-40,-89,-122,-44,-95,-124,-35,-86,-143,-41,-69,-125,-64,-88,-141,-56,-71,-123,9,-8,216,7,-10,233,7,9,215,24,37,167,26,50,162,25,41,171,27,46,157,25,39,160,26,48,169,28,43,164,27,49,172,27,52,162,35,44,127] }, + { "name": "parrot_A_002", "vertices": [-30,57,124,-29,51,104,0,55,98,0,62,120,-27,59,161,0,67,154,0,66,206,-35,41,127,-32,41,87,-42,1,127,-39,15,150,-23,-13,157,-25,-16,125,-21,13,203,-16,56,211,-9,17,235,-14,4,214,0,13,199,0,8,218,0,53,227,0,21,244,0,-32,124,0,-21,158,-23,16,191,-19,-9,168,-27,17,188,0,54,78,0,-16,238,-7,-11,233,-9,-9,216,0,-8,217,0,17,186,0,17,188,0,-20,170,-27,44,156,-28,41,163,-25,37,159,-20,62,204,0,60,213,0,12,200,-18,12,202,0,-15,202,0,8,214,-7,8,214,0,-9,214,0,-37,214,0,7,219,-25,39,170,-27,47,171,-24,35,166,-27,50,161,-26,46,168,-26,48,162,0,54,26,0,54,44,0,29,-143,0,-63,-101,0,-79,-7,0,-44,98,0,58,-68,0,10,-203,0,-28,-191,0,-65,49,0,0,-761,0,-3,-359,0,-23,-327,-73,1,-110,-41,-68,-9,-270,190,-58,-56,-33,-96,-52,71,25,-175,108,-156,-93,81,-59,-71,7,-170,-54,-70,-65,-73,-24,-72,-43,-35,62,-272,184,-40,-54,33,49,-77,53,34,-81,6,-159,-50,-3,-211,-55,4,65,-33,-80,-66,-72,-31,-24,-68,11,29,-50,0,80,-32,-23,-198,-60,66,43,-47,-46,-78,-53,31,-94,-66,-15,-415,-212,144,-133,-143,156,-98,-141,215,3,-151,214,20,-155,198,16,-140,79,-140,-30,-67,-87,-58,-56,-70,-54,-72,-79,-42,-74,-79,-57,-58,-78,-43,-77,-114,-48,-74,-116,-54,-79,-113,-52,-82,-111,-45,-82,-111,-40,36,58,-173,116,-168,-277,192,-40,-35,40,69,-39,-15,-490,-15,0,-730,-32,-3,-351,-42,-6,-325,-54,-10,-299,-53,-24,-297,-33,-24,-321,-18,-23,-328,-410,91,-115,-229,108,-162,-416,82,-99,-423,87,-101,-212,129,-116,-226,93,-148,-395,77,-108,-398,89,-121,-358,102,-121,-355,90,-108,-362,100,-126,-358,87,-113,-319,111,-137,-316,98,-124,-267,109,-152,-263,93,-140,-365,91,-120,-384,57,-143,-299,94,-145,-250,96,-155,-484,47,-124,-445,44,-138,-134,82,-149,-120,25,-163,-126,21,-157,-162,104,-166,-168,101,-161,-217,107,-164,-216,95,-150,-91,12,-163,-96,6,-159,-208,96,-162,-175,102,-163,-163,88,-159,-142,33,-163,-107,11,-166,73,1,-110,41,-68,-9,237,226,-59,56,-33,-96,48,71,27,165,127,-160,73,91,-62,27,59,161,68,9,-171,54,-70,-65,73,-24,-72,25,-17,126,43,-35,62,21,13,203,239,221,-40,54,33,49,76,54,31,27,17,188,75,9,-161,50,-3,-211,39,15,150,55,4,65,33,-80,-66,42,1,127,30,57,124,72,-31,-24,67,11,28,50,0,80,32,-23,-198,59,65,43,47,-46,-78,19,-9,168,42,36,-95,16,56,211,66,-15,-415,194,169,-136,123,169,-105,100,228,-7,107,230,9,114,215,7,112,78,-169,30,-67,-87,58,-56,-70,54,-72,-79,42,-74,-79,57,-58,-78,54,-88,-117,52,-104,-121,49,-106,-137,43,-88,-117,46,-104,-120,40,-96,-123,44,-102,-125,48,-99,-127,57,-95,-123,53,-101,-126,56,-77,-124,64,-95,-142,48,-87,-129,35,-93,-144,41,-76,-126,43,-77,-114,48,-74,-116,54,-79,-113,52,-82,-111,45,-82,-111,40,36,58,161,134,-172,242,229,-40,35,40,69,32,41,87,29,51,104,9,17,235,14,4,214,39,-15,-490,15,0,-730,32,-3,-351,42,-6,-325,54,-10,-299,53,-24,-297,33,-24,-321,18,-23,-328,395,153,-104,218,137,-164,402,145,-88,408,151,-89,194,155,-119,217,122,-149,383,137,-98,384,149,-111,343,154,-114,341,141,-101,348,153,-118,345,139,-106,305,156,-133,303,142,-120,255,144,-151,253,128,-139,352,145,-112,378,114,-134,288,135,-142,240,129,-154,476,122,-108,440,112,-125,102,78,-174,127,93,-155,130,92,-146,96,38,-171,100,35,-167,158,119,-168,165,116,-162,207,133,-166,206,122,-152,80,18,-167,83,13,-164,198,121,-165,165,122,-173,154,105,-164,119,85,-176,104,38,-171,90,20,-172,99,87,-94,74,18,-55,-124,72,-83,-80,14,-52,23,-13,157,20,62,204,42,-22,93,-42,-22,93,23,16,191,18,12,202,-46,-104,-120,-43,-88,-117,-54,-88,-117,-52,-104,-121,-49,-106,-137,-57,-95,-123,-53,-101,-126,-48,-87,-129,-48,-99,-127,-40,-96,-123,-44,-102,-125,-35,-93,-144,-41,-76,-126,-64,-95,-142,-56,-77,-124,9,-9,216,7,-11,233,7,8,214,24,35,166,26,48,162,25,39,170,27,44,156,25,37,159,26,46,168,28,41,163,27,47,171,27,50,161,35,41,127] }, + { "name": "parrot_A_003", "vertices": [-30,54,123,-29,46,104,0,51,98,0,58,119,-27,56,160,0,64,153,0,64,205,-35,38,126,-32,37,87,-42,-2,127,-39,11,150,-23,-17,157,-25,-20,126,-21,11,202,-16,54,210,-9,15,235,-14,2,213,0,11,198,0,6,218,0,51,226,0,20,243,0,-36,124,0,-25,158,-23,14,191,-19,-13,168,-27,15,188,0,49,78,0,-17,238,-7,-12,233,-9,-11,216,0,-10,217,0,15,185,0,14,188,0,-23,170,-27,41,155,-28,38,162,-25,34,158,-20,60,203,0,58,212,0,10,200,-18,10,202,0,-17,202,0,6,214,-7,6,214,0,-11,214,0,-39,215,0,5,219,-25,37,170,-27,45,170,-24,33,166,-27,47,160,-26,43,167,-26,45,161,0,49,26,0,49,44,0,23,-143,0,-70,-102,0,-86,-8,0,-48,98,0,54,-68,0,3,-203,0,-36,-192,0,-70,49,0,6,-760,0,-6,-359,0,-27,-327,-73,-7,-110,-41,-74,-9,-157,302,-60,-56,-39,-97,-45,66,33,-134,182,-167,-68,103,-47,-70,5,-170,-54,-78,-66,-73,-29,-72,-43,-39,62,-169,299,-45,-54,29,49,-68,53,40,-79,8,-159,-50,-10,-210,-55,0,65,-33,-88,-67,-72,-38,-24,-67,8,30,-50,-5,80,-32,-30,-198,-53,60,50,-47,-53,-79,-48,40,-92,-66,-17,-415,-136,235,-140,-77,180,-84,-77,230,28,-91,232,41,-101,218,33,-94,115,-132,-30,-75,-87,-58,-64,-71,-54,-80,-79,-42,-82,-80,-57,-65,-78,-43,-86,-116,-48,-83,-117,-54,-88,-114,-52,-91,-113,-45,-91,-113,-40,32,58,-123,188,-175,-166,307,-43,-35,36,69,-39,-16,-489,-15,5,-729,-32,-7,-351,-42,-11,-325,-54,-15,-299,-53,-29,-298,-33,-29,-321,-18,-27,-328,-287,372,-163,-164,233,-181,-303,369,-153,-303,378,-153,-153,224,-130,-179,221,-172,-292,351,-161,-280,361,-168,-249,334,-159,-262,324,-152,-252,337,-165,-264,325,-158,-223,308,-168,-236,296,-160,-189,265,-176,-203,251,-170,-262,335,-163,-289,334,-199,-221,282,-179,-188,243,-181,-357,410,-196,-334,378,-206,-82,117,-139,-106,55,-161,-111,55,-156,-93,150,-163,-99,148,-160,-157,223,-181,-170,213,-172,-87,21,-163,-91,19,-160,-163,207,-181,-106,156,-171,-108,137,-154,-108,96,-156,-99,31,-166,73,-7,-110,41,-74,-9,108,319,-56,56,-39,-97,45,65,36,106,199,-165,51,109,-43,27,56,160,66,7,-171,54,-78,-66,73,-29,-72,25,-21,126,43,-39,62,21,11,202,122,318,-43,54,29,49,71,52,38,27,15,188,70,11,-160,50,-10,-210,39,11,150,55,0,65,33,-88,-67,42,-2,127,30,54,123,72,-38,-24,67,8,28,50,-5,80,32,-30,-198,56,58,52,47,-53,-79,19,-13,168,35,45,-91,16,54,210,66,-17,-415,98,250,-137,58,184,-81,44,228,31,57,233,44,70,222,36,70,135,-152,30,-75,-87,58,-64,-71,54,-80,-79,42,-82,-80,57,-65,-78,54,-97,-119,52,-113,-123,49,-115,-139,43,-97,-119,46,-113,-122,40,-105,-125,44,-111,-127,48,-108,-129,57,-104,-125,53,-110,-128,56,-86,-126,64,-104,-144,48,-96,-131,35,-101,-145,41,-85,-127,43,-86,-116,48,-83,-117,54,-88,-114,52,-91,-113,45,-91,-113,40,32,58,92,202,-172,118,326,-40,35,36,69,32,37,87,29,46,104,9,15,235,14,2,213,39,-16,-489,15,5,-729,32,-7,-351,42,-11,-325,54,-15,-299,53,-29,-298,33,-29,-321,18,-27,-328,212,416,-169,121,254,-180,228,417,-160,226,426,-160,116,243,-128,139,245,-173,221,397,-167,207,404,-173,183,371,-163,198,363,-156,185,375,-169,199,365,-163,165,340,-169,181,330,-164,140,290,-177,157,279,-172,195,374,-168,218,380,-206,168,314,-182,143,269,-181,269,468,-207,252,432,-216,60,135,-156,78,140,-149,85,127,-134,75,66,-163,78,67,-160,84,162,-161,91,161,-159,117,243,-180,133,236,-172,72,26,-164,74,25,-162,126,229,-181,85,168,-168,96,151,-155,74,135,-162,81,71,-163,76,39,-169,69,122,-77,68,23,-53,-95,112,-72,-76,20,-51,23,-17,157,20,60,203,42,-27,93,-42,-27,93,23,14,191,18,10,202,-46,-113,-122,-43,-97,-119,-54,-97,-119,-52,-113,-123,-49,-115,-139,-57,-104,-125,-53,-110,-128,-48,-96,-131,-48,-108,-129,-40,-105,-125,-44,-111,-127,-35,-101,-145,-41,-85,-127,-64,-104,-144,-56,-86,-126,9,-11,216,7,-12,233,7,6,214,24,33,166,26,45,161,25,37,170,27,41,155,25,34,158,26,43,167,28,38,162,27,45,170,27,47,160,35,38,126] }, + { "name": "parrot_A_004", "vertices": [-30,52,123,-29,44,104,0,49,97,0,56,119,-27,55,160,0,62,152,0,63,204,-35,36,126,-32,35,87,-42,-4,127,-39,10,150,-23,-19,157,-25,-22,126,-21,10,202,-16,53,210,-9,14,235,-14,1,213,0,9,198,0,5,218,0,50,226,0,19,243,0,-38,124,0,-27,158,-23,13,190,-19,-15,168,-27,13,187,0,47,78,0,-18,239,-7,-13,233,-9,-12,216,0,-11,217,0,13,185,0,13,188,0,-25,171,-27,39,155,-28,37,162,-25,32,158,-20,59,203,0,56,211,0,9,200,-18,9,202,0,-18,202,0,5,214,-7,5,214,0,-12,214,0,-40,215,0,4,219,-25,35,169,-27,43,169,-24,31,165,-27,46,160,-26,42,166,-26,43,160,0,47,26,0,47,44,-1,21,-142,0,-73,-102,0,-88,-8,0,-50,98,0,52,-68,0,0,-203,0,-39,-192,0,-71,49,0,3,-760,0,-10,-359,0,-31,-327,-73,-10,-110,-41,-77,-9,-88,327,-32,-56,-41,-97,-43,62,39,-72,226,-160,-49,114,-31,-68,6,-170,-54,-81,-66,-73,-32,-72,-43,-41,62,-104,325,-23,-54,27,49,-65,50,45,-74,12,-158,-50,-14,-210,-55,-2,65,-33,-91,-67,-72,-40,-24,-66,7,30,-50,-6,80,-32,-34,-198,-52,55,56,-47,-56,-79,-40,48,-89,-66,-21,-415,-65,271,-124,-41,189,-66,-53,230,50,-69,234,60,-80,223,49,-60,134,-117,-30,-78,-87,-58,-67,-71,-54,-83,-79,-42,-85,-80,-57,-68,-78,-43,-90,-116,-48,-87,-117,-54,-92,-115,-52,-95,-113,-45,-95,-113,-40,30,58,-56,230,-164,-100,331,-18,-35,34,69,-39,-19,-489,-15,2,-729,-32,-10,-351,-42,-14,-325,-54,-19,-299,-53,-33,-298,-33,-32,-321,-18,-30,-328,-150,458,-139,-77,289,-167,-168,460,-134,-165,468,-132,-86,265,-120,-97,281,-166,-161,441,-144,-145,447,-145,-128,410,-138,-145,403,-137,-128,414,-143,-145,406,-142,-113,377,-148,-130,369,-147,-92,326,-160,-111,317,-161,-139,415,-144,-151,432,-184,-115,354,-165,-96,306,-170,-190,526,-175,-176,490,-188,-47,133,-121,-87,77,-154,-91,79,-149,-46,167,-148,-52,165,-146,-74,277,-168,-92,271,-166,-79,29,-161,-82,29,-158,-85,265,-174,-53,191,-163,-58,149,-144,-75,136,-138,-86,47,-163,73,-10,-110,41,-77,-9,74,331,-23,56,-41,-97,46,61,42,60,230,-151,37,116,-27,27,55,160,63,6,-170,54,-81,-66,73,-32,-72,25,-23,126,43,-41,62,21,10,202,91,331,-15,54,27,49,71,49,41,27,13,187,64,13,-158,50,-14,-210,39,10,150,55,-2,65,33,-91,-67,42,-4,127,30,52,123,72,-40,-24,67,6,28,50,-6,80,32,-34,-198,58,54,57,47,-56,-79,19,-15,168,25,50,-85,16,53,210,66,-21,-415,53,275,-113,36,194,-60,41,226,58,57,229,69,68,220,57,34,163,-132,30,-78,-87,58,-67,-71,54,-83,-79,42,-85,-80,57,-68,-78,54,-101,-119,52,-116,-123,49,-118,-139,43,-101,-119,46,-117,-122,40,-108,-125,44,-115,-127,48,-112,-129,57,-108,-125,53,-114,-128,56,-90,-126,64,-107,-144,48,-100,-131,35,-105,-146,41,-89,-127,43,-90,-116,48,-87,-117,54,-92,-115,52,-95,-113,45,-95,-113,40,30,58,43,233,-154,87,337,-9,35,34,69,32,35,87,29,44,104,9,14,235,14,1,213,39,-19,-489,15,2,-729,32,-10,-351,42,-14,-325,54,-19,-299,53,-33,-298,33,-32,-321,18,-30,-328,126,463,-135,61,291,-157,144,466,-131,141,474,-129,73,270,-110,82,284,-157,138,446,-140,122,452,-141,107,414,-132,125,408,-131,107,419,-137,124,411,-137,94,380,-141,112,373,-141,75,329,-151,94,321,-153,117,420,-139,127,436,-179,97,358,-158,79,309,-161,162,532,-174,149,495,-186,23,162,-134,46,163,-128,54,145,-121,55,81,-153,56,83,-149,47,182,-145,54,181,-144,59,279,-158,77,274,-156,63,31,-160,63,32,-158,70,267,-165,44,196,-154,51,171,-140,36,166,-138,59,88,-152,61,50,-162,46,138,-61,63,25,-51,-70,134,-56,-71,25,-50,23,-19,157,20,59,203,42,-28,93,-42,-28,93,23,13,190,18,9,202,-46,-117,-122,-43,-101,-119,-54,-101,-119,-52,-116,-123,-49,-118,-139,-57,-108,-125,-53,-114,-128,-48,-100,-131,-48,-112,-129,-40,-108,-125,-44,-115,-127,-35,-105,-146,-41,-89,-127,-64,-107,-144,-56,-90,-126,9,-12,216,7,-13,233,7,5,214,24,31,165,26,43,160,25,35,169,27,39,155,25,32,158,26,42,166,28,37,162,27,43,169,27,46,160,35,36,126] }, + { "name": "parrot_A_005", "vertices": [-30,55,123,-29,48,104,0,52,97,0,59,119,-27,57,160,0,65,153,0,66,205,-35,39,126,-32,38,87,-42,-1,127,-39,13,150,-23,-16,157,-25,-19,126,-21,12,202,-16,55,210,-9,16,235,-14,3,213,0,12,198,0,8,218,0,52,226,0,21,243,0,-35,124,0,-24,158,-23,15,191,-19,-12,168,-27,16,188,0,50,78,0,-16,238,-7,-11,233,-9,-10,216,0,-8,217,0,16,185,0,15,188,0,-22,170,-27,42,155,-28,39,162,-25,35,158,-20,61,203,0,59,211,0,11,200,-18,12,202,0,-16,202,0,7,214,-7,7,214,0,-9,214,0,-38,215,0,6,219,-25,38,170,-27,46,170,-24,34,165,-27,49,160,-26,44,167,-26,46,161,0,51,26,0,50,44,-1,26,-144,0,-67,-100,0,-83,-7,0,-47,98,0,55,-68,0,3,-204,0,-35,-191,0,-68,49,0,-14,-761,0,-12,-360,0,-32,-327,-73,-4,-110,-41,-72,-9,-152,313,7,-56,-37,-96,-48,66,39,-125,254,-145,-64,114,-33,-68,9,-171,-54,-75,-64,-73,-27,-72,-43,-38,62,-167,306,16,-54,30,49,-73,50,43,-74,15,-160,-50,-10,-211,-55,0,65,-33,-85,-65,-72,-35,-24,-68,8,29,-50,-3,80,-32,-30,-197,-58,57,56,-47,-50,-78,-40,51,-90,-66,-25,-415,-126,289,-96,-81,200,-59,-98,211,63,-114,209,74,-122,198,60,-83,150,-125,-30,-72,-86,-58,-60,-70,-54,-77,-78,-42,-79,-79,-57,-62,-77,-43,-83,-113,-48,-80,-115,-54,-85,-112,-52,-88,-110,-45,-88,-110,-40,33,58,-111,263,-148,-164,311,23,-35,37,69,-39,-26,-489,-15,-14,-730,-32,-12,-351,-42,-15,-325,-54,-19,-299,-53,-33,-297,-33,-33,-321,-18,-32,-328,-242,455,-57,-142,316,-134,-260,453,-51,-258,460,-47,-145,279,-94,-161,305,-135,-250,438,-66,-236,447,-66,-212,413,-69,-228,403,-70,-213,419,-73,-228,408,-75,-192,388,-91,-208,377,-93,-164,347,-117,-180,335,-121,-224,418,-74,-241,443,-107,-192,371,-114,-164,330,-132,-295,522,-72,-275,494,-95,-70,154,-128,-91,75,-157,-95,76,-152,-82,196,-144,-88,192,-142,-138,306,-138,-154,296,-138,-79,31,-163,-82,31,-160,-146,293,-149,-99,224,-158,-95,177,-143,-92,131,-146,-87,46,-165,73,-4,-110,41,-72,-9,149,315,1,56,-37,-96,50,65,41,114,248,-146,54,116,-31,27,57,160,64,10,-170,54,-75,-64,73,-27,-72,25,-20,126,43,-38,62,21,12,202,165,309,9,54,30,49,77,48,39,27,16,188,66,17,-159,50,-10,-211,39,13,150,55,0,65,33,-85,-65,42,-1,127,30,55,123,72,-35,-24,68,8,28,50,-3,80,32,-30,-197,63,56,55,47,-50,-78,19,-12,168,28,55,-87,16,55,210,66,-25,-415,118,285,-98,77,200,-59,90,212,63,106,209,73,115,199,60,57,158,-139,30,-72,-86,58,-60,-70,54,-77,-78,42,-79,-79,57,-62,-77,54,-94,-116,52,-110,-119,49,-112,-136,43,-94,-116,46,-110,-119,40,-102,-122,44,-108,-124,48,-106,-125,57,-101,-122,53,-107,-124,56,-83,-123,64,-101,-141,48,-93,-128,35,-99,-143,41,-82,-125,43,-83,-113,48,-80,-115,54,-85,-112,52,-88,-110,45,-88,-110,40,33,58,99,256,-147,162,314,16,35,37,69,32,38,87,29,48,104,9,16,235,14,3,213,39,-26,-489,15,-14,-730,32,-12,-351,42,-15,-325,54,-19,-299,53,-33,-297,33,-33,-321,18,-32,-328,236,451,-79,131,309,-139,254,449,-74,253,456,-70,137,275,-96,149,297,-140,243,433,-87,229,443,-87,205,408,-86,221,398,-87,206,414,-90,221,403,-92,185,382,-104,200,371,-107,154,340,-125,170,328,-129,217,413,-92,231,435,-128,182,364,-126,154,322,-139,288,516,-102,267,486,-122,47,160,-141,71,169,-134,77,154,-129,66,82,-156,68,83,-153,83,198,-145,90,195,-144,126,298,-143,142,288,-142,67,34,-162,67,35,-160,133,285,-153,88,219,-156,89,181,-146,61,167,-144,71,87,-155,68,52,-164,67,133,-67,66,27,-52,-85,128,-62,-72,26,-51,23,-16,157,20,61,203,42,-25,93,-42,-25,93,23,15,191,18,12,202,-46,-110,-119,-43,-94,-116,-54,-94,-116,-52,-110,-119,-49,-112,-136,-57,-101,-122,-53,-107,-124,-48,-93,-128,-48,-106,-125,-40,-102,-122,-44,-108,-124,-35,-99,-143,-41,-82,-125,-64,-101,-141,-56,-83,-123,9,-10,216,7,-11,233,7,7,214,24,34,165,26,46,161,25,38,170,27,42,155,25,35,158,26,44,167,28,39,162,27,46,170,27,49,160,35,39,126] }, + { "name": "parrot_A_006", "vertices": [-30,61,123,-29,54,104,0,58,98,0,65,120,-27,63,161,0,70,154,0,70,206,-35,45,127,-32,44,87,-42,5,127,-39,19,150,-23,-10,157,-25,-13,125,-21,17,203,-16,60,211,-9,21,235,-14,8,213,0,17,199,0,12,218,0,57,227,0,25,244,0,-29,124,0,-18,158,-23,20,191,-19,-6,168,-27,21,188,0,56,78,0,-12,238,-7,-7,233,-9,-5,216,0,-4,217,0,21,186,0,20,188,0,-16,170,-27,47,156,-28,44,163,-25,40,159,-20,66,204,0,63,212,0,16,200,-18,16,202,0,-11,202,0,12,214,-7,12,214,0,-5,214,0,-33,214,0,10,219,-25,43,170,-27,51,170,-24,39,166,-27,54,161,-26,49,167,-26,51,161,0,58,26,0,57,44,-1,37,-146,0,-56,-98,0,-73,-6,0,-41,98,0,61,-68,0,10,-205,0,-27,-190,0,-62,49,0,-38,-760,0,-14,-360,0,-31,-326,-73,8,-111,-41,-62,-8,-226,259,65,-56,-29,-96,-54,71,38,-217,256,-104,-83,113,-34,-68,17,-171,-54,-63,-62,-73,-19,-72,-43,-32,62,-237,246,73,-54,36,49,-81,49,42,-74,24,-161,-50,-3,-211,-55,7,65,-33,-72,-63,-72,-25,-23,-68,12,29,-50,2,80,-32,-22,-197,-65,61,55,-47,-40,-77,-42,60,-91,-66,-30,-414,-218,274,-43,-141,198,-41,-139,172,81,-152,161,91,-159,153,76,-130,165,-123,-30,-60,-84,-58,-49,-68,-54,-65,-76,-42,-67,-77,-57,-50,-76,-43,-70,-110,-48,-67,-111,-54,-71,-108,-52,-75,-106,-45,-75,-107,-40,39,58,-207,269,-104,-233,249,80,-35,43,69,-39,-35,-488,-15,-36,-729,-32,-13,-351,-42,-15,-325,-54,-17,-299,-53,-30,-296,-33,-32,-320,-18,-31,-326,-363,377,62,-250,304,-70,-378,367,69,-377,373,75,-233,258,-42,-264,288,-73,-369,361,49,-357,374,50,-327,352,32,-339,338,30,-330,358,31,-342,343,28,-307,342,-2,-319,328,-5,-275,321,-42,-288,305,-47,-341,354,31,-370,379,11,-307,333,-29,-274,309,-61,-434,424,76,-414,411,43,-120,174,-125,-99,77,-159,-103,76,-154,-153,215,-122,-156,209,-121,-243,297,-79,-256,283,-79,-81,38,-164,-84,37,-161,-249,286,-94,-185,239,-129,-152,190,-134,-119,127,-150,-91,51,-167,73,8,-111,41,-62,-8,227,265,51,56,-29,-96,56,71,40,200,251,-115,77,117,-32,27,63,161,66,19,-171,54,-63,-62,73,-19,-72,25,-13,126,43,-32,62,21,17,203,239,252,58,54,36,49,83,48,39,27,21,188,70,26,-161,50,-3,-211,39,19,150,55,7,65,33,-72,-63,42,5,127,30,61,123,72,-25,-23,69,12,27,50,2,80,32,-22,-197,68,59,55,47,-40,-77,19,-6,168,35,64,-88,16,60,211,66,-30,-414,207,272,-56,134,198,-44,135,178,78,148,168,89,155,158,74,94,155,-141,30,-60,-84,58,-49,-68,54,-65,-76,42,-67,-77,57,-50,-76,54,-81,-112,52,-97,-114,49,-101,-130,43,-81,-112,46,-97,-114,40,-89,-117,44,-96,-119,48,-93,-120,57,-89,-117,53,-95,-119,56,-71,-120,64,-90,-136,48,-81,-124,35,-88,-138,41,-70,-121,43,-70,-110,48,-67,-111,54,-71,-108,52,-75,-106,45,-75,-107,40,39,58,189,264,-115,237,256,65,35,43,69,32,44,87,29,54,104,9,21,235,14,8,213,39,-35,-488,15,-36,-729,32,-13,-351,42,-15,-325,54,-17,-299,53,-30,-296,33,-32,-320,18,-31,-326,364,380,22,235,300,-88,380,370,28,380,376,34,222,256,-55,248,284,-92,368,363,10,357,376,12,324,353,0,336,339,-2,327,359,-2,338,344,-5,300,342,-30,312,327,-34,263,318,-65,275,302,-70,337,355,-3,364,378,-28,297,331,-56,259,305,-83,437,426,25,412,412,-4,84,159,-143,112,172,-128,121,164,-126,84,86,-157,87,86,-154,147,211,-128,151,205,-126,227,293,-95,239,278,-97,73,43,-164,75,42,-161,231,281,-110,167,234,-136,143,189,-138,101,167,-142,91,90,-157,79,58,-166,95,127,-68,70,33,-53,-107,121,-66,-74,31,-52,23,-10,157,20,66,204,42,-19,93,-42,-19,93,23,20,191,18,16,202,-46,-97,-114,-43,-81,-112,-54,-81,-112,-52,-97,-114,-49,-101,-130,-57,-89,-117,-53,-95,-119,-48,-81,-124,-48,-93,-120,-40,-89,-117,-44,-96,-119,-35,-88,-138,-41,-70,-121,-64,-90,-136,-56,-71,-120,9,-5,216,7,-7,233,7,12,214,24,39,166,26,51,161,25,43,170,27,47,156,25,40,159,26,49,167,28,44,163,27,51,170,27,54,161,35,45,127] }, + { "name": "parrot_A_007", "vertices": [-30,66,124,-29,59,104,0,64,98,0,70,120,-27,67,162,0,75,155,0,74,207,-35,50,127,-32,50,88,-42,10,127,-39,24,150,-23,-4,157,-25,-7,125,-21,21,203,-16,64,212,-9,24,235,-14,11,214,0,21,199,0,16,219,0,60,228,0,29,244,0,-23,124,0,-12,158,-23,24,191,-19,-1,168,-27,25,188,0,62,78,0,-8,238,-7,-3,233,-9,-2,216,0,0,217,0,25,186,0,25,188,0,-11,170,-27,52,156,-28,49,163,-25,45,159,-20,70,205,0,67,213,0,20,201,-18,20,202,0,-7,202,0,16,214,-7,15,215,0,-1,214,0,-29,214,0,14,220,-25,47,171,-27,55,171,-24,43,167,-27,58,162,-26,54,168,-26,56,162,0,64,26,0,63,44,0,47,-147,0,-46,-97,0,-63,-5,0,-35,98,0,67,-68,0,18,-206,0,-19,-189,0,-56,49,0,-61,-757,0,-15,-359,0,-31,-324,-73,20,-112,-41,-52,-7,-274,165,113,-56,-22,-96,-61,75,38,-308,195,-53,-105,106,-33,-69,25,-172,-54,-51,-60,-73,-11,-72,-43,-26,62,-277,147,118,-54,42,49,-87,45,41,-76,32,-162,-50,3,-211,-55,13,65,-33,-61,-61,-72,-15,-23,-68,15,28,-50,8,80,-32,-14,-196,-71,61,54,-47,-29,-76,-48,69,-91,-66,-34,-412,-300,200,11,-201,164,-16,-164,118,94,-170,102,102,-175,94,86,-187,152,-110,-30,-49,-82,-58,-37,-67,-54,-54,-74,-42,-56,-75,-57,-39,-74,-43,-57,-106,-48,-54,-108,-54,-59,-105,-52,-62,-103,-45,-62,-103,-40,45,58,-304,211,-51,-273,151,126,-35,49,69,-39,-43,-486,-15,-57,-727,-32,-14,-350,-42,-14,-324,-54,-14,-298,-53,-28,-295,-33,-31,-318,-18,-30,-325,-439,215,166,-347,219,-2,-447,199,172,-447,204,180,-308,179,11,-354,200,-6,-442,201,150,-436,217,153,-406,212,124,-412,195,121,-411,216,125,-418,200,120,-394,219,82,-401,201,77,-368,220,32,-375,202,26,-419,209,126,-460,223,119,-398,215,54,-368,213,11,-516,226,204,-502,228,166,-182,165,-110,-109,78,-159,-114,75,-154,-232,189,-89,-233,182,-88,-341,217,-13,-347,199,-15,-84,45,-165,-87,43,-162,-345,208,-30,-276,198,-88,-218,169,-113,-150,116,-148,-97,55,-167,73,20,-112,41,-52,-7,274,177,110,56,-22,-96,61,74,40,291,209,-57,102,111,-28,27,67,162,68,27,-171,54,-51,-60,73,-11,-72,25,-8,126,43,-26,62,21,21,203,279,159,115,54,42,49,88,44,41,27,25,188,75,35,-161,50,3,-211,39,24,150,55,13,65,33,-61,-61,42,10,127,30,66,124,72,-15,-23,69,15,27,50,8,80,32,-14,-196,72,60,55,47,-29,-76,19,-1,168,46,73,-88,16,64,212,66,-34,-412,289,213,7,192,171,-14,160,127,98,167,111,107,173,103,91,137,144,-134,30,-49,-82,58,-37,-67,54,-54,-74,42,-56,-75,57,-39,-74,54,-69,-108,52,-84,-109,49,-89,-125,43,-69,-108,46,-85,-109,40,-77,-113,44,-83,-114,48,-81,-116,57,-76,-113,53,-83,-114,56,-59,-116,64,-79,-132,48,-69,-120,35,-76,-133,41,-58,-118,43,-57,-106,48,-54,-108,54,-59,-105,52,-62,-103,45,-62,-103,40,45,58,287,225,-54,275,162,123,35,49,69,32,50,88,29,59,104,9,24,235,14,11,214,39,-43,-486,15,-57,-727,32,-14,-350,42,-14,-324,54,-14,-298,53,-28,-295,33,-31,-318,18,-30,-325,443,233,145,332,235,-10,452,217,150,452,222,158,297,193,6,341,216,-15,444,219,129,438,235,133,405,229,108,412,213,103,410,234,108,417,217,102,389,236,68,396,218,63,357,236,22,365,218,14,418,227,108,458,242,97,389,232,40,355,229,0,522,246,176,504,249,139,129,151,-136,175,169,-108,180,158,-107,105,89,-155,108,86,-151,224,195,-89,226,188,-88,326,233,-20,332,215,-23,82,51,-164,84,49,-160,329,224,-38,259,210,-89,211,176,-111,147,155,-134,113,90,-154,93,63,-165,126,115,-62,75,37,-52,-130,106,-66,-77,34,-52,23,-4,157,20,70,205,42,-13,93,-42,-13,93,23,24,191,18,20,202,-46,-85,-109,-43,-69,-108,-54,-69,-108,-52,-84,-109,-49,-89,-125,-57,-76,-113,-53,-83,-114,-48,-69,-120,-48,-81,-116,-40,-77,-113,-44,-83,-114,-35,-76,-133,-41,-58,-118,-64,-79,-132,-56,-59,-116,9,-2,216,7,-3,233,7,15,215,24,43,167,26,56,162,25,47,171,27,52,156,25,45,159,26,54,168,28,49,163,27,55,171,27,58,162,35,50,127] }, + { "name": "parrot_A_008", "vertices": [-30,70,124,-29,64,105,0,69,98,0,75,121,-27,71,162,0,79,155,0,77,207,-35,54,127,-32,55,88,-42,15,127,-39,28,150,-23,0,157,-25,-2,125,-21,24,203,-16,67,212,-9,27,236,-14,15,214,0,24,199,0,19,219,0,63,228,0,32,244,0,-18,124,0,-7,158,-23,27,191,-19,2,168,-27,28,188,0,67,78,0,-5,238,-7,0,233,-9,0,216,0,2,217,0,28,186,0,28,189,0,-7,170,-27,56,157,-28,52,164,-25,48,160,-20,73,206,0,70,214,0,23,201,-18,23,202,0,-4,201,0,19,215,-7,18,215,0,1,214,0,-26,213,0,17,220,-25,51,171,-27,59,172,-24,47,167,-27,62,162,-26,57,169,-26,59,162,0,69,26,0,68,44,0,54,-148,0,-38,-96,0,-56,-4,0,-30,98,0,72,-68,0,24,-206,0,-12,-188,0,-51,49,0,-69,-755,0,-13,-358,0,-28,-323,-73,28,-112,-41,-46,-7,-289,64,129,-56,-16,-96,-67,76,38,-355,93,-28,-123,91,-31,-70,33,-172,-54,-43,-60,-73,-5,-72,-43,-21,62,-284,46,133,-54,47,49,-90,37,41,-78,38,-162,-50,9,-211,-55,18,65,-33,-53,-60,-72,-9,-23,-68,17,27,-50,13,80,-32,-8,-195,-76,59,54,-47,-22,-76,-55,74,-90,-66,-33,-411,-342,94,36,-239,104,-4,-176,65,97,-174,47,103,-178,40,86,-227,109,-100,-30,-42,-82,-58,-30,-67,-54,-46,-73,-42,-48,-74,-57,-32,-74,-43,-49,-105,-48,-46,-107,-54,-50,-103,-52,-53,-101,-45,-53,-101,-40,50,58,-358,108,-23,-281,50,140,-35,54,69,-39,-44,-485,-15,-65,-725,-32,-11,-350,-42,-11,-324,-54,-11,-297,-53,-24,-294,-33,-28,-317,-18,-27,-324,-451,37,206,-393,94,30,-451,19,211,-451,22,219,-341,72,34,-393,74,24,-450,24,189,-451,41,193,-426,52,161,-426,34,156,-432,53,163,-432,36,156,-424,68,117,-424,49,111,-408,83,66,-409,64,58,-436,43,164,-480,40,163,-430,65,89,-408,79,44,-518,12,253,-513,23,214,-227,123,-99,-121,74,-158,-124,69,-153,-284,123,-71,-282,116,-71,-389,96,18,-388,77,14,-88,50,-165,-91,46,-161,-391,88,0,-331,112,-65,-262,113,-101,-176,95,-145,-103,56,-166,73,28,-112,41,-46,-7,277,75,153,56,-16,-96,66,75,40,351,115,0,124,97,-21,27,71,162,70,35,-171,54,-43,-60,73,-5,-72,25,-3,126,43,-21,62,21,24,203,273,57,155,54,47,49,89,36,42,27,28,188,79,41,-160,50,9,-211,39,28,150,55,18,65,33,-53,-60,42,15,127,30,70,124,72,-9,-23,68,17,27,50,13,80,32,-8,-195,74,58,56,47,-22,-76,19,2,168,57,79,-86,16,67,212,66,-33,-411,333,112,64,235,116,15,164,74,110,162,56,116,169,49,100,174,122,-122,30,-42,-82,58,-30,-67,54,-46,-73,42,-48,-74,57,-32,-74,54,-60,-106,52,-76,-107,49,-81,-123,43,-60,-106,46,-76,-106,40,-68,-110,44,-75,-111,48,-73,-114,57,-68,-111,53,-74,-112,56,-51,-115,64,-71,-130,48,-61,-118,35,-68,-131,41,-49,-116,43,-49,-105,48,-46,-107,54,-50,-103,52,-53,-101,45,-53,-101,40,50,58,352,130,5,269,60,162,35,54,69,32,55,88,29,64,105,9,27,236,14,15,214,39,-44,-485,15,-65,-725,32,-11,-350,42,-11,-324,54,-11,-297,53,-24,-294,33,-28,-317,18,-27,-324,436,53,236,385,116,60,437,35,240,437,38,249,334,91,61,386,96,53,437,42,218,436,58,223,413,69,191,414,52,185,419,71,193,420,54,186,412,87,148,414,69,141,398,104,97,400,85,88,423,61,194,467,60,195,420,86,120,400,100,75,502,30,286,498,43,247,169,131,-124,232,133,-81,233,120,-82,124,86,-151,127,82,-146,287,136,-47,285,129,-47,381,118,49,381,99,44,90,55,-162,93,53,-158,385,110,29,329,132,-37,268,126,-79,187,129,-121,133,84,-149,106,65,-162,151,92,-54,79,39,-51,-148,82,-64,-78,36,-52,23,0,157,20,73,206,42,-8,93,-42,-8,93,23,27,191,18,23,202,-46,-76,-106,-43,-60,-106,-54,-60,-106,-52,-76,-107,-49,-81,-123,-57,-68,-111,-53,-74,-112,-48,-61,-118,-48,-73,-114,-40,-68,-110,-44,-75,-111,-35,-68,-131,-41,-49,-116,-64,-71,-130,-56,-51,-115,9,0,216,7,0,233,7,18,215,24,47,167,26,59,162,25,51,171,27,56,157,25,48,160,26,57,169,28,52,164,27,59,172,27,62,162,35,54,127] }, + { "name": "parrot_A_009", "vertices": [-30,73,125,-29,67,105,0,72,98,0,77,121,-27,73,163,0,81,156,0,79,208,-35,57,128,-32,58,88,-42,18,127,-39,31,151,-23,2,157,-25,0,125,-21,26,203,-16,69,213,-9,29,236,-14,16,214,0,26,199,0,21,219,0,65,229,0,33,245,0,-15,124,0,-5,158,-23,29,192,-19,5,168,-27,30,189,0,71,78,0,-4,238,-7,0,233,-9,2,216,0,4,217,0,30,186,0,30,189,0,-5,170,-27,58,157,-28,55,164,-25,50,160,-20,75,206,0,72,214,0,25,201,-18,25,203,0,-2,201,0,21,215,-7,20,215,0,3,214,0,-25,213,0,19,220,-25,53,172,-27,61,172,-24,49,167,-27,64,163,-26,59,169,-26,61,163,0,73,26,0,72,44,1,57,-147,0,-36,-97,0,-54,-5,0,-27,98,0,75,-68,0,27,-206,0,-9,-189,0,-48,49,0,-55,-757,0,-6,-359,0,-22,-324,-73,30,-112,-41,-44,-7,-279,-42,116,-56,-13,-96,-74,72,37,-346,-50,-43,-134,57,-36,-70,37,-172,-54,-41,-60,-73,-2,-72,-43,-18,62,-267,-55,121,-54,50,49,-88,25,39,-79,36,-162,-50,13,-211,-55,21,65,-33,-51,-60,-72,-6,-23,-66,17,27,-50,16,80,-32,-4,-196,-79,54,53,-47,-20,-76,-62,70,-91,-66,-25,-412,-337,-42,21,-247,11,-18,-181,10,88,-171,-4,95,-170,-13,79,-232,19,-113,-30,-40,-82,-58,-28,-67,-54,-44,-74,-42,-46,-75,-57,-30,-74,-43,-47,-106,-48,-44,-108,-54,-48,-104,-52,-51,-102,-45,-51,-102,-40,53,58,-356,-38,-39,-266,-50,128,-35,57,69,-39,-35,-486,-15,-52,-726,-32,-5,-350,-42,-5,-324,-54,-5,-298,-53,-19,-294,-33,-22,-318,-18,-21,-325,-414,-136,192,-383,-64,14,-406,-152,198,-408,-149,206,-327,-61,20,-374,-83,9,-407,-148,175,-415,-133,179,-397,-113,147,-389,-129,142,-404,-114,149,-395,-130,143,-402,-99,102,-393,-116,96,-392,-79,51,-384,-97,43,-403,-125,150,-440,-148,149,-405,-105,74,-390,-84,29,-465,-187,240,-463,-175,200,-237,30,-113,-125,53,-161,-127,45,-157,-290,4,-88,-285,0,-88,-379,-61,3,-370,-77,0,-90,44,-166,-93,39,-163,-377,-70,-16,-331,-24,-81,-264,7,-116,-181,42,-153,-106,44,-168,73,30,-112,41,-44,-7,264,-30,148,56,-13,-96,73,72,39,351,-34,-2,138,63,-26,27,73,163,71,38,-171,54,-41,-60,73,-2,-72,25,0,126,43,-18,62,21,26,203,252,-44,151,54,50,49,87,24,41,27,30,189,81,39,-161,50,13,-211,39,31,151,55,21,65,33,-51,-60,42,18,127,30,73,125,72,-6,-23,66,17,27,50,16,80,32,-4,-196,77,53,54,47,-20,-76,19,5,168,66,74,-88,16,69,213,66,-25,-412,333,-27,61,249,22,10,165,17,103,155,2,109,157,-7,93,190,61,-130,30,-40,-82,58,-28,-67,54,-44,-74,42,-46,-75,57,-30,-74,54,-58,-107,52,-74,-108,49,-79,-124,43,-58,-107,46,-74,-108,40,-66,-112,44,-73,-113,48,-71,-115,57,-66,-112,53,-72,-114,56,-48,-116,64,-68,-131,48,-59,-119,35,-66,-133,41,-47,-117,43,-47,-106,48,-44,-108,54,-48,-104,52,-51,-102,45,-51,-102,40,53,58,359,-22,2,250,-38,158,35,57,69,32,58,88,29,67,105,9,29,236,14,16,214,39,-35,-486,15,-52,-726,32,-5,-350,42,-5,-324,54,-5,-298,53,-19,-294,33,-22,-318,18,-21,-325,392,-120,239,380,-48,58,384,-136,243,385,-133,252,323,-47,59,372,-67,52,388,-132,222,395,-116,226,380,-97,192,373,-113,187,386,-98,195,379,-114,188,389,-83,148,382,-100,141,385,-63,96,379,-81,87,386,-109,195,424,-131,199,396,-88,121,386,-68,74,439,-169,292,442,-158,253,189,72,-131,254,43,-86,249,31,-88,134,63,-154,136,56,-150,305,18,-51,300,13,-51,378,-45,47,369,-62,42,94,49,-163,98,44,-160,378,-54,27,340,-8,-41,282,21,-85,204,63,-129,142,57,-152,112,51,-164,159,44,-60,80,34,-52,-151,34,-71,-78,31,-53,23,2,157,20,75,206,42,-5,93,-42,-5,93,23,29,192,18,25,203,-46,-74,-108,-43,-58,-107,-54,-58,-107,-52,-74,-108,-49,-79,-124,-57,-66,-112,-53,-72,-114,-48,-59,-119,-48,-71,-115,-40,-66,-112,-44,-73,-113,-35,-66,-133,-41,-47,-117,-64,-68,-131,-56,-48,-116,9,2,216,7,0,233,7,20,215,24,49,167,26,61,163,25,53,172,27,58,157,25,50,160,26,59,169,28,55,164,27,61,172,27,64,163,35,57,128] }, + { "name": "parrot_A_010", "vertices": [-30,74,125,-29,68,105,0,72,98,0,78,121,-27,73,163,0,81,157,0,79,209,-35,57,128,-32,59,88,-42,18,127,-39,31,151,-23,3,157,-25,0,125,-21,25,203,-16,68,213,-9,28,236,-14,16,214,0,25,199,0,20,219,0,64,229,0,32,245,0,-15,124,0,-4,158,-23,29,192,-19,5,168,-27,30,189,0,72,78,0,-5,238,-7,0,233,-9,2,216,0,3,217,0,30,187,0,29,189,0,-5,170,-27,58,158,-28,54,165,-25,50,160,-20,74,207,0,71,215,0,25,201,-18,25,203,0,-2,201,0,20,215,-7,20,215,0,2,214,0,-25,213,0,18,220,-25,53,172,-27,61,173,-24,49,168,-27,64,163,-26,59,169,-26,61,163,0,74,26,0,74,44,1,56,-146,0,-38,-98,0,-56,-5,0,-26,98,0,76,-68,0,29,-205,0,-8,-190,0,-47,49,0,-27,-759,0,2,-359,0,-14,-325,-73,27,-111,-41,-45,-8,-235,-122,108,-56,-13,-96,-78,65,34,-276,-176,-52,-127,19,-43,-69,35,-172,-54,-44,-62,-73,-2,-72,-43,-17,62,-218,-129,115,-54,51,49,-81,14,38,-76,29,-162,-50,14,-211,-55,22,65,-33,-54,-62,-72,-8,-23,-63,16,27,-50,17,80,-32,-3,-196,-81,47,51,-47,-22,-77,-63,59,-94,-66,-14,-414,-277,-158,11,-211,-78,-32,-169,-36,77,-155,-44,88,-148,-54,74,-186,-73,-125,-30,-42,-84,-58,-30,-68,-54,-47,-75,-42,-49,-76,-57,-32,-75,-43,-50,-109,-48,-47,-111,-54,-51,-107,-52,-55,-105,-45,-55,-106,-40,54,58,-290,-169,-50,-220,-122,121,-35,58,69,-39,-20,-488,-15,-25,-729,-32,3,-351,-42,1,-325,-54,0,-299,-53,-13,-296,-33,-15,-319,-18,-14,-326,-328,-252,192,-311,-197,6,-314,-263,200,-318,-260,208,-260,-171,13,-294,-211,4,-315,-262,178,-329,-251,179,-317,-230,144,-303,-242,143,-323,-234,146,-308,-245,143,-322,-225,97,-307,-237,95,-316,-210,44,-301,-224,40,-318,-243,149,-343,-279,150,-320,-235,71,-310,-216,23,-358,-313,245,-358,-307,205,-195,-65,-127,-115,23,-165,-114,14,-161,-234,-112,-104,-226,-115,-102,-308,-194,-5,-292,-205,-5,-86,33,-167,-87,26,-164,-300,-203,-22,-267,-151,-92,-210,-99,-128,-149,-18,-162,-98,25,-170,73,27,-111,41,-45,-8,229,-115,123,56,-13,-96,77,64,36,281,-168,-33,131,24,-39,27,73,163,70,37,-172,54,-44,-62,73,-2,-72,25,0,126,43,-17,62,21,25,203,212,-121,129,54,51,49,80,13,37,27,30,189,78,32,-162,50,14,-211,39,31,151,55,22,65,33,-54,-62,42,18,127,30,74,125,72,-8,-23,63,16,27,50,17,80,32,-3,-196,78,45,51,47,-22,-77,19,5,168,67,63,-92,16,68,213,66,-14,-414,278,-150,30,219,-67,-16,155,-34,86,140,-44,94,136,-53,78,161,-6,-149,30,-42,-84,58,-30,-68,54,-47,-75,42,-49,-76,57,-32,-75,54,-61,-111,52,-77,-113,49,-81,-129,43,-61,-111,46,-77,-112,40,-69,-116,44,-76,-117,48,-73,-119,57,-69,-116,53,-75,-118,56,-51,-119,64,-70,-135,48,-61,-122,35,-68,-137,41,-50,-120,43,-50,-109,48,-47,-111,54,-51,-107,52,-55,-105,45,-55,-106,40,54,58,294,-162,-30,214,-115,136,35,58,69,32,59,88,29,68,105,9,28,236,14,16,214,39,-20,-488,15,-25,-729,32,3,-351,42,1,-325,54,0,-299,53,-13,-296,33,-15,-319,18,-14,-326,313,-248,213,309,-192,26,299,-258,220,303,-255,228,260,-164,31,293,-205,23,301,-258,198,315,-247,199,306,-226,165,291,-237,162,311,-230,167,297,-241,163,314,-220,118,300,-232,114,312,-205,65,297,-218,59,306,-239,169,330,-275,172,314,-230,91,307,-211,44,339,-309,268,341,-303,227,164,3,-152,218,-50,-113,209,-59,-113,123,32,-162,122,23,-158,258,-94,-82,252,-97,-81,307,-189,14,291,-199,13,89,37,-166,91,31,-163,300,-197,-3,277,-142,-73,234,-82,-113,175,-11,-151,128,22,-162,104,31,-169,137,-8,-75,75,25,-54,-128,-17,-78,-73,23,-54,23,3,157,20,74,207,42,-4,93,-42,-4,93,23,29,192,18,25,203,-46,-77,-112,-43,-61,-111,-54,-61,-111,-52,-77,-113,-49,-81,-129,-57,-69,-116,-53,-75,-118,-48,-61,-122,-48,-73,-119,-40,-69,-116,-44,-76,-117,-35,-68,-137,-41,-50,-120,-64,-70,-135,-56,-51,-119,9,2,216,7,0,233,7,20,215,24,49,168,26,61,163,25,53,172,27,58,158,25,50,160,26,59,169,28,54,165,27,61,173,27,64,163,35,57,128] }, + { "name": "parrot_A_011", "vertices": [-30,72,125,-29,66,105,0,70,98,0,76,121,-27,70,164,0,78,157,0,76,209,-35,55,128,-32,57,88,-42,16,127,-39,29,151,-23,1,157,-25,-1,125,-21,23,204,-16,66,214,-9,25,236,-14,13,214,0,23,199,0,17,219,0,61,230,0,30,245,0,-17,124,0,-6,158,-23,26,192,-19,3,168,-27,27,189,0,70,78,0,-7,238,-7,-2,233,-9,0,216,0,1,217,0,28,187,0,27,189,0,-7,170,-27,55,158,-28,52,165,-25,48,161,-20,72,207,0,69,215,0,22,201,-18,22,203,0,-5,201,0,17,215,-7,17,215,0,0,214,0,-28,213,0,16,220,-25,50,172,-27,58,173,-24,47,168,-27,62,163,-26,57,170,-26,59,164,1,72,27,1,72,44,0,53,-144,0,-43,-100,0,-61,-6,0,-28,98,0,74,-68,0,27,-204,0,-10,-191,0,-49,49,0,-1,-761,0,8,-360,0,-10,-326,-73,22,-111,-41,-49,-8,-215,-157,68,-56,-16,-96,-80,61,32,-236,-207,-96,-118,11,-52,-67,33,-172,-54,-50,-63,-73,-6,-72,-43,-18,62,-197,-158,74,-54,49,49,-79,9,34,-72,26,-162,-50,13,-211,-55,20,65,-33,-60,-64,-72,-13,-23,-63,14,27,-50,15,80,-32,-5,-197,-82,43,48,-47,-27,-78,-57,56,-95,-66,-5,-415,-245,-195,-33,-195,-96,-67,-183,-55,48,-171,-61,60,-159,-69,48,-149,-81,-149,-30,-47,-85,-58,-36,-69,-54,-52,-77,-42,-54,-78,-57,-38,-77,-43,-56,-112,-48,-53,-114,-54,-58,-111,-52,-61,-109,-45,-61,-109,-40,52,58,-253,-205,-94,-201,-153,81,-35,56,69,-39,-8,-489,-15,-1,-730,-32,8,-351,-42,6,-325,-54,3,-299,-53,-10,-297,-33,-11,-321,-18,-9,-327,-255,-317,142,-264,-243,-39,-238,-323,149,-243,-322,156,-226,-203,-30,-244,-251,-42,-241,-321,126,-257,-316,128,-254,-289,96,-237,-295,93,-258,-295,97,-241,-300,93,-264,-280,48,-247,-287,44,-265,-260,-3,-246,-268,-8,-251,-302,99,-262,-344,98,-260,-287,21,-257,-262,-24,-261,-389,190,-264,-380,150,-157,-74,-153,-101,18,-169,-98,9,-166,-191,-127,-142,-182,-128,-140,-262,-239,-50,-244,-244,-52,-80,30,-167,-79,22,-165,-252,-243,-68,-231,-177,-134,-167,-109,-158,-115,-25,-174,-87,21,-172,73,22,-111,41,-49,-8,202,-157,58,56,-16,-96,79,57,31,208,-224,-100,114,14,-58,27,70,164,67,35,-172,54,-50,-63,73,-6,-72,25,-1,126,43,-18,62,21,23,204,185,-155,65,54,49,49,76,6,29,27,27,189,72,30,-162,50,13,-211,39,29,151,55,20,65,33,-60,-64,42,16,127,30,72,125,72,-13,-23,61,14,26,50,15,80,32,-5,-197,80,38,46,47,-27,-78,19,3,168,58,63,-94,16,66,214,66,-5,-415,222,-208,-39,185,-102,-78,162,-67,37,149,-74,47,138,-80,34,112,-8,-176,30,-47,-85,58,-36,-69,54,-52,-77,42,-54,-78,57,-38,-77,54,-67,-114,52,-83,-117,49,-86,-133,43,-67,-114,46,-83,-117,40,-75,-120,44,-81,-122,48,-79,-124,57,-74,-120,53,-81,-122,56,-57,-122,64,-75,-139,48,-67,-126,35,-73,-141,41,-55,-123,43,-56,-112,48,-53,-114,54,-58,-111,52,-61,-109,45,-61,-109,40,52,58,224,-226,-98,189,-150,71,35,56,69,32,57,88,29,66,105,9,25,236,14,13,214,39,-8,-489,15,-1,-730,32,8,-351,42,6,-325,54,3,-299,53,-10,-297,33,-11,-321,18,-9,-327,232,-309,151,233,-260,-40,216,-312,160,221,-311,167,200,-215,-34,212,-265,-41,216,-313,137,233,-310,137,230,-287,101,212,-292,101,234,-293,103,215,-297,101,237,-285,51,218,-290,49,235,-272,-2,215,-278,-5,225,-299,107,231,-342,111,230,-294,25,225,-276,-22,235,-373,208,236,-370,167,116,1,-178,158,-66,-164,148,-74,-162,99,32,-172,95,23,-169,191,-123,-152,184,-122,-150,230,-257,-52,212,-260,-51,79,37,-167,79,31,-166,219,-261,-69,207,-194,-140,166,-101,-171,123,-15,-181,101,22,-173,86,32,-174,103,-15,-99,67,23,-57,-110,-24,-89,-68,19,-55,23,1,157,20,72,207,42,-6,93,-42,-6,93,23,26,192,18,22,203,-46,-83,-117,-43,-67,-114,-54,-67,-114,-52,-83,-117,-49,-86,-133,-57,-74,-120,-53,-81,-122,-48,-67,-126,-48,-79,-124,-40,-75,-120,-44,-81,-122,-35,-73,-141,-41,-55,-123,-64,-75,-139,-56,-57,-122,9,0,216,7,-2,233,7,17,215,24,47,168,26,59,164,25,50,172,27,55,158,25,48,161,26,57,170,28,52,165,27,58,173,27,62,163,35,55,128] }, + { "name": "parrot_A_012", "vertices": [-30,67,125,-29,61,105,0,65,98,0,71,121,-27,66,163,0,74,156,0,72,208,-35,50,128,-32,52,88,-42,11,127,-39,24,151,-23,-3,157,-25,-6,125,-21,18,203,-16,61,213,-9,21,236,-14,9,214,0,19,199,0,13,219,0,57,229,0,26,245,0,-22,124,0,-11,158,-23,22,192,-19,-1,168,-27,23,189,0,65,78,0,-11,238,-7,-6,233,-9,-4,216,0,-3,217,0,23,186,0,23,189,0,-11,170,-27,51,158,-28,48,165,-25,43,160,-20,67,207,0,65,215,0,18,201,-18,18,203,0,-9,201,0,13,215,-7,13,215,0,-4,214,0,-32,213,0,12,220,-25,46,172,-27,54,172,-24,42,168,-27,57,163,-26,52,169,-26,54,163,0,67,27,0,66,44,0,46,-143,0,-50,-100,0,-67,-7,0,-33,98,0,69,-68,0,22,-204,0,-16,-191,0,-54,49,0,5,-761,0,6,-360,0,-12,-327,-73,15,-110,-41,-56,-9,-267,-63,95,-56,-22,-96,-73,77,34,-261,-98,-72,-125,71,-42,-69,23,-171,-54,-57,-64,-73,-12,-72,-43,-24,62,-250,-62,103,-54,44,49,-91,33,39,-77,25,-161,-50,8,-211,-55,15,65,-33,-67,-65,-72,-19,-24,-68,15,28,-50,10,80,-32,-10,-197,-80,61,51,-47,-33,-78,-55,63,-94,-66,-6,-415,-278,-95,-10,-235,-2,-39,-221,54,72,-211,48,87,-200,38,76,-192,0,-122,-30,-54,-86,-58,-43,-70,-54,-59,-78,-42,-61,-79,-57,-45,-77,-43,-63,-113,-48,-60,-115,-54,-65,-112,-52,-68,-110,-45,-68,-110,-40,47,58,-276,-98,-73,-255,-58,110,-35,51,69,-39,-6,-489,-15,5,-730,-32,6,-351,-42,3,-325,-54,0,-299,-53,-13,-297,-33,-13,-321,-18,-12,-328,-289,-235,146,-286,-138,-24,-273,-239,156,-279,-240,162,-257,-100,-5,-266,-143,-24,-272,-235,133,-289,-232,133,-287,-201,104,-268,-204,104,-290,-207,105,-271,-209,103,-295,-180,60,-277,-184,59,-290,-157,10,-271,-162,7,-281,-213,107,-284,-257,100,-286,-184,33,-280,-157,-8,-290,-311,186,-289,-298,147,-197,4,-127,-118,48,-163,-121,41,-159,-235,-46,-109,-229,-50,-106,-283,-133,-35,-265,-136,-33,-87,34,-165,-89,29,-163,-273,-131,-50,-258,-70,-108,-215,-20,-127,-155,21,-159,-101,35,-169,73,15,-110,41,-56,-9,275,-62,67,56,-22,-96,74,75,36,255,-84,-99,119,82,-43,27,66,163,67,26,-171,54,-57,-64,73,-12,-72,25,-6,126,43,-24,62,21,18,203,260,-63,78,54,44,49,92,30,34,27,23,189,74,32,-161,50,8,-211,39,24,151,55,15,65,33,-67,-65,42,11,127,30,67,125,72,-19,-24,67,14,26,50,10,80,32,-10,-197,81,57,50,47,-33,-78,19,-1,168,51,74,-90,16,61,213,66,-6,-415,277,-85,-39,231,12,-55,211,43,64,201,34,76,192,26,63,143,89,-157,30,-54,-86,58,-43,-70,54,-59,-78,42,-61,-79,57,-45,-77,54,-74,-116,52,-90,-119,49,-93,-136,43,-74,-116,46,-90,-119,40,-82,-122,44,-88,-124,48,-86,-125,57,-81,-122,53,-88,-124,56,-64,-123,64,-82,-141,48,-73,-128,35,-79,-143,41,-62,-125,43,-63,-113,48,-60,-115,54,-65,-112,52,-68,-110,45,-68,-110,40,47,58,268,-84,-101,266,-59,84,35,51,69,32,52,88,29,61,105,9,21,236,14,9,214,39,-6,-489,15,5,-730,32,6,-351,42,3,-325,54,0,-299,53,-13,-297,33,-13,-321,18,-12,-328,317,-234,105,286,-128,-57,303,-240,116,310,-240,122,256,-93,-32,266,-134,-55,299,-234,94,315,-230,92,307,-198,65,289,-202,68,311,-204,65,293,-208,66,309,-175,23,291,-180,24,296,-149,-24,277,-155,-25,303,-211,68,308,-254,58,296,-178,-2,283,-148,-42,329,-312,139,322,-297,102,139,99,-159,196,38,-143,189,31,-140,106,70,-163,108,64,-160,239,-13,-132,234,-17,-130,281,-122,-67,264,-127,-63,81,45,-164,83,41,-162,269,-120,-81,248,-50,-133,214,13,-149,156,93,-160,114,66,-163,92,52,-169,134,69,-83,74,30,-55,-144,49,-75,-77,24,-53,23,-3,157,20,67,207,42,-11,93,-42,-11,93,23,22,192,18,18,203,-46,-90,-119,-43,-74,-116,-54,-74,-116,-52,-90,-119,-49,-93,-136,-57,-81,-122,-53,-88,-124,-48,-73,-128,-48,-86,-125,-40,-82,-122,-44,-88,-124,-35,-79,-143,-41,-62,-125,-64,-82,-141,-56,-64,-123,9,-4,216,7,-6,233,7,13,215,24,42,168,26,54,163,25,46,172,27,51,158,25,43,160,26,52,169,28,48,165,27,54,172,27,57,163,35,50,128] } + ], + + "morphColors": [ + { "name": "parrot_colorMap", "colors": [0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.010,0.000,0.050,0.090,0.030,0.030,0.840,0.160,0.000,1.000,0.880,0.820,0.090,0.030,0.030,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,0.090,0.030,0.030,0.090,0.030,0.030,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,0.090,0.030,0.030,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,1.000,0.880,0.820,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,1.000,0.880,0.820,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.530,0.710,0.290,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.530,0.710,0.290,0.530,0.710,0.290,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.530,0.710,0.290,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.400,0.310,0.380,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.530,0.710,0.290,0.530,0.710,0.290,1.000,0.880,0.820,1.000,0.880,0.820,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.400,0.310,0.380,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.250,0.490,0.640,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.010,0.000,0.050,0.840,0.160,0.000,0.090,0.030,0.030,0.090,0.030,0.030,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,0.090,0.030,0.030,0.090,0.030,0.030,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,0.090,0.030,0.030,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,0.400,0.310,0.380,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,1.000,0.880,0.820,0.840,0.160,0.000,1.000,0.880,0.820,1.000,0.880,0.820,0.090,0.030,0.030,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,1.000,0.880,0.820,0.840,0.160,0.000,1.000,0.880,0.820,0.840,0.160,0.000,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,1.000,0.880,0.820,0.840,0.160,0.000,0.840,0.160,0.000] } + ], + + "normals": [], + + "colors": [], + + "uvs": [[0.293709,0.561267,0.326320,0.579235,0.278721,0.570331,0.311567,0.598880,0.232479,0.560884,0.161340,0.564999,0.228069,0.550282,0.292254,0.622273,0.357181,0.588459,0.291602,0.678158,0.238263,0.726286,0.270063,0.649152,0.197372,0.685522,0.085668,0.639055,0.078820,0.611544,0.146498,0.627386,0.146958,0.599582,0.147227,0.623586,0.091141,0.636093,0.132884,0.581140,0.069816,0.601922,0.223324,0.750881,0.183686,0.702280,0.145405,0.631228,0.157436,0.628550,0.156480,0.644757,0.390943,0.545439,0.050694,0.633442,0.046157,0.628045,0.060521,0.646293,0.061185,0.645289,0.138488,0.626054,0.130141,0.628411,0.144049,0.653679,0.261165,0.588384,0.256837,0.627795,0.361358,0.715507,0.148213,0.572445,0.177178,0.582083,0.094125,0.642642,0.089113,0.640000,0.106377,0.654975,0.064081,0.649329,0.061401,0.647827,0.069966,0.656228,0.018739,0.658320,0.026340,0.657729,1.000000,0.423867,0.688147,1.000000,0.621805,0.515152,0.523464,0.854201,0.200523,0.617494,0.195284,0.603009,0.236638,0.577904,0.201788,0.591105,0.465878,0.803219,0.238045,0.583661,0.210394,0.594260,0.442449,0.575875,0.417184,0.580842,0.510313,0.519074,0.458642,0.528117,0.544298,0.272087,0.538717,0.334703,0.544624,0.241054,0.421075,0.689211,0.501480,0.680549,0.440082,0.774552,0.605416,0.749949,0.531227,0.245278,0.531522,0.252457,0.500413,0.312201,0.521359,0.323907,0.587396,0.788729,0.436698,0.797301,0.583352,0.774688,0.552866,0.160066,0.549805,0.141348,0.573484,0.152647,0.571478,0.141465,0.771564,0.703080,0.981261,0.708756,0.831182,0.721626,0.748201,0.715951,0.728972,0.739785,0.732258,0.749142,0.291602,0.678158,0.357181,0.588459,0.346464,0.692955,0.400188,0.582211,0.654524,0.231635,0.749250,0.233643,0.766113,0.124914,0.790520,0.730842,0.642560,0.206031,0.667353,0.119029,0.747867,0.230413,0.766032,0.115623,0.715242,0.626408,0.756888,0.668212,0.500413,0.162867,0.563946,0.157332,0.567640,0.271484,0.535466,0.227849,0.525639,0.408997,0.500361,0.379684,0.500413,0.331310,0.558964,0.389711,0.558281,0.388346,0.522545,0.408195,0.500361,0.407638,0.540921,0.450821,0.500400,0.453765,0.669549,0.117829,0.593258,0.232422,0.551454,0.216045,0.669940,0.106119,0.570562,0.212065,0.773360,0.753794,0.776741,0.756809,0.769774,0.721490,0.868778,0.766126,0.870826,0.764151,0.867383,0.774536,0.865901,0.782900,0.866297,0.780487,0.576102,0.275669,0.601381,0.278516,0.765922,0.109162,0.792848,0.679348,0.500643,0.196720,0.582639,0.443997,0.561818,0.448072,0.529833,0.396378,0.390943,0.545439,0.539913,0.401811,0.322162,0.774700,0.334313,0.733827,0.238263,0.726286,0.223324,0.750881,0.870448,0.157178,0.859867,0.137315,0.872785,0.120940,0.629304,0.302385,0.668221,0.291501,0.836383,0.244473,0.862518,0.107674,0.863480,0.114266,0.874547,0.182047,0.864390,0.198508,0.836726,0.242582,0.629110,0.300241,0.668520,0.289296,0.869480,0.164081,0.870084,0.160828,0.869770,0.163290,0.870650,0.156754,0.931459,0.183483,0.875347,0.179594,0.906074,0.207074,0.864282,0.198756,0.873588,0.226616,0.860074,0.136496,0.957929,0.122506,0.973142,0.144205,0.500725,0.256770,0.615534,0.282585,0.625997,0.297630,0.581626,0.272185,0.648789,0.295856,0.627951,0.298635,0.627392,0.294287,0.623485,0.289192,0.622370,0.276885,0.610809,0.276510,0.606599,0.273436,0.591427,0.274951,0.458642,0.528117,0.417184,0.580842,0.510313,0.519074,0.442449,0.575875,0.544298,0.272087,0.544624,0.241054,0.538717,0.334703,0.421075,0.689211,0.440082,0.774552,0.501480,0.680549,0.605416,0.749949,0.531227,0.245278,0.500413,0.312201,0.531522,0.252457,0.521359,0.323907,0.587396,0.788729,0.583352,0.774688,0.436698,0.797301,0.346464,0.692955,0.333091,0.737936,0.552866,0.160066,0.573484,0.152647,0.549805,0.141348,0.571478,0.141465,0.223324,0.750881,0.322162,0.774700,0.238263,0.726286,0.771564,0.703080,0.831182,0.721626,0.981261,0.708756,0.748201,0.715951,0.728972,0.739785,0.732258,0.749142,0.400188,0.582211,0.357181,0.588459,0.291602,0.678158,0.654524,0.231635,0.766113,0.124914,0.749250,0.233643,0.790520,0.730842,0.311567,0.598880,0.326320,0.579235,0.278721,0.570331,0.293709,0.561267,0.621591,0.274188,0.623148,0.279582,0.643306,0.200563,0.747867,0.230413,0.627392,0.294287,0.629110,0.300241,0.232479,0.560884,0.228069,0.550282,0.161340,0.564999,0.756888,0.668212,0.715242,0.626408,0.292254,0.622273,0.270063,0.649152,0.197372,0.685522,0.146958,0.599582,0.078820,0.611544,0.146498,0.627386,0.085668,0.639055,0.147227,0.623586,0.091141,0.636093,0.500413,0.162867,0.563946,0.157332,0.567640,0.271484,0.535466,0.227849,0.500413,0.331310,0.500361,0.379684,0.525639,0.408997,0.132884,0.581140,0.069816,0.601922,0.558281,0.388346,0.558964,0.389711,0.522545,0.408195,0.500361,0.407638,0.183686,0.702280,0.500400,0.453765,0.540921,0.450821,0.669549,0.117829,0.593258,0.232422,0.551454,0.216045,0.669940,0.106119,0.667353,0.119029,0.570562,0.212065,0.606599,0.273436,0.581626,0.272185,0.776741,0.756809,0.773360,0.753794,0.769774,0.721490,0.910056,0.854315,0.892390,0.810489,0.909438,0.856210,0.892451,0.809269,0.957818,0.844901,0.918503,0.834726,0.920256,0.845028,0.925168,0.808239,0.922283,0.837004,0.918031,0.834212,0.921060,0.842250,0.960688,0.817843,0.900409,0.777744,0.961447,0.809768,0.902415,0.770201,0.870826,0.764151,0.868778,0.766126,0.867383,0.774536,0.865901,0.782900,0.866297,0.780487,0.145405,0.631228,0.156480,0.644757,0.157436,0.628550,0.613667,0.279900,0.601381,0.278516,0.765922,0.109162,0.766032,0.115623,0.792848,0.679348,0.500643,0.196720,0.582639,0.443997,0.529833,0.396378,0.561818,0.448072,0.390943,0.545439,0.050694,0.633442,0.046157,0.628045,0.060521,0.646293,0.061185,0.645289,0.539913,0.401811,0.130141,0.628411,0.138488,0.626054,0.870448,0.157178,0.859867,0.137315,0.872785,0.120940,0.629304,0.302385,0.668221,0.291501,0.836383,0.244473,0.863480,0.114266,0.862518,0.107674,0.874547,0.182047,0.864390,0.198508,0.836726,0.242582,0.668520,0.289296,0.869480,0.164081,0.869770,0.163290,0.870084,0.160828,0.870650,0.156754,0.875347,0.179594,0.931459,0.183483,0.864282,0.198756,0.906074,0.207074,0.873588,0.226616,0.860074,0.136496,0.957929,0.122506,0.973142,0.144205,0.500725,0.256770,0.617402,0.285271,0.625997,0.297630,0.576102,0.275669,0.648789,0.295856,0.627951,0.298635,0.623485,0.289192,0.618952,0.279735,0.610809,0.276510,0.591427,0.274951,0.024384,1.000000,1.000000,1.000000,0.000000,0.773074,0.000000,1.000000,1.000000,1.000000,0.949720,0.724529,0.144049,0.653679,0.261165,0.588384,0.361358,0.715507,0.256837,0.627795,0.177178,0.582083,0.148213,0.572445,0.089113,0.640000,0.094125,0.642642,0.106377,0.654975,0.064081,0.649329,0.061401,0.647827,0.069966,0.656228,0.909438,0.856210,0.910056,0.854315,0.892451,0.809269,0.892390,0.810489,0.957818,0.844901,0.918503,0.834726,0.920256,0.845028,0.925168,0.808239,0.922283,0.837004,0.918031,0.834212,0.921060,0.842250,0.960688,0.817843,0.900409,0.777744,0.961447,0.809768,0.902415,0.770201,0.865901,0.782900,0.867383,0.774536,0.866297,0.780487,0.868778,0.766126,0.870826,0.764151,0.018739,0.658320,0.026340,0.657729,0.523464,0.854201,0.688147,1.000000,0.621805,0.515152,1.000000,0.423867,0.200523,0.617494,0.195284,0.603009,0.236638,0.577904,0.201788,0.591105,0.465878,0.803219,0.238045,0.583661,0.210394,0.594260]], + + "faces": [10,3,2,0,0,0,1,2,10,0,2,1,0,2,1,3,10,4,6,5,0,4,5,6,10,5,3,0,0,6,0,2,10,7,1,8,0,7,3,8,10,9,12,10,0,9,10,11,10,10,12,11,0,11,10,12,10,16,15,13,0,13,14,15,10,13,15,14,0,15,14,16,10,17,18,13,0,17,18,15,10,13,18,16,0,15,18,13,10,0,4,5,0,2,4,6,10,14,15,19,0,16,14,19,10,19,15,20,0,19,14,20,10,21,22,12,0,21,22,10,10,12,22,11,0,10,22,12,10,23,25,24,0,23,24,25,10,25,10,24,0,24,11,25,10,1,2,8,0,3,1,8,10,8,2,26,0,8,1,26,10,15,28,20,0,14,27,20,10,20,28,27,0,20,27,28,10,29,28,16,0,29,27,13,10,16,28,15,0,13,27,14,10,18,30,16,0,18,30,13,10,16,30,29,0,13,30,29,10,25,23,31,0,24,23,31,10,31,23,32,0,31,23,32,10,11,24,10,0,12,25,11,10,33,24,22,0,33,25,22,10,22,24,11,0,22,25,12,10,34,36,35,0,34,35,36,10,38,6,37,0,37,5,38,10,37,6,4,0,38,5,4,10,19,38,14,0,19,37,16,10,14,38,37,0,16,37,38,10,17,13,31,0,17,15,31,10,31,13,25,0,31,15,24,10,23,40,32,0,23,39,32,10,32,40,39,0,32,39,40,10,41,40,24,0,41,39,25,10,40,23,24,0,39,23,25,10,33,41,24,0,33,41,25,10,40,43,39,0,39,42,40,10,39,43,42,0,40,42,43,10,41,44,40,0,41,44,39,10,40,44,43,0,39,44,42,10,28,45,27,0,27,45,28,10,29,45,28,0,29,45,27,10,30,45,29,0,30,45,29,10,43,46,42,0,42,46,43,10,44,46,43,0,44,46,42,10,47,14,48,0,49,47,50,10,48,14,37,0,50,47,48,10,49,25,47,0,51,24,52,10,47,25,14,0,52,24,16,10,25,13,14,0,24,15,16,10,36,10,49,0,35,11,51,10,49,10,25,0,51,11,24,10,7,4,0,0,7,4,2,10,7,0,1,0,7,2,3,10,50,4,34,0,53,4,34,10,7,34,4,0,7,34,4,10,37,4,48,0,38,4,54,10,48,4,50,0,54,4,53,10,51,35,47,0,55,36,52,10,35,49,47,0,36,51,52,10,35,36,49,0,36,35,51,10,52,34,35,0,56,34,36,10,51,52,35,0,55,56,36,10,47,48,51,0,49,50,55,10,52,51,50,0,56,57,53,10,50,51,48,0,53,57,54,10,52,50,34,0,56,53,34,10,7,10,34,0,7,11,34,10,34,10,36,0,34,11,35,10,10,7,9,0,11,7,9,10,9,7,8,0,9,7,8,10,78,108,53,0,58,59,60,10,53,108,54,0,60,59,61,10,73,81,75,0,62,63,64,10,82,85,76,0,65,66,67,10,76,85,84,0,67,66,68,10,89,69,61,0,69,70,71,10,61,69,87,0,71,70,72,10,57,62,67,0,73,74,75,10,85,82,78,0,66,65,58,10,78,82,108,0,58,65,59,10,85,78,79,0,76,77,78,10,79,78,88,0,78,77,79,10,89,61,56,0,80,81,82,10,99,74,84,0,83,84,68,10,74,67,84,0,84,75,68,10,84,67,76,0,68,75,67,10,67,83,57,0,75,85,73,10,9,8,86,0,86,87,88,10,86,8,111,0,88,87,89,10,76,67,62,0,67,75,74,10,93,92,68,0,90,91,92,10,98,89,56,0,93,80,82,10,97,279,96,0,173,94,95,10,124,96,77,0,96,95,97,10,85,66,84,0,66,98,68,10,84,66,75,0,68,98,99,10,82,86,108,0,65,88,59,10,108,86,111,0,59,88,89,10,53,70,78,0,100,101,77,10,78,70,88,0,77,101,79,10,80,73,66,0,102,62,103,10,114,81,64,0,104,63,105,10,64,81,60,0,105,63,106,10,74,83,67,0,84,85,75,10,116,117,81,0,107,108,63,10,81,117,87,0,63,108,72,10,119,65,61,0,109,110,71,10,113,114,63,0,111,104,112,10,63,114,64,0,112,104,105,10,94,70,72,0,113,101,114,10,72,70,90,0,114,101,115,10,70,94,88,0,101,113,79,10,88,94,95,0,79,113,116,10,95,96,88,0,116,95,79,10,88,96,79,0,79,95,78,10,96,279,79,0,95,94,78,10,79,279,280,0,78,94,117,10,100,101,74,0,118,119,84,10,74,101,83,0,84,119,85,10,101,98,83,0,119,93,85,10,89,102,99,0,80,120,83,10,100,74,102,0,118,84,120,10,102,74,99,0,120,84,83,10,103,104,98,0,121,122,93,10,98,104,89,0,93,122,80,10,89,104,102,0,80,122,120,10,102,104,105,0,120,122,123,10,102,105,100,0,120,123,118,10,100,105,106,0,118,123,124,10,106,107,100,0,124,125,118,10,100,107,101,0,118,125,119,10,107,103,101,0,125,121,119,10,101,103,98,0,119,121,93,10,80,66,280,0,102,103,117,10,73,149,72,0,62,126,114,10,72,149,143,0,114,126,127,10,90,73,72,0,115,62,114,10,68,110,94,0,92,128,113,10,94,110,95,0,113,128,116,10,110,77,95,0,128,97,116,10,95,77,96,0,116,97,95,10,99,84,89,0,83,68,80,10,69,89,75,0,129,80,99,10,84,75,89,0,68,99,80,10,73,75,66,0,62,64,103,10,90,70,59,0,115,101,130,10,59,70,53,0,130,101,100,10,57,83,56,0,73,85,82,10,56,83,98,0,82,85,93,10,117,116,91,0,108,107,131,10,112,113,118,0,132,111,133,10,118,113,119,0,133,111,109,10,108,111,54,0,59,89,61,10,54,111,26,0,61,89,134,10,8,26,111,0,87,134,89,10,116,115,91,0,107,135,131,10,91,115,112,0,131,135,132,10,112,115,113,0,132,135,111,10,113,115,114,0,111,135,104,10,117,91,118,0,108,131,133,10,118,91,112,0,133,131,132,10,119,113,65,0,109,111,110,10,65,113,63,0,110,111,112,10,75,81,69,0,64,63,70,10,69,81,87,0,70,63,72,10,115,116,81,0,135,107,63,10,118,119,87,0,133,109,72,10,87,119,61,0,72,109,71,10,87,117,118,0,72,108,133,10,62,58,76,0,74,136,67,10,76,58,284,0,67,136,137,10,284,58,12,0,137,136,138,10,12,58,21,0,138,136,139,10,115,81,114,0,135,63,104,10,72,93,94,0,114,90,113,10,94,93,68,0,113,90,92,10,128,127,68,0,140,141,92,10,127,120,68,0,141,142,92,10,109,147,92,0,143,144,91,10,92,147,121,0,91,144,145,10,123,122,110,0,146,147,128,10,110,122,77,0,128,147,97,10,120,123,68,0,142,146,92,10,68,123,110,0,92,146,128,10,133,135,124,0,148,149,96,10,124,135,125,0,96,149,150,10,71,124,148,0,151,96,152,10,148,124,125,0,152,96,150,10,131,136,130,0,153,154,155,10,130,136,128,0,155,154,140,10,128,136,129,0,140,154,156,10,129,136,131,0,156,154,153,10,133,137,132,0,148,157,158,10,132,137,130,0,158,157,155,10,130,137,131,0,155,157,153,10,131,137,133,0,153,157,148,10,135,138,134,0,149,159,160,10,134,138,132,0,160,159,158,10,132,138,133,0,158,159,148,10,133,138,135,0,148,159,149,10,125,139,121,0,150,161,145,10,121,139,134,0,145,161,160,10,134,139,135,0,160,161,149,10,135,139,125,0,149,161,150,10,126,140,127,0,162,163,141,10,127,140,120,0,141,163,142,10,120,140,123,0,142,163,146,10,123,140,122,0,146,163,147,10,122,140,126,0,147,163,162,10,129,141,128,0,156,164,140,10,128,141,127,0,140,164,141,10,127,141,126,0,141,164,162,10,126,141,129,0,162,164,156,10,128,68,130,0,140,92,155,10,132,130,92,0,158,155,91,10,92,130,68,0,91,155,92,10,132,92,134,0,158,91,160,10,134,92,121,0,160,91,145,10,129,131,77,0,156,153,97,10,133,124,131,0,148,96,153,10,77,131,124,0,97,153,96,10,129,77,126,0,156,97,162,10,77,122,126,0,97,147,162,10,81,55,60,0,63,165,106,10,81,73,55,0,63,62,165,10,55,73,90,0,165,62,115,10,59,55,90,0,130,165,115,10,142,145,93,0,166,167,90,10,93,145,92,0,90,167,91,10,145,109,92,0,167,143,91,10,73,80,149,0,62,102,126,10,149,80,150,0,126,102,168,10,121,147,125,0,145,144,150,10,125,147,148,0,150,144,152,10,148,151,71,0,152,169,151,10,71,151,109,0,151,169,143,10,109,151,147,0,143,169,144,10,147,151,148,0,144,169,152,10,145,152,109,0,167,170,143,10,109,152,71,0,143,170,151,10,71,152,146,0,151,170,171,10,146,152,145,0,171,170,167,10,142,153,145,0,166,172,167,10,145,153,146,0,167,172,171,10,146,153,97,0,171,172,173,10,97,154,144,0,173,174,175,10,144,154,143,0,175,174,127,10,143,154,142,0,127,174,166,10,143,155,144,0,127,176,175,10,144,155,150,0,175,176,168,10,150,155,149,0,168,176,126,10,149,155,143,0,126,176,127,10,54,222,53,0,177,178,179,10,53,222,171,0,179,178,180,10,164,166,175,0,181,182,183,10,177,168,182,0,184,185,186,10,182,168,181,0,186,185,187,10,186,61,159,0,188,189,190,10,159,61,184,0,190,189,191,10,57,157,62,0,192,193,194,10,222,177,171,0,178,184,180,10,171,177,182,0,180,184,186,10,177,183,168,0,184,195,185,10,168,183,283,0,185,195,196,10,182,172,171,0,197,198,199,10,171,172,185,0,199,198,200,10,21,58,167,0,201,202,203,10,167,58,283,0,203,202,196,10,186,56,61,0,204,205,206,10,198,181,165,0,207,187,208,10,168,157,181,0,185,193,187,10,181,157,165,0,187,193,208,10,157,57,178,0,193,192,209,10,225,226,183,0,210,211,195,10,183,226,179,0,195,211,212,10,168,62,157,0,185,194,193,10,192,158,191,0,213,214,215,10,197,56,186,0,216,205,204,10,227,2,180,0,217,218,219,10,180,2,3,0,219,218,220,10,196,262,277,0,221,222,223,10,195,277,262,0,261,223,222,10,262,266,242,0,222,225,224,10,161,242,266,0,226,224,225,10,163,5,6,0,227,228,229,10,5,180,3,0,228,219,220,10,166,156,181,0,230,231,187,10,181,156,182,0,187,231,186,10,314,226,227,0,232,211,217,10,179,176,167,0,212,233,203,10,167,176,281,0,203,233,234,10,189,228,169,0,235,236,237,10,169,228,229,0,237,236,238,10,17,169,18,0,239,237,240,10,18,169,229,0,240,237,238,10,225,183,222,0,210,195,178,10,222,183,177,0,178,195,184,10,53,171,160,0,241,199,242,10,160,171,185,0,242,199,200,10,174,156,164,0,243,244,181,10,60,175,64,0,245,183,246,10,64,175,232,0,246,183,247,10,165,157,178,0,208,193,209,10,180,5,163,0,219,228,227,10,189,19,228,0,235,248,236,10,228,19,20,0,236,248,249,10,184,235,175,0,191,250,183,10,175,235,234,0,183,250,251,10,237,61,65,0,252,189,253,10,21,167,22,0,201,203,254,10,22,167,281,0,254,203,234,10,64,232,63,0,246,247,255,10,63,232,231,0,255,247,256,10,193,162,160,0,257,258,242,10,160,162,188,0,242,258,259,10,194,193,185,0,260,257,200,10,185,193,160,0,200,257,242,10,194,185,195,0,260,200,261,10,195,185,172,0,261,200,198,10,277,278,196,0,223,262,221,10,196,278,264,0,221,262,263,10,264,278,270,0,263,262,264,10,278,174,270,0,262,243,264,10,178,200,165,0,209,265,208,10,165,200,199,0,208,265,266,10,200,178,197,0,265,209,216,10,186,198,201,0,204,207,267,10,198,165,201,0,207,208,267,10,201,165,199,0,267,208,266,10,203,202,206,0,268,269,270,10,206,202,205,0,270,269,271,10,204,203,206,0,272,268,270,10,205,207,206,0,271,273,270,10,206,207,208,0,270,273,274,10,206,208,204,0,270,274,272,10,214,209,207,0,275,276,273,10,207,209,208,0,273,276,274,10,204,208,209,0,272,274,276,10,214,210,209,0,275,277,276,10,209,210,211,0,276,277,278,10,204,209,211,0,272,276,278,10,211,210,203,0,278,277,268,10,203,210,202,0,268,277,269,10,204,211,203,0,272,278,268,10,213,212,202,0,279,280,269,10,213,202,210,0,279,269,277,10,213,210,214,0,279,277,275,10,213,214,212,0,279,275,280,10,215,205,216,0,281,271,282,10,215,216,214,0,281,282,275,10,215,214,207,0,281,275,273,10,215,207,205,0,281,273,271,10,186,218,197,0,204,283,216,10,197,218,217,0,216,283,284,10,186,201,218,0,204,267,283,10,218,201,219,0,283,267,285,10,201,199,219,0,267,266,285,10,219,199,220,0,285,266,286,10,200,221,199,0,265,287,266,10,199,221,220,0,266,287,286,10,197,217,200,0,216,284,265,10,200,217,221,0,265,284,287,10,220,202,219,0,286,269,285,10,219,202,212,0,285,269,280,10,202,220,205,0,269,286,271,10,205,220,221,0,271,286,287,10,216,205,217,0,282,271,284,10,217,205,221,0,284,271,287,10,216,218,212,0,282,283,280,10,212,218,219,0,280,283,285,10,174,278,156,0,243,262,244,10,285,187,173,0,288,289,290,10,173,187,176,0,290,289,233,10,192,260,162,0,213,291,258,10,162,260,263,0,258,291,292,10,188,162,164,0,259,258,181,10,158,193,224,0,214,257,293,10,224,193,194,0,293,257,260,10,195,170,194,0,261,294,260,10,194,170,224,0,260,294,293,10,166,181,186,0,230,187,204,10,181,198,186,0,187,207,204,10,186,159,166,0,204,295,230,10,164,156,166,0,181,244,182,10,53,160,59,0,241,242,296,10,59,160,188,0,296,242,259,10,216,217,218,0,282,284,283,10,57,56,178,0,192,205,209,10,178,56,197,0,209,205,216,10,235,190,234,0,250,297,251,10,237,231,236,0,252,256,298,10,236,231,230,0,298,256,299,10,26,225,54,0,300,210,177,10,54,225,222,0,177,210,178,10,226,225,26,0,211,210,300,10,227,226,2,0,217,211,218,10,2,226,26,0,218,211,300,10,228,20,303,0,236,249,301,10,303,20,27,0,301,249,302,10,228,303,229,0,236,301,238,10,229,303,302,0,238,301,303,10,18,229,30,0,240,238,304,10,30,229,302,0,304,238,303,10,234,190,233,0,251,297,305,10,233,190,230,0,305,297,299,10,232,233,231,0,247,305,256,10,231,233,230,0,256,305,299,10,235,236,190,0,250,298,297,10,190,236,230,0,297,298,299,10,237,65,231,0,252,253,256,10,231,65,63,0,256,253,255,10,166,159,175,0,182,190,183,10,175,159,184,0,183,190,191,10,233,175,234,0,305,183,251,10,236,184,237,0,298,191,252,10,237,184,61,0,252,191,189,10,184,236,235,0,191,298,250,10,167,283,179,0,203,196,212,10,179,283,183,0,212,196,195,10,233,232,175,0,305,247,183,10,158,192,193,0,214,213,257,10,193,192,162,0,257,213,258,10,32,285,31,0,306,288,307,10,31,285,173,0,307,288,290,10,246,158,245,0,308,214,309,10,158,238,245,0,214,310,309,10,223,191,267,0,311,215,312,10,267,191,239,0,312,215,313,10,170,240,224,0,294,314,293,10,224,240,241,0,293,314,315,10,224,241,158,0,293,315,214,10,158,241,238,0,214,315,310,10,251,242,253,0,316,224,317,10,242,243,253,0,224,318,317,10,161,268,242,0,226,319,224,10,242,268,243,0,224,319,318,10,249,248,254,0,320,321,322,10,248,246,254,0,321,308,322,10,246,247,254,0,308,323,322,10,247,249,254,0,323,320,322,10,251,250,255,0,316,324,325,10,250,248,255,0,324,321,325,10,248,249,255,0,321,320,325,10,249,251,255,0,320,316,325,10,253,252,256,0,317,326,327,10,252,250,256,0,326,324,327,10,250,251,256,0,324,316,327,10,251,253,256,0,316,317,327,10,243,239,257,0,318,313,328,10,239,252,257,0,313,326,328,10,252,253,257,0,326,317,328,10,253,243,257,0,317,318,328,10,244,245,258,0,329,309,330,10,245,238,258,0,309,310,330,10,238,241,258,0,310,315,330,10,241,240,258,0,315,314,330,10,240,244,258,0,314,329,330,10,247,246,259,0,323,308,331,10,246,245,259,0,308,309,331,10,245,244,259,0,309,329,331,10,244,247,259,0,329,323,331,10,246,248,158,0,308,321,214,10,250,191,248,0,324,215,321,10,191,158,248,0,215,214,321,10,250,252,191,0,324,326,215,10,191,252,239,0,215,326,313,10,212,214,216,0,280,275,282,10,247,170,249,0,323,294,320,10,251,249,242,0,316,320,224,10,170,242,249,0,294,224,320,10,247,244,170,0,323,329,294,10,170,244,240,0,294,329,314,10,175,60,55,0,183,245,332,10,188,164,55,0,259,181,332,10,55,164,175,0,332,181,183,10,59,188,55,0,296,259,332,10,260,192,261,0,291,213,333,10,261,192,265,0,333,213,334,10,192,191,265,0,213,215,334,10,191,223,265,0,215,311,334,10,270,174,269,0,264,243,335,10,269,174,164,0,335,243,181,10,268,267,243,0,319,312,318,10,243,267,239,0,318,312,313,10,268,161,271,0,319,226,336,10,161,223,271,0,226,311,336,10,223,267,271,0,311,312,336,10,267,268,271,0,312,319,336,10,265,223,272,0,334,311,337,10,223,161,272,0,311,226,337,10,161,266,272,0,226,225,337,10,266,265,272,0,225,334,337,10,261,265,273,0,333,334,338,10,265,266,273,0,334,225,338,10,266,262,273,0,225,222,338,10,262,261,273,0,222,333,338,10,260,261,274,0,291,333,339,10,261,262,274,0,333,222,339,10,262,196,274,0,222,221,339,10,196,260,274,0,221,291,339,10,260,196,275,0,291,221,340,10,196,264,275,0,221,263,340,10,264,263,275,0,263,292,340,10,263,260,275,0,292,291,340,10,263,264,276,0,292,263,341,10,264,270,276,0,263,264,341,10,270,269,276,0,264,335,341,10,269,263,276,0,335,292,341,10,143,142,72,0,127,166,114,10,72,142,93,0,114,166,90,10,164,162,269,0,181,258,335,10,162,263,269,0,258,292,335,10,142,154,97,0,342,343,344,10,153,142,97,0,345,346,347,10,195,262,242,0,261,222,224,10,195,242,170,0,261,224,294,10,278,277,172,0,262,223,198,10,172,277,195,0,198,223,261,10,146,97,124,0,171,173,96,10,124,97,96,0,96,173,95,10,71,146,124,0,151,171,96,10,280,279,144,0,117,94,175,10,279,97,144,0,94,173,175,10,80,280,150,0,102,117,168,10,280,144,150,0,117,175,168,10,66,85,280,0,103,76,117,10,280,85,79,0,117,76,78,10,156,278,182,0,244,262,197,10,182,278,172,0,197,262,198,10,281,176,187,0,234,233,289,10,281,187,22,0,234,289,254,10,22,187,33,0,254,289,348,10,308,311,309,0,349,350,351,10,163,6,282,0,227,229,352,10,282,6,38,0,352,229,353,10,282,38,189,0,352,353,235,10,189,38,19,0,235,353,248,10,283,58,168,0,196,202,185,10,168,58,62,0,185,202,194,10,12,9,284,0,138,86,137,10,284,9,86,0,137,86,88,10,284,86,76,0,137,88,67,10,76,86,82,0,67,88,65,10,17,31,169,0,239,307,237,10,169,31,173,0,237,307,290,10,39,286,32,0,354,355,306,10,32,286,285,0,306,355,288,10,285,286,187,0,288,355,289,10,187,286,41,0,289,355,356,10,33,187,41,0,348,289,356,10,286,39,304,0,355,354,357,10,304,39,42,0,357,354,358,10,41,286,44,0,356,355,359,10,44,286,304,0,359,355,357,10,290,287,289,0,360,361,362,10,289,287,288,0,362,361,363,10,291,287,290,0,364,361,360,10,289,292,290,0,362,365,360,10,290,292,293,0,360,365,366,10,290,293,291,0,360,366,364,10,294,295,292,0,367,368,365,10,292,295,293,0,365,368,366,10,291,293,295,0,364,366,368,10,294,296,295,0,367,369,368,10,295,296,297,0,368,369,370,10,291,295,297,0,364,368,370,10,297,296,287,0,370,369,361,10,287,296,288,0,361,369,363,10,291,297,287,0,364,370,361,10,298,299,288,0,371,372,363,10,298,288,296,0,371,363,369,10,298,296,294,0,371,369,367,10,298,294,299,0,371,367,372,10,300,289,301,0,373,362,374,10,300,301,294,0,373,374,367,10,300,294,292,0,373,367,365,10,300,292,289,0,373,365,362,10,107,288,103,0,375,363,376,10,103,288,299,0,376,363,372,10,107,106,288,0,375,377,363,10,288,106,289,0,363,377,362,10,301,289,105,0,374,362,378,10,105,289,106,0,378,362,377,10,301,104,299,0,374,379,372,10,299,104,103,0,372,379,376,10,301,105,104,0,374,378,379,10,299,294,301,0,372,367,374,10,303,27,45,0,301,302,380,10,302,303,45,0,303,301,380,10,30,302,45,0,304,303,380,10,304,42,46,0,357,358,381,10,44,304,46,0,359,357,381,10,307,312,189,0,384,382,385,10,189,312,282,0,385,382,383,10,305,307,173,0,386,387,290,10,307,189,173,0,387,235,290,10,173,189,169,0,290,235,237,10,309,305,176,0,351,386,233,10,176,305,173,0,233,386,290,10,163,308,314,0,227,349,232,10,180,314,227,0,219,232,217,10,313,308,163,0,388,349,227,10,180,163,314,0,219,227,232,10,313,163,312,0,388,227,389,10,312,163,282,0,389,227,352,10,310,307,311,0,390,387,350,10,311,307,305,0,350,387,386,10,311,305,309,0,350,386,351,10,306,311,308,0,391,350,349,10,310,311,306,0,390,350,391,10,307,310,312,0,384,390,382,10,312,310,313,0,389,392,388,10,313,310,306,0,388,392,391,10,306,308,313,0,391,349,388,10,309,176,308,0,351,233,349,10,308,176,314,0,349,233,232,2,176,179,314,0,2,314,179,226,0] + +} \ No newline at end of file diff --git a/examples/models/animated/stork.js b/examples/models/animated/stork.js new file mode 100644 index 0000000000000000000000000000000000000000..ce7f11bab7f0fda3c3b5859e019baa4c2e0b5d3c --- /dev/null +++ b/examples/models/animated/stork.js @@ -0,0 +1,50 @@ +{ + + "metadata" : { + "formatVersion" : 3, + "description" : "3D assets and textures for ROME - 3 Dreams of Black - at http://ro.me are licensed under a Creative CommonsAttribution-NonCommercial-ShareAlike 3.0 Unported License ( http://creativecommons.org/licenses/by-nc-sa/3.0/ )." + }, + + "scale" : 10.000000, + + "materials": [ { + "DbgColor" : 15658734, + "DbgIndex" : 0, + "DbgName" : "initialShadingGroup", + "colorAmbient" : [0.0, 0.0, 0.0], + "colorDiffuse" : [0.5, 0.5, 0.5], + "illumination" : 4, + "opticalDensity" : 1.0 + }], + + "vertices": [7,174,111,7,151,173,7,-2,-159,7,160,-52,-127,87,-48,7,17,244,-21,53,320,-87,14,97,7,139,648,-57,-30,76,7,109,391,7,0,-91,-93,23,-124,-99,165,92,-19,29,206,7,-42,83,-32,189,511,7,42,394,7,197,497,7,221,696,7,128,456,-78,75,-162,-73,-39,-133,7,170,679,7,221,552,7,142,175,-127,60,-36,-17,82,478,-41,19,159,-13,178,686,7,114,-147,7,197,920,-18,95,328,7,187,15,7,70,501,-86,131,147,-60,1,-166,7,112,327,7,38,-229,-33,167,632,-25,116,235,-37,26,-223,-24,138,520,-49,91,174,-19,77,394,-55,-38,-152,7,23,321,-37,203,568,-32,115,-126,-29,79,247,-21,113,473,-129,13,23,7,232,643,7,156,462,-107,64,130,-28,58,280,-38,-5,-150,7,14,283,-18,83,393,-54,147,-66,-35,-3,-220,-117,147,123,7,103,582,-60,-8,-153,-50,2,-259,7,0,-250,-73,174,7,-10,208,687,7,129,222,-91,32,-459,7,-17,191,7,64,-470,-46,-25,-162,-80,-21,-139,-68,-45,-224,-56,-43,-224,-51,-32,-223,-62,-26,-223,-73,-34,-224,-70,-12,-622,-50,-8,-622,-80,13,-619,-53,19,-621,-41,-30,-268,-60,-11,-267,-48,-22,-311,-59,-18,-311,-82,-34,-269,-65,-35,-312,-72,-57,-271,-59,-40,-313,-46,-53,-270,-49,-37,-313,-54,3,-603,-64,6,-602,-70,-1,-604,-66,-8,-605,-56,-5,-605,-41,130,177,-48,6,-260,-353,231,167,-429,116,-114,-171,160,-3,-426,126,-180,-355,212,186,-132,108,110,-470,176,12,-319,179,-3,-235,201,106,-241,182,128,-245,160,111,-288,156,-96,-429,138,-152,-273,175,-107,-259,140,-125,-357,216,195,-533,131,-137,-534,122,-148,-782,117,111,-602,142,-120,-779,93,127,-785,101,136,-468,146,22,-601,114,-114,-767,93,94,-775,118,91,-726,132,54,-717,106,56,-732,125,-9,-722,97,-8,-678,142,-40,-666,112,-41,-668,142,-82,-658,111,-80,-888,56,-10,-753,97,-47,-700,111,-88,-648,126,-128,-984,26,104,-935,46,52,-143,86,52,-280,163,16,142,86,-48,37,53,320,102,14,97,72,-30,76,109,23,-124,114,165,92,35,29,206,48,189,511,94,75,-162,89,-38,-133,142,60,-36,32,82,478,57,19,159,29,178,686,33,95,328,101,131,147,75,1,-166,48,167,632,41,116,235,53,26,-223,39,138,520,64,91,174,35,77,394,70,-39,-151,52,203,568,47,115,-126,44,79,247,36,113,473,145,13,23,122,64,130,43,59,280,54,-5,-150,34,83,393,69,147,-66,51,-3,-220,133,147,123,75,-8,-154,66,2,-259,88,173,7,26,208,687,106,32,-459,61,-26,-161,96,-20,-139,77,-47,-223,65,-45,-223,60,-35,-222,70,-28,-223,81,-36,-224,66,-35,-621,48,-35,-621,70,-11,-619,45,-10,-620,47,-36,-266,64,-15,-267,53,-31,-310,63,-25,-310,89,-36,-269,73,-40,-311,81,-60,-269,69,-47,-311,55,-58,-267,58,-46,-311,49,-24,-603,57,-18,-602,65,-25,-603,62,-33,-604,53,-32,-604,56,130,177,63,6,-260,366,239,167,443,142,-116,185,159,-3,437,152,-181,370,220,186,147,108,110,491,195,6,329,183,-4,248,200,103,255,182,126,259,159,109,285,151,-99,440,164,-153,269,170,-109,257,136,-127,371,224,195,535,163,-146,539,154,-156,782,146,109,598,168,-129,779,123,125,785,131,134,492,165,16,596,140,-122,768,122,92,776,147,89,727,161,51,718,134,54,734,152,-12,723,124,-10,680,168,-43,668,139,-44,670,168,-86,660,136,-83,881,82,-18,789,111,-67,713,139,-91,655,154,-128,984,70,114,942,72,61,158,86,52,293,164,16,53,14,-823,-72,43,-819,48,188,616,52,168,537,56,188,572,47,143,576,51,169,571,52,178,586,47,174,555,53,181,541,42,177,572,-31,143,576,-32,188,616,-37,168,537,-38,181,541,-27,177,572,-37,178,586,-36,169,571,-32,174,555,-41,188,572], + + "morphTargets": [ + { "name": "storkFly_B_001", "vertices": [7,174,111,7,151,173,7,-2,-159,7,160,-52,-127,87,-48,7,17,244,-21,53,320,-87,14,97,7,139,648,-57,-30,76,7,109,391,7,0,-91,-93,23,-124,-99,165,92,-19,29,206,7,-42,83,-32,189,511,7,42,394,7,197,497,7,221,696,7,128,456,-78,75,-162,-73,-39,-133,7,170,679,7,221,552,7,142,175,-127,60,-36,-17,82,478,-41,19,159,-13,178,686,7,114,-147,7,197,920,-18,95,328,7,187,15,7,70,501,-86,131,147,-60,1,-166,7,112,327,7,38,-229,-33,167,632,-25,116,235,-37,26,-223,-24,138,520,-49,91,174,-19,77,394,-55,-38,-152,7,23,321,-37,203,568,-32,115,-126,-29,79,247,-21,113,473,-129,13,23,7,232,643,7,156,462,-107,64,130,-28,58,280,-38,-5,-150,7,14,283,-18,83,393,-54,147,-66,-35,-3,-220,-117,147,123,7,103,582,-60,-8,-153,-50,2,-259,7,0,-250,-73,174,7,-10,208,687,7,129,222,-91,32,-459,7,-17,191,7,64,-470,-46,-25,-162,-80,-21,-139,-68,-45,-224,-56,-43,-224,-51,-32,-223,-62,-26,-223,-73,-34,-224,-70,-12,-622,-50,-8,-622,-80,13,-619,-53,19,-621,-41,-30,-268,-60,-11,-267,-48,-22,-311,-59,-18,-311,-82,-34,-269,-65,-35,-312,-72,-57,-271,-59,-40,-313,-46,-53,-270,-49,-37,-313,-54,3,-603,-64,6,-602,-70,-1,-604,-66,-8,-605,-56,-5,-605,-41,130,177,-48,6,-260,-353,231,167,-429,116,-114,-171,160,-3,-426,126,-180,-355,212,186,-132,108,110,-470,176,12,-319,179,-3,-235,201,106,-241,182,128,-245,160,111,-288,156,-96,-429,138,-152,-273,175,-107,-259,140,-125,-357,216,195,-533,131,-137,-534,122,-148,-782,117,111,-602,142,-120,-779,93,127,-785,101,136,-468,146,22,-601,114,-114,-767,93,94,-775,118,91,-726,132,54,-717,106,56,-732,125,-9,-722,97,-8,-678,142,-40,-666,112,-41,-668,142,-82,-658,111,-80,-888,56,-10,-753,97,-47,-700,111,-88,-648,126,-128,-984,26,104,-935,46,52,-143,86,52,-280,163,16,142,86,-48,37,53,320,102,14,97,72,-30,76,109,23,-124,114,165,92,35,29,206,48,189,511,94,75,-162,89,-38,-133,142,60,-36,32,82,478,57,19,159,29,178,686,33,95,328,101,131,147,75,1,-166,48,167,632,41,116,235,53,26,-223,39,138,520,64,91,174,35,77,394,70,-39,-151,52,203,568,47,115,-126,44,79,247,36,113,473,145,13,23,122,64,130,43,59,280,54,-5,-150,34,83,393,69,147,-66,51,-3,-220,133,147,123,75,-8,-154,66,2,-259,88,173,7,26,208,687,106,32,-459,61,-26,-161,96,-20,-139,77,-47,-223,65,-45,-223,60,-35,-222,70,-28,-223,81,-36,-224,66,-35,-621,48,-35,-621,70,-11,-619,45,-10,-620,47,-36,-266,64,-15,-267,53,-31,-310,63,-25,-310,89,-36,-269,73,-40,-311,81,-60,-269,69,-47,-311,55,-58,-267,58,-46,-311,49,-24,-603,57,-18,-602,65,-25,-603,62,-33,-604,53,-32,-604,56,130,177,63,6,-260,366,239,167,443,142,-116,185,159,-3,437,152,-181,370,220,186,147,108,110,491,195,6,329,183,-4,248,200,103,255,182,126,259,159,109,285,151,-99,440,164,-153,269,170,-109,257,136,-127,371,224,195,535,163,-146,539,154,-156,782,146,109,598,168,-129,779,123,125,785,131,134,492,165,16,596,140,-122,768,122,92,776,147,89,727,161,51,718,134,54,734,152,-12,723,124,-10,680,168,-43,668,139,-44,670,168,-86,660,136,-83,881,82,-18,789,111,-67,713,139,-91,655,154,-128,984,70,114,942,72,61,158,86,52,293,164,16,53,14,-823,-72,43,-819,48,188,616,52,168,537,56,188,572,47,143,576,51,169,571,52,178,586,47,174,555,53,181,541,42,177,572,-31,143,576,-32,188,616,-37,168,537,-38,181,541,-27,177,572,-37,178,586,-36,169,571,-32,174,555,-41,188,572] }, + { "name": "storkFly_B_002", "vertices": [7,149,118,7,126,180,7,-25,-153,7,136,-45,-123,69,-42,7,-8,252,-21,28,327,-87,-10,103,7,118,655,-57,-55,82,7,86,397,7,-24,-85,-93,0,-117,-96,139,101,-19,3,212,7,-67,89,-32,167,517,7,19,401,7,174,503,7,199,702,7,106,462,-78,52,-156,-73,-63,-127,7,149,685,7,199,558,7,116,182,-126,43,-31,-17,60,484,-41,-6,165,-13,156,692,7,91,-140,7,176,926,-18,71,334,7,162,23,7,48,507,-86,105,154,-60,-21,-160,7,87,333,7,15,-222,-33,145,638,-25,90,242,-37,3,-216,-24,116,526,-49,65,181,-19,53,401,-55,-61,-146,7,-1,329,-37,181,574,-32,91,-119,-29,53,254,-21,91,479,-129,-11,29,7,210,649,7,134,468,-107,39,137,-28,33,287,-38,-29,-143,7,-10,291,-18,59,400,-51,122,-58,-35,-26,-214,-117,122,130,7,81,589,-60,-31,-147,-50,-19,-254,7,-22,-244,-68,147,16,-10,186,693,7,103,229,-91,20,-451,7,-43,197,7,53,-461,-46,-48,-155,-80,-44,-133,-67,-68,-218,-56,-66,-218,-50,-56,-217,-61,-50,-217,-72,-57,-218,-66,-37,-617,-46,-33,-616,-76,-12,-613,-49,-6,-615,-40,-55,-262,-59,-37,-261,-46,-48,-306,-57,-44,-305,-81,-60,-264,-64,-61,-307,-71,-82,-265,-58,-67,-308,-45,-78,-264,-47,-64,-308,-51,-22,-597,-60,-18,-596,-66,-26,-598,-62,-33,-599,-53,-31,-599,-41,105,184,-48,-15,-255,-294,287,167,-388,241,-120,-146,153,4,-379,255,-185,-304,268,184,-132,82,117,-406,300,12,-264,248,-6,-198,215,109,-213,197,129,-220,180,109,-243,193,-98,-378,265,-156,-219,216,-108,-221,171,-126,-302,273,194,-478,296,-141,-481,289,-152,-721,355,106,-539,330,-122,-728,331,120,-731,339,130,-415,270,18,-548,303,-118,-716,329,87,-713,355,87,-661,353,51,-664,325,51,-667,355,-12,-669,326,-14,-609,352,-41,-610,320,-46,-598,352,-83,-601,319,-84,-838,354,-20,-695,342,-53,-640,337,-92,-584,334,-130,-942,354,90,-887,357,41,-143,61,59,-243,200,13,138,73,-43,37,28,327,102,-10,103,72,-55,82,109,0,-117,111,140,100,35,3,212,48,167,517,94,52,-156,89,-62,-127,142,46,-32,32,60,484,57,-6,165,29,156,692,33,71,334,101,105,154,75,-21,-160,48,145,638,41,90,242,53,3,-216,39,116,526,64,65,181,35,53,401,70,-62,-145,52,181,574,47,91,-119,44,53,254,36,91,479,145,-11,29,122,39,137,43,33,287,54,-29,-143,34,59,400,66,123,-58,51,-26,-214,133,122,130,76,-32,-147,66,-19,-254,83,149,16,26,186,693,106,20,-451,61,-49,-155,96,-44,-133,77,-68,-218,65,-67,-217,60,-56,-216,70,-50,-217,81,-57,-218,66,-53,-616,48,-52,-615,70,-28,-613,45,-28,-614,47,-57,-260,64,-37,-260,53,-53,-304,63,-47,-304,89,-57,-263,73,-62,-305,81,-81,-264,69,-69,-305,55,-80,-262,58,-68,-305,49,-42,-597,57,-36,-596,65,-43,-598,62,-51,-598,53,-50,-598,56,105,184,63,-15,-255,305,301,169,397,275,-117,160,161,3,388,289,-182,317,282,185,147,82,117,424,327,11,276,262,-6,211,224,106,226,207,126,234,189,106,244,194,-100,386,298,-153,219,218,-109,221,172,-128,314,287,195,476,328,-142,482,323,-153,717,363,115,534,352,-122,722,338,128,725,347,139,436,298,17,541,326,-118,710,338,96,711,364,95,659,367,58,659,339,58,667,368,-5,666,339,-7,610,371,-35,608,339,-40,600,372,-78,600,339,-79,828,348,-17,731,353,-63,649,358,-85,589,359,-122,933,353,115,891,348,62,158,61,59,256,212,12,53,0,-816,-68,23,-812,48,166,622,52,146,543,56,166,578,47,121,582,51,147,577,52,157,592,47,152,561,53,159,547,42,156,579,-31,121,582,-32,166,622,-37,146,543,-38,159,547,-27,156,579,-37,157,592,-36,147,577,-32,152,561,-41,166,578] }, + { "name": "storkFly_B_003", "vertices": [7,118,128,7,94,189,7,-50,-147,7,109,-36,-120,48,-34,7,-41,258,-21,-4,334,-87,-40,109,7,80,663,-57,-84,87,7,52,405,7,-50,-79,-93,-24,-111,-94,108,111,-19,-28,218,7,-96,94,-32,132,526,7,-14,408,7,140,512,7,161,712,7,72,470,-78,27,-148,-73,-86,-122,7,111,694,7,164,567,7,85,191,-125,23,-25,-17,26,491,-41,-37,171,-13,119,701,7,66,-131,7,134,935,-18,37,341,7,134,33,7,14,514,-86,74,162,-60,-46,-154,7,54,340,7,-7,-215,-33,108,647,-25,57,250,-37,-20,-210,-24,81,534,-49,33,189,-19,19,408,-55,-85,-141,7,-34,336,-37,145,583,-32,66,-111,-29,21,261,-21,57,486,-129,-39,36,7,173,659,7,100,476,-107,9,144,-28,0,294,-38,-54,-138,7,-44,298,-18,25,407,-50,94,-48,-35,-50,-209,-117,92,139,7,45,596,-60,-54,-141,-50,-40,-248,7,-44,-239,-66,116,27,-10,148,702,7,71,237,-91,11,-443,7,-75,203,7,44,-450,-46,-72,-150,-81,-67,-127,-67,-93,-212,-55,-91,-212,-50,-81,-211,-60,-74,-212,-71,-82,-212,-63,-65,-613,-43,-61,-613,-73,-39,-608,-46,-33,-610,-38,-84,-258,-57,-65,-257,-44,-80,-302,-55,-76,-301,-80,-88,-259,-62,-93,-303,-70,-111,-260,-56,-98,-304,-44,-107,-259,-45,-95,-304,-47,-50,-593,-57,-47,-592,-63,-55,-594,-59,-62,-596,-50,-59,-595,-41,73,192,-48,-36,-249,-227,301,190,-318,320,-97,-124,136,17,-305,339,-160,-244,283,203,-132,52,125,-320,366,41,-200,278,13,-160,208,125,-181,194,143,-189,181,120,-198,209,-84,-302,344,-130,-166,233,-91,-181,184,-113,-239,287,214,-389,401,-109,-394,396,-121,-610,495,147,-437,448,-85,-624,472,157,-624,480,168,-338,339,44,-453,425,-84,-612,471,125,-602,495,127,-551,483,91,-561,457,88,-555,494,28,-565,466,22,-500,478,-1,-509,449,-9,-488,481,-43,-500,450,-48,-720,539,21,-585,493,-13,-533,478,-53,-479,465,-92,-823,554,132,-768,548,83,-143,32,67,-200,215,26,133,55,-35,37,-4,334,102,-40,109,72,-84,87,109,-25,-111,109,110,110,35,-28,218,48,132,526,94,27,-148,89,-87,-122,139,29,-25,32,26,491,57,-37,171,29,119,701,33,37,341,101,74,162,75,-46,-154,48,108,647,41,57,249,53,-20,-210,39,81,534,64,33,189,35,19,408,70,-86,-140,52,145,583,47,66,-111,44,21,261,36,57,486,145,-39,36,122,9,144,43,0,294,54,-54,-138,34,25,407,65,96,-49,51,-50,-209,133,92,139,76,-56,-142,66,-40,-248,80,120,27,26,148,702,106,11,-443,61,-73,-149,96,-68,-128,76,-90,-213,64,-88,-212,59,-78,-211,70,-71,-211,81,-79,-213,63,-76,-611,45,-75,-611,67,-51,-608,42,-51,-610,46,-81,-255,63,-60,-255,52,-79,-300,62,-73,-299,88,-80,-259,72,-88,-301,80,-104,-260,67,-95,-301,54,-103,-258,56,-94,-301,46,-65,-592,54,-59,-591,62,-66,-593,59,-74,-594,50,-73,-594,56,73,192,63,-36,-249,231,322,193,316,361,-89,135,150,17,302,380,-152,249,306,206,147,52,125,328,402,45,205,300,15,166,226,123,188,211,141,197,199,118,196,215,-85,298,385,-122,163,240,-92,180,190,-114,244,309,218,375,438,-105,383,436,-117,599,510,159,425,475,-82,611,486,169,613,494,181,348,377,47,438,451,-81,600,486,136,592,511,139,542,503,102,550,477,98,548,514,38,556,486,33,492,503,7,500,473,0,482,507,-34,491,476,-39,708,545,28,613,526,-19,533,509,-42,475,497,-79,808,565,162,769,554,108,158,32,67,207,235,27,49,-22,-812,-64,2,-806,48,130,631,52,111,551,56,130,587,47,85,590,51,111,586,52,120,601,47,116,570,53,124,556,42,120,587,-31,85,590,-32,130,631,-37,111,551,-38,124,556,-27,120,587,-37,120,601,-36,111,586,-32,116,570,-41,130,587] }, + { "name": "storkFly_B_004", "vertices": [7,83,138,7,58,199,7,-79,-140,7,77,-26,-122,16,-25,7,-78,266,-21,-43,342,-87,-75,117,7,34,673,-57,-118,94,7,12,414,7,-81,-72,-93,-55,-103,-94,72,121,-19,-65,226,7,-131,101,-32,89,538,7,-54,416,7,97,524,7,113,724,7,30,480,-78,-1,-139,-73,-114,-114,7,64,705,7,120,579,7,49,201,-128,-8,-15,-17,-15,500,-41,-72,179,-13,71,712,7,36,-122,7,81,946,-18,-1,350,7,101,43,7,-28,522,-86,39,172,-60,-75,-147,7,15,349,7,-36,-207,-33,62,658,-25,20,259,-37,-48,-202,-24,38,544,-49,-2,198,-19,-20,417,-55,-113,-133,7,-73,343,-37,101,595,-32,36,-101,-29,-16,270,-21,15,496,-129,-72,43,7,126,671,7,58,487,-107,-26,152,-28,-38,302,-38,-83,-130,7,-82,305,-18,-14,416,-51,61,-39,-35,-78,-202,-117,57,149,7,0,605,-60,-83,-135,-50,-67,-241,7,-71,-231,-66,82,37,-10,101,714,7,34,247,-91,-6,-433,7,-111,210,7,27,-438,-46,-100,-143,-81,-95,-120,-67,-123,-204,-55,-121,-204,-49,-111,-204,-60,-105,-204,-71,-112,-205,-63,-104,-607,-43,-100,-607,-72,-78,-602,-45,-72,-604,-38,-120,-251,-56,-100,-250,-43,-119,-296,-54,-115,-296,-79,-123,-252,-61,-131,-298,-70,-146,-253,-55,-137,-298,-44,-142,-252,-45,-134,-298,-47,-89,-587,-56,-86,-586,-62,-94,-588,-59,-101,-590,-49,-98,-590,-41,37,202,-48,-63,-241,-201,274,209,-296,322,-73,-122,102,28,-281,339,-136,-221,259,223,-132,17,135,-282,362,66,-185,251,31,-148,175,139,-169,163,158,-181,151,136,-193,183,-69,-276,343,-106,-161,205,-76,-181,156,-99,-214,262,234,-347,416,-80,-354,413,-92,-524,554,192,-383,472,-52,-542,535,203,-540,543,215,-305,340,69,-406,452,-52,-534,532,170,-518,553,172,-475,529,131,-492,506,128,-481,542,69,-498,518,64,-434,513,34,-451,488,27,-426,514,-8,-445,487,-11,-628,629,76,-513,550,30,-470,523,-14,-424,498,-57,-714,667,196,-667,648,142,-143,-1,75,-192,187,43,134,23,-25,37,-43,342,102,-75,117,72,-118,94,109,-55,-103,108,74,121,35,-65,226,48,89,538,94,-1,-139,89,-117,-115,141,-2,-16,32,-15,500,57,-72,179,29,71,712,33,-1,350,101,39,172,75,-75,-147,48,62,658,41,20,259,53,-48,-202,39,38,544,64,-2,198,35,-20,417,70,-116,-133,52,101,595,47,36,-101,44,-16,270,36,15,496,145,-72,43,122,-26,152,43,-37,303,54,-83,-130,34,-14,416,66,64,-39,51,-78,-202,133,57,149,76,-85,-134,66,-67,-241,80,85,37,26,101,714,106,-6,-433,61,-102,-142,96,-98,-121,76,-117,-207,64,-115,-205,59,-105,-204,69,-98,-204,80,-106,-206,58,-107,-605,40,-107,-604,62,-83,-603,38,-83,-604,45,-110,-249,62,-89,-249,50,-111,-294,60,-105,-294,87,-109,-252,70,-120,-295,79,-133,-254,65,-127,-295,53,-132,-251,54,-126,-295,41,-96,-586,50,-91,-586,57,-97,-587,55,-105,-588,45,-104,-588,56,37,202,63,-63,-241,203,292,212,283,363,-65,130,115,28,266,381,-127,224,279,225,147,17,135,279,400,71,187,272,32,153,191,137,175,179,156,188,168,133,189,188,-70,260,383,-98,156,211,-77,177,160,-101,217,281,236,321,453,-76,330,453,-87,500,577,206,358,501,-48,518,557,217,516,565,229,304,380,74,380,480,-48,510,556,184,494,577,186,453,554,144,469,532,141,459,570,82,477,546,76,413,543,46,431,517,37,406,545,3,425,518,-1,601,651,86,522,605,30,453,564,0,406,535,-42,678,696,229,649,675,172,158,-1,75,197,207,43,43,-57,-807,-64,-34,-800,48,84,642,52,67,562,56,85,598,47,41,600,51,66,597,52,75,612,47,72,581,53,80,567,42,75,598,-31,41,600,-32,84,642,-37,67,562,-38,80,567,-27,75,598,-37,75,612,-36,66,597,-32,72,581,-41,85,598] }, + { "name": "storkFly_B_005", "vertices": [7,51,147,7,25,207,7,-110,-133,7,46,-17,-125,-20,-19,7,-111,272,-21,-79,349,-87,-107,124,7,-6,681,-57,-150,101,7,-26,423,7,-112,-65,-93,-85,-96,-97,38,129,-19,-98,233,7,-163,108,-32,48,546,7,-92,423,7,56,532,7,73,732,7,-10,488,-78,-32,-132,-74,-142,-106,7,23,713,7,79,588,7,16,209,-131,-45,-10,-17,-56,508,-41,-105,186,-13,31,720,7,5,-114,7,40,954,-18,-37,359,7,69,52,7,-69,530,-86,6,180,-60,-106,-140,7,-20,358,7,-66,-199,-33,22,666,-25,-12,267,-37,-78,-194,-24,-2,553,-49,-34,205,-19,-58,425,-55,-142,-125,7,-108,349,-37,60,603,-32,5,-93,-29,-49,277,-21,-25,504,-129,-104,50,7,86,679,7,17,495,-107,-58,160,-28,-72,310,-38,-114,-123,7,-116,311,-18,-52,424,-52,29,-31,-35,-108,-194,-117,24,157,7,-40,614,-60,-112,-128,-50,-97,-234,7,-101,-224,-69,48,45,-10,60,722,7,1,255,-91,-32,-424,7,-144,217,7,0,-430,-46,-130,-135,-80,-123,-113,-67,-155,-195,-55,-153,-195,-49,-143,-196,-60,-137,-197,-71,-144,-197,-64,-151,-600,-44,-147,-600,-73,-125,-596,-46,-120,-598,-37,-156,-243,-56,-137,-243,-43,-159,-289,-54,-155,-288,-79,-159,-244,-61,-171,-290,-70,-182,-245,-56,-177,-291,-44,-179,-244,-45,-174,-290,-47,-136,-581,-57,-133,-580,-63,-140,-582,-59,-148,-583,-50,-145,-583,-41,4,210,-48,-93,-234,-251,194,209,-308,299,-64,-138,57,34,-283,322,-121,-273,182,221,-132,-14,143,-295,312,81,-227,186,31,-185,113,141,-204,101,159,-220,86,133,-215,131,-65,-279,319,-91,-186,153,-72,-201,107,-96,-268,180,232,-331,404,-55,-338,405,-68,-475,545,234,-354,462,-20,-500,533,242,-496,537,254,-323,296,79,-383,449,-24,-492,532,208,-469,545,214,-436,514,169,-460,500,163,-433,538,110,-457,523,101,-398,501,71,-423,485,59,-387,505,28,-415,489,20,-539,670,133,-458,564,73,-425,531,24,-389,498,-22,-612,718,259,-572,692,202,-143,-33,83,-225,128,42,139,-15,-19,37,-79,349,102,-107,124,72,-150,101,109,-85,-96,112,39,129,35,-98,234,48,48,546,94,-32,-132,89,-147,-108,145,-40,-10,32,-56,508,57,-105,186,29,31,720,33,-37,359,101,6,180,75,-106,-140,48,22,666,41,-12,267,53,-78,-194,39,-2,553,64,-34,205,35,-58,425,70,-146,-126,52,60,603,47,5,-93,44,-49,277,36,-25,504,145,-104,50,122,-58,160,43,-72,310,54,-114,-123,34,-52,424,67,30,-31,51,-108,-194,133,24,157,75,-115,-127,66,-97,-234,83,50,45,26,60,722,106,-32,-424,61,-132,-135,96,-128,-114,75,-145,-199,63,-144,-198,58,-133,-196,68,-127,-197,79,-135,-199,53,-141,-598,35,-140,-598,57,-116,-597,32,-116,-598,44,-140,-242,61,-119,-242,48,-144,-287,58,-137,-287,85,-140,-246,68,-153,-289,78,-163,-247,63,-159,-289,51,-162,-245,52,-158,-289,36,-128,-580,45,-123,-580,52,-130,-581,50,-138,-581,40,-137,-581,56,4,210,63,-93,-234,254,212,213,280,338,-51,147,67,34,250,360,-107,278,202,223,147,-14,143,278,349,90,229,205,33,193,127,139,212,115,156,229,102,130,210,134,-67,248,354,-78,181,156,-74,198,110,-98,273,199,234,284,437,-46,291,441,-57,428,573,251,307,489,-12,454,562,259,449,565,271,309,339,88,337,477,-17,445,562,225,422,574,231,391,543,185,415,531,178,385,570,127,411,557,118,352,532,87,378,518,74,342,538,45,370,524,36,479,702,147,423,637,83,376,576,45,342,537,-1,540,752,297,518,730,236,158,-33,83,232,146,43,35,-100,-802,-65,-88,-795,48,43,650,52,26,570,56,45,607,47,0,608,51,26,605,52,35,620,47,31,589,53,39,575,42,34,607,-31,0,608,-32,43,650,-37,26,570,-38,39,575,-27,34,607,-37,35,620,-36,26,605,-32,31,589,-41,45,607] }, + { "name": "storkFly_B_006", "vertices": [7,42,149,7,16,210,7,-122,-128,7,35,-15,-135,-41,-17,7,-119,275,-21,-89,352,-87,-117,129,7,-21,685,-57,-160,106,7,-38,427,7,-124,-60,-93,-98,-91,-102,25,131,-19,-106,238,7,-173,113,-32,33,550,7,-105,425,7,41,536,7,57,737,7,-25,493,-78,-45,-128,-74,-151,-101,7,7,718,7,64,592,7,7,212,-138,-66,-8,-17,-71,512,-41,-114,191,-13,15,725,7,-6,-111,7,24,959,-18,-48,363,7,59,54,7,-84,534,-86,-2,183,-60,-118,-135,7,-31,363,7,-79,-195,-33,6,670,-25,-20,271,-37,-92,-190,-24,-17,557,-49,-43,209,-19,-71,428,-55,-153,-120,7,-119,352,-37,45,608,-32,-6,-90,-29,-57,281,-21,-40,509,-129,-114,55,7,70,684,7,2,500,-107,-67,164,-28,-81,313,-38,-127,-118,7,-125,313,-18,-65,427,-56,15,-28,-35,-122,-190,-117,15,160,7,-55,618,-60,-123,-124,-50,-111,-229,7,-115,-219,-75,35,47,-10,45,727,7,-7,259,-91,-53,-422,7,-152,221,7,-20,-428,-46,-141,-130,-80,-133,-109,-67,-170,-188,-55,-169,-189,-50,-159,-189,-60,-152,-191,-71,-159,-190,-66,-190,-593,-45,-186,-593,-74,-164,-591,-47,-159,-593,-38,-175,-236,-56,-156,-238,-44,-181,-282,-55,-176,-282,-79,-178,-238,-62,-193,-283,-70,-201,-236,-56,-199,-283,-44,-198,-236,-46,-196,-283,-49,-174,-575,-58,-170,-574,-65,-178,-576,-61,-185,-576,-52,-183,-576,-41,-4,213,-48,-107,-230,-320,125,204,-345,265,-53,-167,26,35,-309,292,-105,-342,113,213,-132,-24,146,-337,255,93,-288,128,28,-238,63,138,-254,49,155,-271,32,127,-257,86,-66,-308,284,-75,-235,107,-73,-240,66,-97,-340,109,224,-348,371,-29,-354,374,-42,-441,496,283,-362,427,12,-468,494,293,-462,493,305,-368,245,88,-398,420,4,-462,496,259,-436,497,263,-422,465,210,-450,464,205,-411,497,156,-440,496,148,-397,457,107,-427,456,96,-388,465,65,-420,463,58,-447,654,214,-424,538,127,-411,504,70,-394,469,13,-487,701,353,-464,673,288,-143,-43,87,-277,74,38,146,-37,-17,37,-89,352,102,-117,129,72,-160,106,109,-98,-91,116,26,131,35,-106,238,48,33,550,94,-45,-128,89,-158,-103,150,-63,-8,32,-71,512,57,-114,191,29,15,725,33,-48,363,101,-2,183,75,-118,-135,48,6,670,41,-20,271,53,-92,-190,39,-17,557,64,-43,209,35,-71,428,70,-158,-121,52,45,608,47,-6,-90,44,-57,281,36,-40,509,145,-114,55,122,-67,164,43,-80,313,54,-127,-118,34,-65,427,70,17,-28,51,-122,-190,133,15,160,75,-127,-123,66,-111,-229,88,36,47,26,45,727,106,-53,-422,61,-145,-130,96,-140,-109,74,-160,-194,62,-158,-193,57,-148,-191,68,-142,-192,79,-149,-194,48,-169,-593,30,-169,-592,52,-145,-594,27,-145,-594,42,-157,-237,59,-136,-237,46,-163,-282,56,-157,-283,84,-157,-241,66,-172,-284,76,-180,-242,62,-178,-284,50,-179,-239,51,-178,-283,31,-156,-575,40,-150,-575,47,-157,-576,45,-165,-576,35,-164,-576,56,-4,213,63,-107,-230,324,143,206,303,292,-42,173,34,35,262,312,-92,347,134,215,147,-24,146,309,287,100,287,143,29,242,73,135,258,60,153,278,45,124,248,86,-68,263,303,-63,226,106,-75,233,66,-100,346,130,226,284,388,-24,290,395,-35,377,518,294,298,439,13,405,519,302,399,517,314,341,284,95,334,438,4,397,522,268,372,520,274,360,488,220,387,490,214,343,520,167,372,523,158,333,480,117,362,483,105,321,489,76,353,491,68,363,674,219,346,604,139,334,538,87,323,497,30,391,716,380,383,699,315,158,-43,87,280,89,38,27,-143,-798,-66,-141,-793,48,28,655,52,11,575,56,29,611,47,-15,613,51,10,610,52,19,625,47,16,594,53,24,580,42,19,611,-31,-15,613,-32,28,655,-37,11,575,-38,24,580,-27,19,611,-37,19,625,-36,10,610,-32,16,594,-41,29,611] }, + { "name": "storkFly_B_007", "vertices": [7,63,144,7,40,206,7,-111,-127,7,50,-19,-122,-27,-11,7,-93,275,-21,-63,351,-87,-96,129,7,-7,686,-57,-140,108,7,-12,426,7,-110,-59,-93,-85,-91,-97,49,129,-19,-81,238,7,-153,116,-32,56,554,7,-79,424,7,65,541,7,68,742,7,1,493,-78,-33,-130,-74,-137,-98,7,20,720,7,84,598,7,31,208,-123,-54,-1,-17,-46,510,-41,-91,191,-13,27,727,7,4,-114,7,22,961,-18,-22,362,7,76,49,7,-60,532,-86,19,180,-60,-108,-134,7,-5,362,7,-70,-196,-33,22,672,-25,5,269,-37,-82,-190,-24,4,558,-49,-20,207,-19,-45,427,-56,-140,-117,7,-93,350,-37,64,612,-32,5,-93,-29,-31,280,-21,-15,508,-129,-97,56,7,85,690,7,28,502,-107,-46,163,-28,-55,312,-38,-115,-117,7,-99,313,-18,-39,426,-51,35,-30,-35,-112,-188,-117,36,156,7,-36,616,-60,-110,-123,-50,-105,-228,7,-108,-218,-70,58,45,-10,57,731,7,18,256,-91,-63,-425,7,-128,223,7,-31,-434,-46,-129,-128,-80,-119,-107,-68,-162,-184,-56,-160,-184,-50,-150,-186,-60,-144,-188,-72,-151,-187,-69,-219,-585,-49,-215,-585,-78,-192,-586,-51,-188,-589,-39,-171,-231,-57,-151,-234,-46,-180,-277,-56,-176,-277,-81,-173,-232,-64,-193,-276,-72,-196,-229,-58,-198,-276,-46,-193,-229,-48,-196,-276,-53,-200,-569,-62,-196,-569,-68,-204,-569,-65,-211,-569,-55,-209,-569,-41,19,210,-48,-101,-228,-331,92,223,-402,219,-28,-158,37,43,-377,263,-74,-345,73,231,-132,-2,143,-405,205,119,-294,121,59,-227,58,153,-237,40,172,-246,18,146,-265,53,-54,-376,255,-45,-246,79,-60,-241,48,-83,-343,70,243,-457,309,-4,-463,310,-17,-624,354,300,-501,348,36,-647,338,307,-642,340,320,-426,183,110,-531,326,24,-642,346,274,-620,359,280,-589,341,228,-612,327,220,-593,378,175,-617,363,165,-559,352,126,-584,337,113,-552,366,85,-579,350,76,-704,493,235,-622,409,147,-592,389,90,-557,370,33,-768,506,372,-731,497,309,-143,-24,85,-270,47,56,138,-26,-11,37,-63,351,102,-96,129,72,-140,108,109,-85,-91,113,49,129,35,-82,238,48,56,554,94,-33,-130,89,-145,-100,140,-53,-1,32,-46,510,57,-91,191,29,27,727,33,-22,362,101,19,180,75,-108,-134,48,22,672,41,5,269,53,-82,-190,39,4,558,64,-20,207,35,-45,427,70,-146,-118,52,64,612,47,5,-93,44,-31,280,36,-15,508,145,-97,56,122,-46,163,43,-54,312,54,-115,-117,34,-39,426,67,35,-30,51,-112,-188,133,36,156,75,-116,-122,66,-105,-228,86,59,45,26,57,731,106,-63,-425,61,-134,-128,96,-127,-108,73,-156,-190,62,-154,-188,56,-144,-188,67,-137,-190,78,-145,-191,43,-199,-587,25,-199,-585,46,-174,-590,21,-175,-590,41,-158,-232,58,-137,-235,45,-167,-278,54,-160,-279,83,-157,-238,65,-176,-279,76,-181,-236,60,-182,-278,50,-180,-233,49,-182,-278,26,-184,-570,35,-178,-571,42,-185,-571,40,-193,-570,30,-192,-570,56,19,210,63,-101,-228,358,110,221,381,259,-23,175,40,42,346,297,-67,375,93,229,147,-2,143,407,250,117,308,134,59,247,64,148,257,46,168,269,26,142,266,51,-58,348,289,-38,248,76,-63,242,44,-86,374,91,240,412,352,-8,419,356,-21,600,412,290,454,391,24,625,398,295,621,400,308,432,233,107,486,373,9,617,406,262,594,417,270,563,398,219,586,386,209,560,436,167,584,424,155,525,409,120,550,397,105,515,424,80,543,410,68,660,556,213,602,508,137,552,459,88,515,431,33,722,572,370,700,564,306,158,-24,85,289,55,54,19,-194,-793,-69,-197,-789,48,44,658,52,33,578,56,49,615,47,4,614,51,29,612,52,38,628,47,36,597,53,45,583,42,38,614,-31,4,614,-32,44,658,-37,33,578,-38,45,583,-27,38,614,-37,38,628,-36,29,612,-32,36,597,-41,49,615] }, + { "name": "storkFly_B_008", "vertices": [7,132,131,7,111,194,7,-50,-135,7,114,-32,-112,28,-9,7,-20,266,-21,10,341,-87,-28,121,7,59,676,-57,-72,101,7,61,415,7,-47,-67,-93,-23,-100,-102,123,115,-19,-10,229,7,-85,109,-32,129,548,7,-5,414,7,139,535,7,132,736,7,77,483,-78,27,-140,-73,-74,-105,7,85,711,7,155,593,7,101,196,-109,4,3,-17,29,499,-41,-21,182,-13,91,719,7,66,-125,7,74,953,-18,51,351,7,142,35,7,14,520,-86,89,168,-60,-47,-142,7,68,351,7,-11,-206,-33,89,664,-25,77,258,-37,-22,-200,-24,77,549,-49,50,196,-19,29,417,-56,-78,-124,7,-19,341,-37,134,606,-32,67,-105,-29,40,270,-21,60,498,-129,-30,47,7,151,685,7,104,494,-107,23,153,-28,17,302,-38,-54,-125,7,-25,303,-18,34,416,-53,101,-41,-35,-52,-195,-117,106,144,7,33,605,-60,-48,-132,-50,-49,-235,7,-50,-226,-76,130,31,-10,121,724,7,90,244,-91,-29,-436,7,-57,215,7,2,-448,-46,-67,-136,-80,-56,-115,-69,-102,-190,-57,-100,-190,-51,-91,-193,-61,-84,-195,-73,-91,-193,-72,-189,-584,-52,-185,-585,-81,-163,-589,-54,-159,-592,-41,-112,-237,-59,-93,-241,-48,-125,-281,-58,-120,-281,-82,-115,-237,-66,-137,-279,-73,-138,-232,-60,-143,-278,-47,-134,-233,-50,-140,-279,-56,-168,-571,-66,-165,-571,-72,-172,-570,-68,-180,-569,-59,-177,-569,-41,90,198,-48,-45,-236,-344,27,238,-459,-14,-15,-169,69,41,-469,22,-71,-343,10,251,-132,65,132,-465,3,132,-322,14,82,-243,68,155,-241,58,180,-232,25,167,-264,-19,-33,-465,24,-40,-259,-8,-42,-240,-13,-63,-339,6,265,-564,10,-5,-567,4,-18,-743,-24,295,-626,13,30,-747,-50,306,-746,-43,318,-463,-28,129,-629,-24,24,-744,-47,272,-741,-21,274,-701,-20,224,-705,-47,221,-725,-9,165,-729,-38,160,-678,-9,121,-682,-39,113,-680,-3,78,-684,-35,74,-891,-9,207,-765,-18,134,-723,-17,80,-680,-13,27,-959,-24,343,-920,-14,280,-143,42,74,-264,-1,79,127,25,-9,37,10,341,102,-28,121,72,-72,101,109,-23,-100,117,122,116,35,-10,229,48,129,548,94,27,-140,89,-83,-107,124,1,4,32,29,499,57,-21,182,29,91,719,33,51,351,101,89,168,75,-47,-142,48,89,664,41,77,257,53,-22,-200,39,77,549,64,50,196,35,29,417,71,-85,-125,52,134,606,47,67,-105,44,40,270,36,60,498,145,-30,47,122,23,153,43,18,302,54,-54,-125,34,34,416,67,99,-40,51,-52,-195,133,106,144,75,-54,-130,66,-49,-235,91,128,32,26,121,724,106,-29,-436,61,-73,-135,96,-65,-116,73,-102,-194,62,-100,-193,56,-90,-193,66,-83,-196,77,-91,-197,40,-178,-586,21,-178,-585,42,-154,-592,18,-155,-592,41,-108,-236,57,-87,-241,44,-121,-281,54,-114,-283,82,-107,-242,64,-129,-282,76,-131,-238,60,-136,-281,50,-130,-235,49,-135,-280,23,-162,-571,31,-156,-572,39,-163,-572,37,-171,-570,27,-170,-570,56,90,198,63,-45,-236,379,25,229,466,29,-31,183,64,40,463,70,-85,380,7,242,147,65,132,497,34,108,339,19,75,260,59,150,259,50,174,252,16,162,259,-22,-39,462,69,-55,252,-10,-47,234,-16,-67,379,3,255,556,70,-38,562,65,-51,773,31,243,617,70,-14,781,5,252,781,11,265,500,1,104,624,33,-21,775,9,218,770,35,223,725,36,177,731,9,172,742,53,118,748,24,110,692,51,77,697,22,67,689,60,35,696,29,28,904,66,135,817,63,71,740,58,35,687,56,-11,983,61,284,952,60,224,158,42,74,280,-6,74,14,-193,-792,-71,-197,-789,48,112,651,52,105,570,56,119,608,47,74,604,51,100,604,52,107,620,47,107,589,53,117,576,42,108,607,-31,74,604,-32,112,651,-37,105,570,-38,117,576,-27,108,607,-37,107,620,-36,100,604,-32,107,589,-41,119,608] }, + { "name": "storkFly_B_009", "vertices": [7,192,116,7,172,179,7,7,-148,7,173,-47,-112,87,-24,7,40,252,-21,72,327,-87,32,107,7,126,662,-57,-12,88,7,125,401,7,11,-80,-93,34,-113,-106,185,97,-19,51,215,7,-24,96,-32,194,533,7,58,401,7,204,520,7,199,721,7,142,469,-78,85,-154,-73,-15,-118,7,152,697,7,221,578,7,162,182,-107,65,-9,-17,94,485,-41,39,169,-13,158,705,7,124,-139,7,143,938,-18,114,337,7,202,20,7,79,506,-86,150,154,-60,11,-155,7,131,337,7,46,-221,-33,155,650,-25,139,243,-37,35,-213,-24,143,534,-49,111,182,-19,92,403,-56,-19,-137,7,42,327,-37,200,591,-32,125,-119,-29,102,256,-21,125,483,-129,29,34,7,218,670,7,169,479,-107,84,139,-28,79,288,-38,4,-138,7,36,290,-18,98,402,-56,160,-58,-35,5,-207,-117,166,129,7,99,591,-60,10,-144,-50,5,-246,7,6,-238,-81,190,12,-10,188,710,7,151,230,-91,6,-448,7,4,202,7,36,-464,-46,-8,-149,-80,1,-128,-69,-42,-203,-58,-41,-204,-52,-31,-206,-62,-24,-208,-74,-32,-206,-75,-139,-593,-55,-135,-595,-84,-114,-600,-57,-109,-604,-42,-51,-250,-61,-32,-254,-49,-64,-294,-60,-60,-294,-84,-54,-249,-67,-76,-291,-75,-77,-245,-62,-82,-290,-49,-73,-245,-51,-79,-291,-59,-117,-582,-69,-114,-582,-75,-122,-581,-71,-129,-579,-62,-126,-580,-41,151,183,-48,9,-248,-319,43,234,-418,-92,3,-177,117,23,-446,-71,-54,-311,32,249,-132,126,118,-422,-58,147,-299,0,81,-246,110,139,-241,106,165,-223,73,156,-253,-3,-30,-441,-64,-25,-253,-1,-41,-232,3,-63,-303,28,263,-524,-109,22,-525,-118,10,-657,-177,340,-580,-126,64,-649,-202,353,-652,-194,364,-407,-87,148,-567,-160,62,-650,-201,319,-657,-176,319,-624,-162,267,-616,-189,265,-653,-166,209,-645,-195,206,-612,-150,162,-604,-181,155,-618,-149,118,-609,-181,116,-802,-229,263,-687,-192,181,-652,-179,124,-617,-163,68,-853,-259,404,-824,-240,338,-143,102,60,-251,24,77,125,84,-23,37,72,327,102,32,107,72,-12,88,109,34,-113,120,184,98,35,50,216,48,194,533,94,85,-154,89,-24,-119,121,62,-8,32,94,485,57,39,169,29,158,705,33,114,337,101,150,154,75,11,-155,48,155,650,41,139,243,53,35,-213,39,143,534,64,111,182,35,92,403,71,-27,-137,52,200,591,47,125,-119,44,102,256,36,125,483,145,29,34,122,84,139,43,80,288,54,4,-138,34,98,402,70,159,-57,51,5,-207,133,166,129,75,2,-144,66,5,-246,95,188,13,26,188,710,106,6,-448,61,-15,-148,96,-6,-129,74,-49,-204,62,-47,-203,56,-37,-204,66,-31,-207,78,-38,-207,40,-146,-592,22,-146,-590,42,-122,-599,18,-124,-598,41,-58,-246,57,-37,-252,45,-72,-290,54,-65,-292,83,-57,-252,65,-80,-291,77,-80,-246,61,-87,-289,51,-80,-243,50,-86,-288,23,-129,-577,31,-124,-579,39,-130,-579,37,-138,-576,28,-138,-576,56,151,183,63,9,-248,350,35,228,440,-55,-18,188,111,23,457,-27,-78,345,22,243,147,126,118,464,-41,121,315,2,73,259,99,135,255,96,161,238,61,152,246,-4,-37,454,-22,-48,243,-1,-48,223,4,-69,339,17,257,539,-56,-21,543,-64,-32,711,-143,280,594,-76,9,706,-169,292,709,-162,303,454,-72,122,584,-111,7,703,-166,258,709,-140,259,671,-125,211,664,-152,209,694,-123,151,687,-152,147,648,-107,109,640,-137,101,650,-102,65,642,-134,62,845,-180,176,766,-152,109,695,-127,69,647,-111,19,912,-202,329,884,-196,268,158,102,60,264,17,73,14,-172,-796,-73,-162,-797,48,178,636,52,170,555,56,185,593,47,140,590,51,166,590,52,173,606,47,173,574,53,183,561,42,174,592,-31,140,590,-32,178,636,-37,170,555,-38,183,561,-27,174,592,-37,173,606,-36,166,590,-32,173,574,-41,185,593] }, + { "name": "storkFly_B_010", "vertices": [7,225,111,7,204,174,7,43,-156,7,208,-52,-117,131,-35,7,71,246,-21,103,321,-87,65,100,7,159,655,-57,20,80,7,156,395,7,46,-88,-93,70,-120,-108,221,92,-19,82,209,7,8,88,-32,226,526,7,89,395,7,236,513,7,233,713,7,173,462,-78,121,-160,-73,18,-126,7,185,690,7,253,570,7,194,176,-110,109,-21,-17,125,479,-41,71,162,-13,192,698,7,160,-145,7,180,932,-18,145,331,7,236,15,7,110,500,-86,183,148,-60,47,-163,7,162,330,7,83,-229,-33,188,643,-25,170,237,-37,72,-221,-24,175,528,-49,143,176,-19,123,397,-55,15,-146,7,74,321,-37,233,584,-32,161,-125,-29,133,249,-21,156,477,-129,63,27,7,251,662,7,200,472,-107,116,132,-28,110,282,-38,40,-146,7,67,283,-18,129,395,-59,200,-65,-35,43,-213,-117,199,124,7,131,585,-60,46,-151,-50,41,-252,7,42,-244,-86,229,6,-10,222,702,7,183,224,-91,26,-454,7,35,195,7,55,-472,-46,27,-157,-80,36,-135,-70,-3,-213,-58,-2,-214,-53,7,-215,-63,14,-217,-74,7,-215,-77,-85,-605,-57,-81,-606,-87,-60,-612,-60,-55,-615,-43,-7,-260,-62,11,-263,-51,-17,-304,-62,-13,-304,-85,-11,-259,-69,-30,-301,-75,-33,-256,-63,-35,-301,-49,-30,-256,-52,-33,-302,-62,-63,-593,-71,-60,-594,-77,-68,-592,-73,-75,-591,-64,-72,-591,-41,183,178,-48,44,-254,-323,88,225,-382,-96,-5,-187,164,13,-410,-93,-66,-311,78,242,-132,159,112,-403,-49,132,-298,33,61,-252,151,133,-244,145,159,-224,118,146,-258,43,-44,-409,-81,-38,-260,45,-55,-237,51,-79,-306,79,253,-478,-143,12,-477,-152,2,-593,-229,334,-530,-170,54,-576,-248,349,-582,-241,360,-381,-72,137,-508,-196,58,-576,-249,314,-594,-230,313,-568,-205,261,-549,-226,261,-590,-224,203,-571,-247,202,-559,-195,155,-538,-219,151,-564,-198,112,-542,-223,112,-700,-343,260,-609,-263,176,-582,-240,119,-555,-213,62,-737,-384,402,-717,-358,335,-143,136,54,-252,67,65,129,128,-34,37,103,321,102,65,100,72,20,80,109,70,-120,122,219,92,35,82,209,48,226,526,94,121,-160,89,11,-127,123,105,-20,32,125,479,57,71,162,29,192,698,33,145,331,101,183,148,75,47,-163,48,188,643,41,170,237,53,72,-221,39,175,528,64,143,176,35,123,397,71,8,-145,52,233,584,47,161,-125,44,133,249,36,156,477,145,63,27,122,116,132,43,111,282,54,40,-146,34,129,395,73,199,-64,51,43,-213,133,199,124,75,38,-152,66,41,-252,99,227,7,26,222,702,106,26,-454,61,19,-156,96,29,-136,74,-14,-211,63,-13,-210,57,-3,-212,67,3,-215,78,-4,-215,44,-111,-599,26,-112,-597,46,-88,-605,22,-89,-605,42,-23,-253,58,-2,-260,46,-36,-298,56,-29,-300,84,-22,-259,67,-44,-298,78,-45,-253,63,-50,-296,52,-45,-250,52,-50,-295,27,-95,-584,35,-90,-586,43,-96,-585,41,-104,-583,31,-104,-583,56,183,178,63,44,-254,345,75,221,419,-67,-22,197,157,14,442,-55,-85,336,63,238,147,159,112,446,-42,115,314,32,56,263,139,130,255,133,155,236,104,143,252,43,-50,441,-45,-56,252,46,-61,230,52,-84,331,62,250,514,-96,-22,515,-106,-31,647,-204,292,562,-126,12,632,-225,306,637,-219,317,428,-69,119,542,-153,14,631,-224,271,647,-203,271,617,-177,221,600,-199,220,639,-190,162,621,-213,159,604,-160,117,585,-185,111,607,-160,73,587,-186,72,753,-301,195,693,-249,124,638,-200,79,601,-170,28,806,-337,352,783,-325,289,158,136,54,264,58,63,19,-134,-804,-76,-104,-809,48,211,629,52,202,548,56,217,586,47,172,583,51,198,583,52,206,599,47,205,567,53,215,554,42,207,585,-31,172,583,-32,211,629,-37,202,548,-38,215,554,-27,207,585,-37,206,599,-36,198,583,-32,205,567,-41,217,586] }, + { "name": "storkFly_B_011", "vertices": [7,239,111,7,216,173,7,63,-159,7,225,-52,-117,156,-40,7,83,243,-21,114,318,-87,79,97,7,170,653,-57,35,76,7,166,393,7,65,-91,-93,89,-124,-109,237,92,-19,94,205,7,22,83,-32,236,523,7,99,392,7,245,509,7,245,710,7,182,460,-78,141,-162,-73,34,-131,7,197,687,7,263,567,7,207,175,-110,132,-27,-17,134,477,-41,84,159,-13,204,695,7,180,-147,7,195,929,-18,156,329,7,252,16,7,120,499,-86,196,147,-60,67,-167,7,172,329,7,105,-232,-33,200,640,-25,181,236,-37,94,-224,-24,184,525,-49,156,174,-19,133,394,-55,33,-151,7,84,318,-37,243,581,-32,180,-126,-29,144,247,-21,165,475,-129,78,23,7,263,659,7,209,470,-107,130,130,-28,121,279,-38,59,-150,7,78,281,-18,139,393,-60,222,-66,-35,64,-217,-117,213,123,7,142,583,-60,63,-154,-50,62,-255,7,64,-248,-87,249,6,-10,234,699,7,194,223,-91,42,-456,7,48,191,7,70,-475,-46,45,-162,-80,52,-138,-70,18,-220,-59,20,-221,-53,30,-222,-64,37,-222,-75,29,-221,-80,-29,-616,-60,-24,-617,-90,-3,-620,-64,1,-624,-44,21,-267,-63,40,-268,-52,16,-311,-63,20,-311,-86,17,-266,-70,3,-309,-76,-5,-265,-64,-1,-309,-50,-1,-265,-53,1,-310,-65,-8,-603,-74,-4,-603,-80,-13,-602,-76,-20,-601,-67,-17,-602,-41,195,177,-48,65,-257,-350,114,201,-345,-83,-36,-189,192,8,-358,-91,-101,-337,104,222,-132,173,110,-401,-36,90,-301,62,34,-260,173,123,-250,164,149,-232,142,135,-257,77,-62,-365,-78,-75,-257,81,-73,-233,86,-95,-339,109,231,-431,-149,-32,-426,-158,-41,-566,-262,272,-484,-184,1,-546,-272,290,-555,-268,299,-377,-54,101,-461,-202,9,-541,-273,255,-564,-262,251,-543,-228,201,-518,-241,205,-549,-254,142,-522,-267,144,-526,-214,97,-497,-228,96,-523,-219,54,-494,-233,57,-611,-406,189,-548,-297,115,-524,-264,61,-503,-228,7,-646,-461,327,-630,-428,263,-143,151,52,-254,96,49,130,151,-39,37,114,318,102,79,97,72,35,76,109,89,-124,123,235,92,35,94,206,48,236,523,94,141,-162,89,30,-131,124,128,-26,32,134,477,57,84,159,29,204,695,33,156,329,101,196,147,75,67,-167,48,200,640,41,181,236,53,94,-224,39,184,525,64,156,174,35,133,394,71,27,-150,52,243,581,47,180,-126,44,144,247,36,165,475,145,78,23,122,130,130,43,122,280,54,59,-150,34,139,393,74,220,-65,51,64,-217,133,213,123,75,57,-155,66,62,-255,100,247,7,26,234,699,106,42,-456,61,39,-160,96,47,-140,75,6,-217,63,7,-216,57,17,-217,67,24,-220,79,17,-220,49,-69,-609,31,-69,-608,51,-44,-613,27,-46,-614,43,1,-260,59,23,-266,48,-6,-305,57,0,-306,85,3,-265,68,-14,-305,79,-20,-260,64,-21,-303,53,-19,-257,53,-20,-303,31,-54,-593,40,-48,-594,48,-55,-595,46,-63,-593,36,-62,-593,56,195,177,63,65,-257,368,105,197,384,-69,-50,199,184,8,394,-71,-116,356,94,218,147,173,110,440,-35,75,314,56,29,270,162,119,261,153,145,242,129,132,251,77,-67,400,-58,-89,250,81,-79,227,86,-99,358,98,227,469,-118,-60,467,-129,-68,614,-234,243,516,-152,-30,595,-247,260,604,-242,270,419,-57,87,495,-171,-21,589,-247,226,612,-234,222,588,-201,173,564,-215,177,594,-225,114,568,-240,116,567,-186,70,539,-201,69,564,-190,26,535,-206,30,661,-370,146,615,-302,76,577,-239,34,547,-199,-15,718,-415,298,692,-399,238,158,151,52,265,86,47,26,-72,-816,-81,-29,-821,48,223,626,52,212,545,56,228,583,47,183,581,51,209,580,52,217,596,47,216,564,53,225,551,42,217,582,-31,183,581,-32,223,626,-37,212,545,-38,225,551,-27,217,582,-37,217,596,-36,209,580,-32,216,564,-41,228,583] }, + { "name": "storkFly_B_012", "vertices": [7,226,111,7,204,173,7,51,-159,7,213,-52,-115,142,-42,7,70,243,-21,102,319,-87,67,97,7,168,652,-57,22,75,7,155,393,7,52,-91,-93,77,-124,-105,224,93,-19,81,205,7,10,83,-32,228,519,7,88,393,7,237,505,7,245,706,7,171,459,-78,129,-162,-73,18,-132,7,196,685,7,257,562,7,194,176,-111,117,-29,-17,124,478,-41,72,159,-13,204,693,7,168,-146,7,205,927,-18,144,329,7,240,16,7,111,499,-86,183,147,-60,55,-167,7,160,328,7,93,-232,-33,197,638,-25,169,236,-37,82,-224,-24,177,524,-49,143,174,-19,122,394,-55,18,-152,7,72,319,-37,238,577,-32,168,-126,-29,132,247,-21,155,474,-129,66,23,7,260,654,7,199,467,-107,117,130,-28,109,279,-38,47,-150,7,65,281,-18,128,393,-56,208,-65,-35,52,-217,-117,200,123,7,136,583,-60,48,-154,-50,51,-256,7,52,-248,-80,236,8,-10,233,696,7,182,223,-91,41,-458,7,35,191,7,70,-475,-46,31,-162,-80,36,-138,-70,7,-222,-58,9,-223,-53,19,-223,-64,26,-223,-75,18,-223,-81,-4,-621,-61,0,-621,-91,21,-622,-64,27,-625,-44,16,-269,-63,35,-268,-52,17,-312,-63,21,-312,-86,12,-268,-69,4,-312,-76,-10,-268,-64,0,-312,-50,-6,-268,-53,2,-312,-65,15,-605,-74,18,-604,-80,10,-605,-76,3,-604,-67,5,-605,-41,183,177,-48,54,-257,-371,143,173,-378,-29,-85,-180,191,1,-384,-27,-151,-361,129,194,-132,160,111,-439,15,40,-317,97,5,-260,185,109,-254,171,134,-241,148,119,-266,103,-84,-392,-15,-125,-262,113,-96,-238,107,-113,-364,132,203,-474,-77,-97,-470,-85,-107,-662,-190,177,-536,-103,-73,-646,-206,195,-655,-202,204,-420,-7,51,-519,-126,-65,-637,-205,161,-658,-188,157,-626,-155,113,-604,-172,117,-630,-173,51,-606,-191,54,-594,-134,14,-569,-153,14,-588,-135,-29,-562,-155,-24,-723,-315,74,-633,-213,19,-598,-179,-27,-564,-143,-75,-782,-375,201,-754,-339,142,-143,139,52,-266,116,27,129,139,-42,37,102,319,102,67,97,72,22,75,109,77,-124,119,222,93,35,81,206,48,228,519,94,129,-162,89,16,-132,125,113,-29,32,124,478,57,72,159,29,204,693,33,144,329,101,183,147,75,55,-167,48,197,638,41,169,236,53,82,-224,39,177,524,64,143,174,35,122,394,71,14,-150,52,238,577,47,168,-126,44,132,247,36,155,474,145,66,23,122,117,130,43,110,280,54,47,-150,34,128,393,70,206,-65,51,52,-217,133,200,123,75,45,-155,66,51,-256,94,234,8,26,233,696,106,41,-458,61,26,-161,96,34,-140,76,-3,-219,64,-1,-219,58,8,-219,68,15,-221,80,7,-222,54,-52,-615,36,-52,-614,57,-27,-617,33,-28,-618,45,-2,-263,61,19,-267,49,-5,-307,59,0,-308,86,0,-267,70,-14,-307,80,-24,-264,66,-20,-307,53,-23,-261,55,-20,-306,37,-38,-598,46,-32,-599,53,-39,-599,51,-47,-599,41,-46,-598,56,183,177,63,54,-257,391,142,167,408,-13,-96,192,185,0,409,-9,-163,383,127,188,147,160,111,473,23,24,329,94,0,271,177,104,267,163,129,254,138,115,261,101,-89,417,2,-136,255,112,-101,232,104,-117,386,131,196,497,-46,-120,496,-57,-129,697,-153,154,554,-73,-98,682,-169,173,691,-164,181,458,-2,36,537,-95,-89,672,-168,139,692,-152,134,657,-120,91,636,-138,96,659,-139,29,637,-158,33,621,-103,-7,596,-123,-6,613,-104,-50,588,-126,-44,751,-273,42,688,-210,-15,635,-151,-48,594,-114,-91,834,-317,183,798,-302,127,158,139,52,279,109,24,35,-39,-822,-83,18,-825,48,219,623,52,205,543,56,222,580,47,177,580,51,203,577,52,212,593,47,209,562,53,218,548,42,212,579,-31,177,580,-32,219,623,-37,205,543,-38,218,548,-27,212,579,-37,212,593,-36,203,577,-32,209,562,-41,222,580] }, + { "name": "storkFly_B_013", "vertices": [7,200,111,7,177,173,7,24,-159,7,187,-52,-119,113,-45,7,44,244,-21,77,319,-87,40,97,7,156,650,-57,-3,76,7,132,392,7,26,-91,-93,50,-124,-101,195,93,-19,55,205,7,-16,83,-32,208,514,7,65,393,7,217,500,7,235,700,7,149,457,-78,102,-162,-73,-11,-133,7,186,682,7,240,555,7,168,175,-117,87,-32,-17,103,478,-41,45,159,-13,193,689,7,141,-147,7,206,923,-18,119,328,7,213,16,7,91,500,-86,157,147,-60,28,-167,7,136,327,7,66,-230,-33,184,635,-25,142,235,-37,54,-224,-24,158,522,-49,117,174,-19,99,394,-55,-10,-152,7,48,320,-37,221,571,-32,142,-126,-29,106,247,-21,134,474,-129,40,23,7,248,647,7,177,464,-107,91,130,-28,83,280,-38,20,-150,7,40,282,-18,105,393,-53,178,-65,-35,24,-219,-117,174,123,7,121,583,-60,19,-153,-50,26,-258,7,26,-249,-75,206,8,-10,223,690,7,155,222,-91,37,-460,7,8,191,7,68,-474,-46,2,-162,-80,6,-139,-69,-18,-224,-57,-16,-224,-52,-6,-223,-63,0,-223,-74,-7,-224,-76,0,-622,-56,4,-622,-86,26,-620,-59,32,-623,-43,-5,-269,-62,13,-268,-50,0,-312,-61,4,-311,-84,-9,-269,-67,-12,-312,-74,-32,-270,-62,-17,-313,-48,-28,-270,-51,-14,-313,-60,17,-604,-69,20,-603,-75,12,-604,-71,5,-605,-62,8,-605,-41,156,177,-48,30,-259,-373,184,165,-413,39,-109,-174,176,-1,-414,47,-175,-369,166,184,-132,134,110,-468,90,17,-325,136,-4,-251,192,105,-251,174,129,-246,150,112,-281,126,-94,-420,58,-147,-271,142,-106,-251,121,-122,-372,170,193,-518,21,-129,-515,12,-140,-747,-54,126,-586,12,-110,-736,-75,143,-745,-69,152,-456,62,27,-577,-14,-103,-726,-74,110,-741,-52,106,-699,-26,67,-682,-48,70,-703,-37,4,-685,-61,5,-657,-7,-28,-637,-32,-29,-648,-5,-71,-629,-32,-67,-832,-149,10,-715,-72,-31,-670,-45,-74,-625,-17,-116,-913,-200,129,-873,-170,75,-143,112,52,-278,136,18,134,111,-45,37,77,319,102,40,97,72,-3,76,109,50,-124,116,194,93,35,55,206,48,208,514,94,102,-162,89,-11,-132,132,85,-32,32,103,478,57,45,159,29,193,689,33,119,328,101,157,147,75,28,-167,48,184,635,41,142,235,53,54,-224,39,158,522,64,117,174,35,99,394,70,-12,-151,52,221,571,47,142,-126,44,106,247,36,134,474,145,40,23,122,91,130,43,84,280,54,20,-150,34,105,393,68,177,-65,51,24,-219,133,174,123,75,18,-154,66,26,-258,90,204,8,26,223,690,106,37,-460,61,0,-161,96,6,-140,76,-25,-222,64,-24,-221,59,-13,-221,69,-7,-222,81,-14,-223,61,-44,-619,43,-44,-619,64,-19,-619,40,-20,-620,46,-19,-265,63,1,-267,52,-17,-309,61,-11,-309,88,-18,-268,72,-26,-309,81,-42,-267,67,-33,-309,54,-41,-264,56,-32,-309,44,-31,-601,52,-26,-601,60,-32,-602,57,-40,-602,48,-40,-602,56,156,177,63,30,-259,390,188,161,436,62,-115,187,172,-1,433,71,-181,388,169,181,147,134,110,496,105,5,337,138,-7,264,188,101,265,170,125,260,145,108,277,123,-98,439,83,-154,266,139,-109,246,118,-125,390,173,190,530,55,-144,531,45,-154,762,-17,114,592,42,-127,753,-38,132,761,-32,140,488,75,16,582,17,-119,741,-37,99,756,-16,94,713,8,55,697,-14,59,717,-4,-7,700,-28,-5,670,24,-40,650,0,-40,661,24,-83,642,-2,-79,840,-111,-8,760,-61,-59,693,-14,-86,642,13,-124,936,-145,125,895,-134,72,158,112,52,292,133,15,45,-12,-824,-78,43,-822,48,205,619,52,187,539,56,206,575,47,161,577,51,187,574,52,196,589,47,192,558,53,200,543,42,196,575,-31,161,577,-32,205,619,-37,187,539,-38,200,543,-27,196,575,-37,196,589,-36,187,574,-32,192,558,-41,206,575] } + ], + + "morphColors": [ + { "name": "stork_colorMap", "colors": [0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.010,0.000,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.030,0.040,0.050,0.030,0.040,0.050,0.030,0.040,0.050,0.810,0.750,0.750,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.850,0.350,0.150,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.010,0.000,0.050,0.010,0.000,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.010,0.000,0.050,0.810,0.750,0.750,0.010,0.000,0.050,0.010,0.000,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.010,0.000,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,0.010,0.000,0.050,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750,0.810,0.750,0.750] } + ], + + "normals": [], + + "colors": [], + + "uvs": [[0.491029,0.397292,0.460780,0.345547,0.492206,0.346869,0.513205,0.366790,0.974633,0.861964,0.967919,0.886500,0.926208,0.884392,0.923128,0.822731,0.379789,0.550301,0.361380,0.530215,0.393524,0.491377,0.642090,0.808686,0.678787,0.830538,0.706256,0.872820,0.654733,0.868257,0.405596,0.514803,0.401226,0.457470,0.890657,0.865590,0.819363,0.835755,0.435629,0.473494,0.414137,0.418273,0.717196,0.920102,0.627139,0.899235,0.723649,0.909818,0.665075,0.775378,0.640107,0.775621,0.615645,0.860017,0.581751,0.817514,0.592416,0.787245,0.603164,0.776672,0.641433,0.765926,0.515660,0.799679,0.517541,0.785997,0.581690,0.869293,0.548346,0.870048,0.553064,0.833365,0.457495,0.839560,0.380487,0.817625,0.396316,0.802512,0.459160,0.811129,0.920271,0.887383,0.863667,0.885845,0.917002,0.893457,0.912104,0.890556,0.903012,0.902104,0.896243,0.916866,0.767618,0.873739,0.912667,0.918699,0.460629,0.806369,0.393092,0.775959,0.402965,0.759661,0.463709,0.784420,0.922360,0.908785,0.335869,0.732939,0.343891,0.721838,0.384768,0.740057,0.456547,0.444722,0.516702,0.859802,0.519957,0.835144,0.290271,0.732869,0.293828,0.722451,0.221387,0.746815,0.347062,0.774178,0.252274,0.791846,0.207653,0.802503,0.196512,0.780294,0.643269,0.758189,0.743696,0.813074,0.828719,0.813152,0.360307,0.491121,0.024890,0.870378,0.249839,0.818311,0.215550,0.805902,0.185019,0.774126,0.993717,0.887374,0.301534,0.065927,0.395386,0.140998,0.397535,0.139592,0.324419,0.079171,0.405030,0.128142,0.344995,0.070876,0.409642,0.120788,0.346999,0.044974,0.403580,0.128864,0.320942,0.048648,0.453000,0.162430,0.502410,0.190408,0.507147,0.183268,0.468391,0.138901,0.496095,0.199886,0.453328,0.161352,0.491179,0.207246,0.435955,0.187887,0.491537,0.206806,0.436663,0.186956,0.822919,0.413358,0.827039,0.407171,0.822576,0.414829,0.816261,0.423173,0.816566,0.422783,0.855610,0.407298,0.825209,0.447259,0.312556,0.822855,0.433332,0.367387,0.824952,0.447569,0.857798,0.410789,0.437057,0.346910,0.346842,0.537644,0.366414,0.525375,0.299111,0.661271,0.376500,0.554823,0.347091,0.539613,0.260062,0.616281,0.427576,0.345286,0.291707,0.325536,0.230573,0.261817,0.336039,0.233353,0.322306,0.333420,0.371848,0.302046,0.342691,0.224084,0.234230,0.256422,0.368671,0.304068,0.364503,0.382067,0.376809,0.293254,0.403616,0.367502,0.279719,0.392597,0.185841,0.348300,0.176432,0.361098,0.283360,0.408381,0.345691,0.219945,0.377869,0.421981,0.280279,0.385033,0.199360,0.329423,0.140080,0.306490,0.144404,0.302443,0.130107,0.148060,0.120437,0.112637,0.124596,0.101411,0.120285,0.269917,0.130284,0.085900,0.128509,0.090694,0.118158,0.206959,0.107659,0.226879,0.122006,0.264691,0.103973,0.171234,0.025494,0.110758,0.103223,0.173620,0.131210,0.144795,0.076450,0.178755,0.117916,0.208045,0.086127,0.216536,0.106489,0.230527,0.096394,0.254774,0.121625,0.109206,0.021786,0.022503,0.026961,0.065536,0.538631,0.380622,0.549582,0.410108,0.431604,0.519062,0.404573,0.561617,0.461483,0.501277,0.494787,0.476907,0.442092,0.550581,0.684908,0.761541,0.695299,0.794724,0.555602,0.433094,0.537271,0.442953,0.401990,0.577737,0.407624,0.555336,0.400040,0.578108,0.353952,0.684541,0.560071,0.441612,0.620762,0.564767,0.696311,0.494555,0.704991,0.608151,0.603826,0.538090,0.708995,0.603008,0.703076,0.485368,0.617315,0.482215,0.616372,0.485861,0.544536,0.512955,0.624149,0.474785,0.546327,0.471257,0.551809,0.592068,0.974633,0.861964,0.923129,0.822731,0.926208,0.884392,0.967919,0.886500,0.631833,0.672315,0.622560,0.685212,0.535671,0.593472,0.642091,0.808686,0.654733,0.868257,0.706256,0.872820,0.678788,0.830538,0.706088,0.481238,0.558831,0.589202,0.819364,0.835755,0.890657,0.865590,0.502446,0.512551,0.645620,0.653633,0.912104,0.890556,0.723649,0.909818,0.665075,0.775378,0.640107,0.775621,0.592417,0.787245,0.581752,0.817514,0.615645,0.860017,0.515660,0.799679,0.553064,0.833365,0.459160,0.811129,0.396316,0.802512,0.917003,0.893457,0.903013,0.902104,0.767619,0.873739,0.896244,0.916866,0.912668,0.918699,0.460629,0.806369,0.393092,0.775959,0.922360,0.908785,0.335869,0.732939,0.519958,0.835144,0.290272,0.732869,0.252275,0.791846,0.347062,0.774178,0.196513,0.780294,0.207654,0.802503,0.828720,0.813152,0.743697,0.813074,0.695300,0.794724,0.684908,0.761541,0.301534,0.065927,0.324420,0.079171,0.956024,0.723714,0.992303,0.711033,0.875911,0.652120,0.749604,0.724851,0.790639,0.725178,0.767275,0.708541,0.838723,0.738260,0.784666,0.690268,0.838826,0.655265,0.901260,0.743739,0.822324,0.692199,0.823023,0.689502,0.768885,0.704894,0.721581,0.703107,0.784229,0.688413,0.681865,0.697038,0.680884,0.702879,0.895489,0.636556,0.837335,0.658517,0.891169,0.639488,0.718707,0.707843,0.883432,0.647755,0.397535,0.139592,0.395386,0.140999,0.344995,0.070876,0.405031,0.128142,0.347000,0.044974,0.409643,0.120789,0.320943,0.048649,0.403581,0.128865,0.453001,0.162430,0.468391,0.138901,0.507147,0.183268,0.502410,0.190408,0.453329,0.161353,0.496096,0.199887,0.435956,0.187887,0.491180,0.207247,0.436664,0.186957,0.491538,0.206806,0.827039,0.407171,0.822920,0.413358,0.822577,0.414830,0.816262,0.423173,0.816567,0.422784,0.827274,0.444925,0.853904,0.409921,0.827048,0.445197,0.855821,0.412979,0.919160,0.477087,0.915443,0.474702,0.874220,0.655442,0.268782,0.766223,0.324032,0.757426,0.294948,0.762057,0.293329,0.784193,0.296407,0.761825,0.282160,0.764093,0.307995,0.759980,0.306094,0.744378,0.295625,0.761949,0.299668,0.783012,0.268680,0.766382,0.320942,0.755179,0.305607,0.744024,0.297485,0.760207,0.289405,0.761939,0.297943,0.764999,0.307022,0.758163,0.294481,0.748824]], + + "faces": [10,35,98,0,0,1,2,0,10,0,98,1,0,0,2,3,10,60,36,41,0,5,6,4,10,41,36,21,0,4,6,7,10,38,41,30,0,8,9,15,10,30,41,48,0,15,9,10,10,43,54,28,0,11,12,14,10,28,54,7,0,14,12,13,10,59,3,48,0,16,19,10,10,48,3,30,0,10,19,15,10,36,12,21,0,6,17,7,10,21,12,26,0,7,17,18,10,59,66,3,0,16,20,19,10,3,66,33,0,19,20,56,10,15,70,9,0,21,22,23,10,59,48,21,0,16,10,69,10,21,48,41,0,69,10,9,10,54,43,35,0,12,11,24,10,35,43,98,0,24,11,25,10,49,28,14,0,27,14,26,10,49,40,43,0,27,28,11,10,68,25,40,0,29,30,28,10,40,25,43,0,28,30,11,10,32,37,40,0,31,32,28,10,40,37,68,0,28,32,29,10,57,55,5,0,34,35,33,10,5,55,49,0,33,35,27,10,34,27,17,0,37,38,36,10,17,27,44,0,36,38,39,10,63,56,11,0,42,43,41,10,2,11,56,0,40,41,43,10,73,22,51,0,44,45,46,10,51,22,7,0,46,45,13,10,22,9,7,0,45,23,13,10,7,9,28,0,13,23,14,10,9,45,15,0,23,47,21,10,58,50,10,0,48,49,51,10,10,50,20,0,51,49,50,10,12,36,63,0,17,6,42,10,63,36,56,0,42,6,43,10,9,70,28,0,23,22,14,10,28,70,14,0,14,22,26,10,49,14,5,0,27,26,33,10,5,14,70,0,33,26,22,10,72,63,11,0,52,42,41,10,16,18,53,0,53,54,55,10,46,6,57,0,57,58,34,10,57,6,55,0,34,58,35,10,47,24,18,0,59,60,54,10,47,52,24,0,59,61,60,10,16,42,266,0,53,62,296,10,270,264,269,0,300,294,299,10,269,264,265,0,299,294,295,10,47,265,67,0,59,295,65,10,67,39,29,0,65,63,64,10,1,98,25,0,66,25,30,10,25,98,43,0,30,25,11,10,51,140,26,0,46,67,18,10,26,140,4,0,18,67,68,10,42,53,50,0,62,55,49,10,50,53,20,0,49,55,50,10,50,27,42,0,49,38,62,10,29,31,67,0,64,70,65,10,8,23,39,0,71,72,63,10,23,31,29,0,72,70,64,10,58,10,32,0,48,51,31,10,32,10,37,0,31,51,32,10,40,49,32,0,28,27,31,10,49,55,32,0,27,35,31,10,55,6,32,0,35,58,31,10,0,13,35,0,0,103,1,10,35,13,61,0,1,103,106,10,44,58,6,0,39,48,58,10,6,58,32,0,58,48,31,10,46,44,6,0,57,39,58,10,23,29,39,0,72,64,63,10,16,53,42,0,53,55,62,10,50,58,27,0,49,48,38,10,27,58,44,0,38,48,39,10,22,45,9,0,45,47,23,10,17,44,46,0,36,39,57,10,54,140,7,0,12,67,13,10,7,140,51,0,13,67,46,10,19,52,67,0,73,61,65,10,67,52,47,0,65,61,59,10,67,31,19,0,65,70,73,10,64,60,41,0,107,108,9,10,56,60,2,0,43,5,40,10,2,60,65,0,40,5,74,10,62,42,34,0,102,62,37,10,34,42,27,0,37,62,38,10,71,41,38,0,109,9,8,10,65,60,64,0,110,108,107,10,22,74,45,0,75,76,78,10,45,74,75,0,78,76,77,10,76,72,75,0,79,80,77,10,75,72,45,0,77,80,78,10,76,77,72,0,79,81,80,10,72,77,63,0,80,81,82,10,77,78,63,0,81,83,82,10,63,78,73,0,82,83,84,10,78,74,73,0,83,76,84,10,73,74,22,0,84,76,75,10,85,86,83,0,86,87,85,10,83,86,84,0,85,87,88,10,88,87,86,0,89,90,87,10,86,87,84,0,87,90,88,10,90,89,88,0,91,92,89,10,88,89,87,0,89,92,90,10,92,91,90,0,93,94,91,10,90,91,89,0,91,94,92,10,85,83,92,0,86,85,93,10,92,83,91,0,93,85,94,10,78,87,74,0,83,90,76,10,74,87,89,0,76,90,92,10,89,91,74,0,92,94,76,10,74,91,75,0,76,94,77,10,91,83,75,0,94,85,77,10,75,83,76,0,77,85,79,10,84,77,83,0,88,81,85,10,83,77,76,0,85,81,79,10,87,78,84,0,90,83,88,10,84,78,77,0,88,83,81,10,93,94,85,0,95,96,86,10,85,94,86,0,86,96,87,10,95,88,94,0,97,89,96,10,94,88,86,0,96,89,87,10,95,96,88,0,97,98,89,10,88,96,90,0,89,98,91,10,96,97,90,0,98,99,91,10,90,97,92,0,91,99,93,10,97,93,92,0,99,95,93,10,92,93,85,0,93,95,86,10,81,79,95,0,100,101,97,10,95,79,96,0,97,101,98,10,80,97,79,0,104,99,101,10,79,97,96,0,101,99,98,10,82,93,80,0,105,95,104,10,80,93,97,0,104,95,99,10,82,81,94,0,105,100,96,10,81,95,94,0,100,97,96,10,42,62,264,0,62,102,294,10,264,62,39,0,294,102,63,10,39,62,8,0,63,102,71,10,51,26,73,0,46,18,44,10,63,73,12,0,42,44,17,10,26,12,73,0,18,17,44,10,21,26,4,0,7,18,68,10,33,66,0,0,56,20,0,10,0,66,13,0,0,20,103,10,82,94,93,0,105,96,95,10,72,11,45,0,52,41,47,10,15,45,11,0,21,47,41,10,99,71,69,0,111,109,112,10,41,99,64,0,9,111,107,10,71,99,41,0,109,111,9,10,64,99,69,0,107,111,112,10,69,71,64,0,112,109,107,10,64,71,65,0,107,109,110,10,54,35,105,0,12,24,164,10,105,35,61,0,164,24,163,10,107,106,100,0,114,115,116,10,110,104,141,0,118,119,117,10,141,104,122,0,117,119,120,10,108,13,102,0,121,103,122,10,102,13,66,0,122,103,20,10,13,108,61,0,103,121,106,10,61,108,109,0,106,121,123,10,110,105,109,0,118,113,123,10,109,105,61,0,123,113,106,10,105,110,140,0,113,118,124,10,140,110,141,0,124,118,117,10,21,113,102,0,69,125,122,10,102,113,107,0,122,125,114,10,113,112,107,0,125,126,114,10,107,112,106,0,114,126,115,10,112,113,103,0,126,125,127,10,103,113,114,0,127,125,128,10,66,59,102,0,20,16,122,10,102,59,21,0,122,16,69,10,115,109,100,0,129,123,116,10,100,109,108,0,116,123,121,10,115,104,109,0,129,119,123,10,109,104,110,0,123,119,118,10,21,4,114,0,69,130,128,10,114,4,111,0,128,130,131,10,102,107,108,0,122,114,121,10,108,107,100,0,121,114,116,10,101,103,111,0,132,127,131,10,111,103,114,0,131,127,128,10,103,117,112,0,127,133,126,10,112,117,116,0,126,133,134,10,118,100,125,0,137,116,136,10,126,125,100,0,135,136,116,10,112,116,106,0,126,134,115,10,106,116,119,0,115,134,138,10,121,120,115,0,139,140,129,10,115,120,104,0,129,140,119,10,100,118,115,0,116,137,129,10,115,118,121,0,129,137,139,10,131,133,122,0,141,142,120,10,133,123,122,0,142,143,120,10,101,122,123,0,132,120,143,10,117,123,116,0,133,143,134,10,116,123,119,0,134,143,138,10,129,134,128,0,144,145,146,10,128,134,126,0,146,145,135,10,126,134,127,0,135,145,147,10,127,134,129,0,147,145,144,10,131,135,130,0,141,148,149,10,130,135,128,0,149,148,146,10,128,135,129,0,146,148,144,10,129,135,131,0,144,148,141,10,133,136,132,0,142,150,151,10,132,136,130,0,151,150,149,10,130,136,131,0,149,150,141,10,131,136,133,0,141,150,142,10,123,137,119,0,143,152,138,10,119,137,132,0,138,152,151,10,132,137,133,0,151,152,142,10,133,137,123,0,142,152,143,10,124,138,125,0,153,154,136,10,125,138,118,0,136,154,137,10,118,138,121,0,137,154,139,10,121,138,120,0,139,154,140,10,120,138,124,0,140,154,153,10,127,139,126,0,147,155,135,10,126,139,125,0,135,155,136,10,125,139,124,0,136,155,153,10,124,139,127,0,153,155,147,10,103,101,117,0,127,132,133,10,117,101,123,0,133,132,143,10,100,106,126,0,116,115,135,10,126,106,128,0,135,115,146,10,106,130,128,0,115,149,146,10,130,106,132,0,149,115,151,10,106,119,132,0,115,138,151,10,21,114,113,0,69,128,125,10,104,127,122,0,119,147,120,10,127,129,122,0,147,144,120,10,129,131,122,0,144,141,120,10,120,124,104,0,140,153,119,10,104,124,127,0,119,153,147,10,140,54,105,0,67,12,164,10,111,4,141,0,131,130,117,10,141,4,140,0,117,130,124,10,111,141,101,0,131,117,132,10,101,141,122,0,132,117,120,10,47,18,16,0,59,54,53,10,1,209,0,0,3,156,0,10,0,209,157,0,0,156,157,10,150,158,161,0,185,186,184,10,161,158,176,0,184,186,187,10,38,30,161,0,8,15,159,10,161,30,167,0,159,15,158,10,163,154,171,0,191,192,194,10,171,154,144,0,194,192,193,10,175,167,3,0,160,158,19,10,3,167,30,0,19,158,15,10,158,150,146,0,186,185,198,10,146,150,152,0,198,185,197,10,33,180,3,0,56,161,19,10,3,180,175,0,19,161,160,10,173,176,158,0,201,187,186,10,15,145,70,0,21,202,22,10,161,167,150,0,159,158,162,10,150,167,175,0,162,158,160,10,209,163,157,0,204,191,203,10,157,163,171,0,203,191,194,10,148,154,168,0,207,192,206,10,163,160,168,0,191,205,206,10,163,25,160,0,191,30,205,10,160,25,68,0,205,30,29,10,68,37,160,0,29,32,205,10,160,37,156,0,205,32,208,10,168,172,5,0,206,209,33,10,5,172,57,0,33,209,34,10,164,153,17,0,210,211,36,10,17,153,34,0,36,211,37,10,178,11,173,0,212,41,201,10,2,173,11,0,40,201,41,10,184,170,151,0,213,214,215,10,151,170,144,0,215,214,193,10,154,145,144,0,192,202,193,10,144,145,151,0,193,202,215,10,145,15,165,0,202,21,216,10,174,10,169,0,217,51,218,10,169,10,20,0,218,51,50,10,146,178,158,0,198,212,186,10,158,178,173,0,186,212,201,10,148,70,154,0,207,22,192,10,154,70,145,0,192,22,202,10,70,148,5,0,22,207,33,10,5,148,168,0,33,207,206,10,183,11,178,0,219,41,212,10,149,53,18,0,220,55,54,10,46,57,143,0,57,34,221,10,143,57,172,0,221,34,209,10,166,18,24,0,222,54,60,10,166,24,52,0,222,60,61,10,255,260,257,0,285,290,287,10,166,262,149,0,222,292,220,10,255,181,159,0,285,225,223,10,159,181,155,0,223,225,226,10,1,25,209,0,66,30,204,10,209,25,163,0,204,30,191,10,170,152,251,0,214,197,228,10,251,152,142,0,228,197,227,10,162,169,53,0,224,218,55,10,53,169,20,0,55,218,50,10,169,162,153,0,218,224,211,10,155,181,31,0,226,225,70,10,8,159,23,0,71,223,72,10,23,155,31,0,72,226,70,10,174,156,10,0,217,208,51,10,10,156,37,0,51,208,32,10,160,156,168,0,205,208,206,10,168,156,172,0,206,208,209,10,156,143,172,0,208,221,209,10,0,157,147,0,0,157,166,10,147,157,177,0,166,157,165,10,164,143,174,0,210,221,217,10,143,156,174,0,221,208,217,10,46,143,164,0,57,221,210,10,23,159,155,0,72,223,226,10,71,38,161,0,109,8,159,10,149,162,53,0,220,224,55,10,164,174,153,0,210,217,211,10,153,174,169,0,211,217,218,10,151,145,165,0,215,202,216,10,17,46,164,0,36,57,210,10,170,251,144,0,214,228,193,10,144,251,171,0,193,228,194,10,166,52,181,0,222,61,225,10,181,52,19,0,225,61,73,10,181,19,31,0,225,73,70,10,173,2,176,0,201,40,187,10,176,2,65,0,187,40,74,10,179,161,176,0,167,159,168,10,153,162,34,0,211,224,37,10,34,162,62,0,37,224,102,10,65,179,176,0,110,167,168,10,151,165,185,0,231,232,256,10,185,165,186,0,256,232,255,10,165,183,186,0,232,257,255,10,186,183,187,0,255,257,258,10,187,183,188,0,258,257,260,10,188,183,178,0,260,257,259,10,188,178,189,0,260,259,262,10,189,178,184,0,262,259,261,10,189,184,185,0,262,261,256,10,185,184,151,0,256,261,231,10,195,197,194,0,264,265,263,10,194,197,196,0,263,265,266,10,195,198,197,0,264,267,265,10,197,198,199,0,265,267,268,10,198,200,199,0,267,269,268,10,199,200,201,0,268,269,270,10,200,202,201,0,269,271,270,10,201,202,203,0,270,271,272,10,202,194,203,0,271,263,272,10,203,194,196,0,272,263,266,10,189,185,198,0,262,256,267,10,198,185,200,0,267,256,269,10,200,185,202,0,269,256,271,10,202,185,186,0,271,256,255,10,202,186,194,0,271,255,263,10,194,186,187,0,263,255,258,10,187,188,194,0,258,260,263,10,194,188,195,0,263,260,264,10,188,189,195,0,260,262,264,10,195,189,198,0,264,262,267,10,197,205,196,0,265,273,266,10,196,205,204,0,266,273,274,10,197,199,205,0,265,268,273,10,205,199,206,0,273,268,275,10,206,199,207,0,275,268,276,10,207,199,201,0,276,268,270,10,207,201,208,0,276,270,277,10,208,201,203,0,277,270,272,10,208,203,204,0,277,272,274,10,204,203,196,0,274,272,266,10,207,190,206,0,276,278,275,10,206,190,192,0,275,278,279,10,207,208,190,0,276,277,278,10,190,208,191,0,278,277,280,10,193,191,204,0,281,280,274,10,204,191,208,0,274,280,277,10,193,205,192,0,281,273,279,10,192,205,206,0,279,273,275,10,162,258,62,0,224,288,102,10,62,258,159,0,102,288,223,10,62,159,8,0,102,223,71,10,170,184,152,0,214,213,197,10,178,146,184,0,212,198,213,10,184,146,152,0,213,198,197,10,150,142,152,0,185,227,197,10,33,0,180,0,56,0,161,10,180,0,147,0,161,0,166,10,193,204,205,0,281,274,273,10,183,165,11,0,219,216,41,10,15,11,165,0,21,41,216,10,210,182,71,0,169,170,109,10,161,179,210,0,159,167,169,10,71,161,210,0,109,159,169,10,179,182,210,0,167,170,169,10,65,71,179,0,110,109,167,10,179,71,182,0,167,109,170,10,171,216,157,0,194,229,203,10,157,216,177,0,203,229,230,10,218,211,217,0,172,173,174,10,233,215,252,0,176,177,175,10,252,215,221,0,175,177,178,10,219,213,147,0,179,180,166,10,147,213,180,0,166,180,161,10,220,219,177,0,181,179,165,10,177,219,147,0,165,179,166,10,177,216,220,0,165,171,181,10,220,216,221,0,181,171,178,10,216,251,221,0,171,182,178,10,221,251,252,0,178,182,175,10,218,224,213,0,172,183,180,10,213,224,150,0,180,183,162,10,224,218,223,0,183,172,188,10,223,218,217,0,188,172,174,10,225,224,214,0,190,183,189,10,214,224,223,0,189,183,188,10,180,213,175,0,161,180,160,10,175,213,150,0,160,180,162,10,219,220,211,0,179,181,173,10,211,220,226,0,173,181,195,10,221,215,220,0,178,177,181,10,220,215,226,0,181,177,195,10,222,142,225,0,196,199,190,10,225,142,150,0,190,199,162,10,211,218,219,0,173,172,179,10,219,218,213,0,179,172,180,10,212,222,214,0,200,196,189,10,214,222,225,0,189,196,190,10,214,223,228,0,189,188,249,10,228,223,227,0,249,188,248,10,229,236,211,0,254,284,173,10,237,211,236,0,251,173,284,10,230,227,217,0,253,248,174,10,223,217,227,0,188,174,248,10,215,231,226,0,177,252,195,10,226,231,232,0,195,252,250,10,211,226,229,0,173,195,254,10,229,226,232,0,254,195,250,10,242,233,244,0,247,176,245,10,233,234,244,0,176,246,245,10,212,234,233,0,200,246,176,10,227,230,228,0,248,253,249,10,228,230,234,0,249,253,246,10,240,239,245,0,244,243,242,10,239,237,245,0,243,251,242,10,237,238,245,0,251,241,242,10,238,240,245,0,241,244,242,10,242,241,246,0,247,240,239,10,241,239,246,0,240,243,239,10,239,240,246,0,243,244,239,10,240,242,246,0,244,247,239,10,244,243,247,0,245,238,237,10,243,241,247,0,238,240,237,10,241,242,247,0,240,247,237,10,242,244,247,0,247,245,237,10,234,230,248,0,246,253,236,10,230,243,248,0,253,238,236,10,243,244,248,0,238,245,236,10,244,234,248,0,245,246,236,10,235,236,249,0,235,284,234,10,236,229,249,0,284,254,234,10,229,232,249,0,254,250,234,10,232,231,249,0,250,252,234,10,231,235,249,0,252,235,234,10,238,237,250,0,241,251,233,10,237,236,250,0,251,284,233,10,236,235,250,0,284,235,233,10,235,238,250,0,235,241,233,10,234,212,228,0,246,200,249,10,228,212,214,0,249,200,189,10,211,237,217,0,173,251,174,10,237,239,217,0,251,243,174,10,217,239,241,0,174,243,240,10,241,243,217,0,240,238,174,10,217,243,230,0,174,238,253,10,150,224,225,0,162,183,190,10,215,233,238,0,177,176,241,10,238,233,240,0,241,176,244,10,233,242,240,0,176,247,244,10,231,215,235,0,252,177,235,10,215,238,235,0,177,241,235,10,251,216,171,0,228,229,194,10,251,142,252,0,182,199,175,10,252,142,222,0,175,199,196,10,233,252,212,0,176,175,200,10,212,252,222,0,200,175,196,10,166,149,18,0,222,220,54,10,190,253,192,0,278,282,279,10,191,193,253,0,280,281,282,10,253,193,192,0,282,281,279,10,191,253,190,0,280,282,278,10,82,254,81,0,105,283,100,10,80,79,254,0,104,101,283,10,254,79,81,0,283,101,100,10,80,254,82,0,104,283,105,2,60,56,36,0,10,168,154,163,0,206,192,191,10,43,28,49,0,11,14,27,10,257,262,166,0,287,292,222,10,159,258,255,0,223,288,285,10,258,162,256,0,288,224,286,10,259,256,261,0,289,286,291,10,260,263,257,0,290,293,287,10,259,260,258,0,289,290,288,10,258,260,255,0,288,290,285,10,263,261,257,0,293,291,287,10,262,256,149,0,292,286,220,10,260,259,263,0,290,289,293,10,259,261,263,0,289,291,293,10,257,261,262,0,287,291,292,10,262,261,256,0,292,291,286,10,258,256,259,0,288,286,289,10,255,257,166,0,285,287,222,10,265,272,269,0,295,302,299,10,16,267,47,0,53,297,59,10,272,267,271,0,302,297,301,10,271,267,266,0,301,297,296,10,266,264,270,0,296,294,300,10,268,270,269,0,298,300,299,10,271,270,268,0,301,300,298,10,272,271,268,0,302,301,298,10,269,272,268,0,299,302,298,10,266,270,271,0,296,300,301,10,266,42,264,0,296,62,294,10,265,264,39,0,295,294,63,10,47,272,265,0,59,302,295,10,47,267,272,0,59,297,302,10,166,181,255,0,222,225,285,10,149,256,162,0,220,286,224,10,67,265,39,0,65,295,63,10,16,266,267,0,53,296,297] + +} \ No newline at end of file diff --git a/examples/textures/terrain/backgrounddetailed6.jpg b/examples/textures/terrain/backgrounddetailed6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1c3ba04fd2ed21d429c8a7dfd15e2d7650a007ba Binary files /dev/null and b/examples/textures/terrain/backgrounddetailed6.jpg differ diff --git a/examples/textures/terrain/grasslight-big-nm.jpg b/examples/textures/terrain/grasslight-big-nm.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb622cd26e2624cfe4a7676c095de5eb0e79b87a Binary files /dev/null and b/examples/textures/terrain/grasslight-big-nm.jpg differ diff --git a/examples/textures/terrain/grasslight-big-specular.jpg b/examples/textures/terrain/grasslight-big-specular.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b75fe6ef87034a7567f24fa9f4381a6b4347a45d Binary files /dev/null and b/examples/textures/terrain/grasslight-big-specular.jpg differ diff --git a/examples/textures/terrain/grasslight-big.jpg b/examples/textures/terrain/grasslight-big.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed6c7f85a33abbed6f41e6e08585a594f0bd5fae Binary files /dev/null and b/examples/textures/terrain/grasslight-big.jpg differ diff --git a/examples/textures/terrain/readme.txt b/examples/textures/terrain/readme.txt new file mode 100644 index 0000000000000000000000000000000000000000..560ff986cb8507ed17dab41f24c818631d9c2d21 --- /dev/null +++ b/examples/textures/terrain/readme.txt @@ -0,0 +1,9 @@ +Textures from http://opengameart.org/ + +http://opengameart.org/content/dark-grass +http://opengameart.org/content/backgrounds-topdown-games + +Slightly modified to have more GPU friendly sizes. + +Licensed under a Creative Commons Attribution 3.0 Unported License: +http://creativecommons.org/licenses/by/3.0/ \ No newline at end of file diff --git a/examples/webgl_terrain_dynamic.html b/examples/webgl_terrain_dynamic.html new file mode 100644 index 0000000000000000000000000000000000000000..09ae12b4605c83e8dd390cd111d51ff2c1b55102 --- /dev/null +++ b/examples/webgl_terrain_dynamic.html @@ -0,0 +1,762 @@ + + + + three.js webgl - dynamic procedural terrain + + + + + +
+ +
+ three.js - dynamic procedural terrain using + 3d simplex noise
+ birds by mirada from ro.me - + textures by qubodup and + davis123 - + music by Kevin MacLeod +
+ +
Loading...
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +